96f355a610f2d4de977763522617d3170a192b47
[mmh] / uip / refile.c
1 /*
2 ** refile.c -- move or link message(s) from a source folder
3 **          -- into one or more destination folders
4 **
5 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
6 ** COPYRIGHT file in the root directory of the nmh distribution for
7 ** complete copyright information.
8 */
9
10 #include <h/mh.h>
11 #include <h/utils.h>
12 #include <fcntl.h>
13 #include <errno.h>
14
15 static struct swit switches[] = {
16 #define LINKSW  0
17         { "link", 0 },
18 #define NLINKSW  1
19         { "nolink", 2 },
20 #define SRCSW  2
21         { "src +folder", 0 },
22 #define FILESW  3
23         { "file file", 0 },
24 #define VERSIONSW  4
25         { "Version", 0 },
26 #define HELPSW  5
27         { "help", 0 },
28         { NULL, 0 }
29 };
30
31 static char maildir[BUFSIZ];
32
33 struct st_fold {
34         char *f_name;
35         struct msgs *f_mp;
36 };
37
38 /*
39 ** static prototypes
40 */
41 static void opnfolds(struct st_fold *, int);
42 static void clsfolds(struct st_fold *, int);
43 static int m_file(char *, struct st_fold *, int, int);
44
45
46 int
47 main(int argc, char **argv)
48 {
49         int linkf = 0, filep = 0;
50         int foldp = 0;
51         int i, msgnum;
52         char *cp, *folder = NULL, buf[BUFSIZ];
53         char **argp, **arguments;
54         char *filevec[NFOLDERS + 1];
55         char **files = filevec;
56         struct st_fold folders[NFOLDERS + 1];
57         struct msgs_array msgs = { 0, 0, NULL };
58         struct msgs *mp;
59
60         setlocale(LC_ALL, "");
61         invo_name = mhbasename(argv[0]);
62
63         context_read();
64
65         arguments = getarguments(invo_name, argc, argv, 1);
66         argp = arguments;
67
68         /*
69         ** Parse arguments
70         */
71         while ((cp = *argp++)) {
72                 if (*cp == '-') {
73                         switch (smatch(++cp, switches)) {
74                         case AMBIGSW:
75                                 ambigsw(cp, switches);
76                                 exit(1);
77                         case UNKWNSW:
78                                 adios(NULL, "-%s unknown\n", cp);
79
80                         case HELPSW:
81                                 snprintf(buf, sizeof(buf), "%s [msgs] [switches] +folder ...", invo_name);
82                                 print_help(buf, switches, 1);
83                                 exit(0);
84                         case VERSIONSW:
85                                 print_version(invo_name);
86                                 exit(0);
87
88                         case LINKSW:
89                                 linkf++;
90                                 continue;
91                         case NLINKSW:
92                                 linkf = 0;
93                                 continue;
94
95                         case SRCSW:
96                                 if (folder)
97                                         adios(NULL, "only one source folder at a time!");
98                                 if (!(cp = *argp++) || *cp == '-')
99                                         adios(NULL, "missing argument to %s",
100                                                         argp[-2]);
101                                 folder = getcpy(expandfol(cp));
102                                 continue;
103                         case FILESW:
104                                 if (filep > NFOLDERS)
105                                         adios(NULL, "only %d files allowed!",
106                                                         NFOLDERS);
107                                 if (!(cp = *argp++) || *cp == '-')
108                                         adios(NULL, "missing argument to %s",
109                                                         argp[-2]);
110                                 files[filep++] = getcpy(expanddir(cp));
111                                 continue;
112                         }
113                 }
114                 if (*cp == '+' || *cp == '@') {
115                         if (foldp > NFOLDERS)
116                                 adios(NULL, "only %d folders allowed!",
117                                                 NFOLDERS);
118                         folders[foldp++].f_name = getcpy(expandfol(cp));
119                 } else
120                         app_msgarg(&msgs, cp);
121         }
122
123         if (foldp == 0)
124                 adios(NULL, "no folder specified");
125
126         /*
127         ** We are refiling a file to the folders
128         */
129         if (filep > 0) {
130                 if (folder || msgs.size)
131                         adios(NULL, "use -file or msgs, not both");
132                 opnfolds(folders, foldp);
133                 for (i = 0; i < filep; i++)
134                         if (m_file(files[i], folders, foldp, 0))
135                                 /* sysexits.h EX_IOERR */
136                                 exit(1);
137                 /* If -nolink, then unlink files */
138                 if (!linkf) {
139                         int i;
140                         char **files = filevec;
141
142                         /* just unlink the files */
143                         for (i = 0; i < filep; i++) {
144                                 if (unlink(files[i]) == NOTOK)
145                                         admonish(files[i], "unable to unlink");
146                         }
147                 }
148                 exit(0);
149         }
150
151         if (!msgs.size)
152                 app_msgarg(&msgs, seq_cur);
153         if (!folder)
154                 folder = getcurfol();
155         strncpy(maildir, toabsdir(folder), sizeof(maildir));
156
157         if (chdir(maildir) == NOTOK)
158                 adios(maildir, "unable to change directory to");
159
160         /* read source folder and create message structure */
161         if (!(mp = folder_read(folder)))
162                 adios(NULL, "unable to read folder %s", folder);
163
164         /* check for empty folder */
165         if (mp->nummsg == 0)
166                 adios(NULL, "no messages in %s", folder);
167
168         /* parse the message range/sequence/name and set SELECTED */
169         for (msgnum = 0; msgnum < msgs.size; msgnum++)
170                 if (!m_convert(mp, msgs.msgs[msgnum]))
171                         /* sysexits.h EX_USAGE */
172                         exit(1);
173         seq_setprev(mp);  /* set the previous-sequence */
174
175         /* create folder structures for each destination folder */
176         opnfolds(folders, foldp);
177
178         /* Link all the selected messages into destination folders.
179         **
180         ** This causes the add hook to be run for messages that are
181         ** linked into another folder.  The refile hook is run for
182         ** messages that are moved to another folder.
183         */
184         for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
185                 if (is_selected(mp, msgnum)) {
186                         cp = getcpy(m_name(msgnum));
187                         if (m_file(cp, folders, foldp, !linkf))
188                                 /* sysexits.h EX_IOERR */
189                                 exit(1);
190                         free(cp);
191                 }
192         }
193
194         /*
195         ** If -nolink, then remove (= unlink) messages from source folder.
196         **
197         ** Note that folder_delmsgs does not call the delete hook
198         ** because the message has already been handled above.
199         */
200         if (!linkf) {
201                 folder_delmsgs(mp, 0);
202         }
203
204         clsfolds(folders, foldp);
205
206         if (linkf) {
207                 seq_setcur(mp, mp->hghsel);
208         }
209         seq_save(mp);  /* synchronize message sequences */
210
211         context_replace(curfolder, folder);
212         context_save();
213         folder_free(mp);
214         return 0;
215 }
216
217
218 /*
219 ** Read all the destination folders and
220 ** create folder structures for all of them.
221 */
222 static void
223 opnfolds(struct st_fold *folders, int nfolders)
224 {
225         char nmaildir[BUFSIZ];
226         register struct st_fold *fp, *ep;
227         register struct msgs *mp;
228
229         for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
230                 chdir(toabsdir("+"));
231                 strncpy(nmaildir, toabsdir(fp->f_name), sizeof(nmaildir));
232
233                 create_folder(nmaildir, 0, exit);
234
235                 if (chdir(nmaildir) == NOTOK)
236                         adios(nmaildir, "unable to change directory to");
237                 if (!(mp = folder_read(fp->f_name)))
238                         adios(NULL, "unable to read folder %s", fp->f_name);
239                 mp->curmsg = 0;
240
241                 fp->f_mp = mp;
242
243                 chdir(maildir);
244         }
245 }
246
247
248 /*
249 ** Set the Previous-Sequence and then sychronize the
250 ** sequence file, for each destination folder.
251 */
252 static void
253 clsfolds(struct st_fold *folders, int nfolders)
254 {
255         register struct st_fold *fp, *ep;
256         register struct msgs *mp;
257
258         for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
259                 mp = fp->f_mp;
260                 seq_setprev(mp);
261                 seq_save(mp);
262         }
263 }
264
265
266 /*
267 ** Link (or copy) the message into each of
268 ** the destination folders.
269 */
270 static int
271 m_file(char *msgfile, struct st_fold *folders, int nfolders, int refile)
272 {
273         int msgnum;
274         struct st_fold *fp, *ep;
275
276         for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
277                 if ((msgnum = folder_addmsg(&fp->f_mp, msgfile, 1, 0,
278                                 0, nfolders == 1 && refile, maildir)) == -1)
279                         return 1;
280         }
281         return 0;
282 }