]> diplodocus.org Git - nmh/blob - uip/refile.c
Explictly return the exit code, so we can portably guarantee that
[nmh] / uip / refile.c
1
2 /*
3 * refile.c -- move or link message(s) from a source folder
4 * -- into one or more destination folders
5 *
6 * This code is Copyright (c) 2002, by the authors of nmh. See the
7 * COPYRIGHT file in the root directory of the nmh distribution for
8 * complete copyright information.
9 */
10
11 #include <h/mh.h>
12 #include <h/utils.h>
13 #include <fcntl.h>
14
15 #define REFILE_SWITCHES \
16 X("draft", 0, DRAFTSW) \
17 X("link", 0, LINKSW) \
18 X("nolink", 0, NLINKSW) \
19 X("preserve", 0, PRESSW) \
20 X("nopreserve", 0, NPRESSW) \
21 X("retainsequences", 0, RETAINSEQSSW) \
22 X("noretainsequences", 0, NRETAINSEQSSW) \
23 X("unlink", 0, UNLINKSW) \
24 X("nounlink", 0, NUNLINKSW) \
25 X("src +folder", 0, SRCSW) \
26 X("file file", 0, FILESW) \
27 X("rmmproc program", 0, RPROCSW) \
28 X("normmproc", 0, NRPRCSW) \
29 X("version", 0, VERSIONSW) \
30 X("help", 0, HELPSW) \
31
32 #define X(sw, minchars, id) id,
33 DEFINE_SWITCH_ENUM(REFILE);
34 #undef X
35
36 #define X(sw, minchars, id) { sw, minchars, id },
37 DEFINE_SWITCH_ARRAY(REFILE, switches);
38 #undef X
39
40 static char maildir[BUFSIZ];
41
42 struct st_fold {
43 char *f_name;
44 struct msgs *f_mp;
45 };
46
47 /*
48 * static prototypes
49 */
50 static void opnfolds (struct st_fold *, int);
51 static void clsfolds (struct st_fold *, int);
52 static void remove_files (int, char **);
53 static int m_file (struct msgs *, char *, int, struct st_fold *, int, int, int);
54 static void copy_seqs (struct msgs *, int, struct msgs *, int);
55
56
57 int
58 main (int argc, char **argv)
59 {
60 int linkf = 0, preserve = 0, retainseqs = 0, filep = 0;
61 int foldp = 0, isdf = 0, unlink_msgs = 0;
62 int i, msgnum;
63 char *cp, *folder = NULL, buf[BUFSIZ];
64 char **argp, **arguments;
65 char *filevec[NFOLDERS + 2];
66 char **files = &filevec[1]; /* leave room for remove_files:vec[0] */
67 struct st_fold folders[NFOLDERS + 1];
68 struct msgs_array msgs = { 0, 0, NULL };
69 struct msgs *mp;
70
71 #ifdef LOCALE
72 setlocale(LC_ALL, "");
73 #endif
74 invo_name = r1bindex (argv[0], '/');
75
76 /* read user profile/context */
77 context_read();
78
79 arguments = getarguments (invo_name, argc, argv, 1);
80 argp = arguments;
81
82 /*
83 * Parse arguments
84 */
85 while ((cp = *argp++)) {
86 if (*cp == '-') {
87 switch (smatch (++cp, switches)) {
88 case AMBIGSW:
89 ambigsw (cp, switches);
90 done (1);
91 case UNKWNSW:
92 adios (NULL, "-%s unknown\n", cp);
93
94 case HELPSW:
95 snprintf (buf, sizeof(buf), "%s [msgs] [switches] +folder ...",
96 invo_name);
97 print_help (buf, switches, 1);
98 done (0);
99 case VERSIONSW:
100 print_version(invo_name);
101 done (0);
102
103 case LINKSW:
104 linkf++;
105 continue;
106 case NLINKSW:
107 linkf = 0;
108 continue;
109
110 case PRESSW:
111 preserve++;
112 continue;
113 case NPRESSW:
114 preserve = 0;
115 continue;
116
117 case RETAINSEQSSW:
118 retainseqs = 1;
119 continue;
120 case NRETAINSEQSSW:
121 retainseqs = 0;
122 continue;
123
124 case UNLINKSW:
125 unlink_msgs++;
126 continue;
127 case NUNLINKSW:
128 unlink_msgs = 0;
129 continue;
130
131 case SRCSW:
132 if (folder)
133 adios (NULL, "only one source folder at a time!");
134 if (!(cp = *argp++) || *cp == '-')
135 adios (NULL, "missing argument to %s", argp[-2]);
136 folder = path (*cp == '+' || *cp == '@' ? cp + 1 : cp,
137 *cp != '@' ? TFOLDER : TSUBCWF);
138 continue;
139 case DRAFTSW:
140 if (filep > NFOLDERS)
141 adios (NULL, "only %d files allowed!", NFOLDERS);
142 isdf = 0;
143 files[filep++] = getcpy (m_draft (NULL, NULL, 1, &isdf));
144 continue;
145 case FILESW:
146 if (filep > NFOLDERS)
147 adios (NULL, "only %d files allowed!", NFOLDERS);
148 if (!(cp = *argp++) || *cp == '-')
149 adios (NULL, "missing argument to %s", argp[-2]);
150 files[filep++] = path (cp, TFILE);
151 continue;
152
153 case RPROCSW:
154 if (!(rmmproc = *argp++) || *rmmproc == '-')
155 adios (NULL, "missing argument to %s", argp[-2]);
156 continue;
157 case NRPRCSW:
158 rmmproc = NULL;
159 continue;
160 }
161 }
162 if (*cp == '+' || *cp == '@') {
163 if (foldp > NFOLDERS)
164 adios (NULL, "only %d folders allowed!", NFOLDERS);
165 folders[foldp++].f_name =
166 pluspath (cp);
167 } else
168 app_msgarg(&msgs, cp);
169 }
170
171 if (!context_find ("path"))
172 free (path ("./", TFOLDER));
173 if (foldp == 0)
174 adios (NULL, "no folder specified");
175
176 /*
177 * We are refiling a file to the folders
178 */
179 if (filep > 0) {
180 if (folder || msgs.size)
181 adios (NULL, "use -file or some messages, not both");
182 opnfolds (folders, foldp);
183 for (i = 0; i < filep; i++)
184 if (m_file (0, files[i], 0, folders, foldp, preserve, 0))
185 done (1);
186 /* If -nolink, then "remove" files */
187 if (!linkf)
188 remove_files (filep, filevec);
189 done (0);
190 }
191
192 if (!msgs.size)
193 app_msgarg(&msgs, "cur");
194 if (!folder)
195 folder = getfolder (1);
196 strncpy (maildir, m_maildir (folder), sizeof(maildir));
197
198 if (chdir (maildir) == NOTOK)
199 adios (maildir, "unable to change directory to");
200
201 /* read source folder and create message structure */
202 if (!(mp = folder_read (folder, 1)))
203 adios (NULL, "unable to read folder %s", folder);
204
205 /* check for empty folder */
206 if (mp->nummsg == 0)
207 adios (NULL, "no messages in %s", folder);
208
209 /* parse the message range/sequence/name and set SELECTED */
210 for (msgnum = 0; msgnum < msgs.size; msgnum++)
211 if (!m_convert (mp, msgs.msgs[msgnum]))
212 done (1);
213 seq_setprev (mp); /* set the previous-sequence */
214
215 /* create folder structures for each destination folder */
216 opnfolds (folders, foldp);
217
218 /* Link all the selected messages into destination folders.
219 *
220 * This causes the add hook to be run for messages that are
221 * linked into another folder. The refile hook is run for
222 * messages that are moved to another folder.
223 */
224 for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
225 if (is_selected (mp, msgnum)) {
226 cp = getcpy (m_name (msgnum));
227 if (m_file (mp, cp, retainseqs ? msgnum : 0, folders, foldp,
228 preserve, !linkf))
229 done (1);
230 free (cp);
231 }
232 }
233
234 /*
235 * Update this now, since folder_delmsgs() will save the context
236 * but doesn't have access to the folder name.
237 */
238
239 context_replace (pfolder, folder); /* update current folder */
240
241 /*
242 * Adjust "cur" if necessary
243 */
244
245 if (mp->hghsel != mp->curmsg
246 && (mp->numsel != mp->nummsg || linkf))
247 seq_setcur (mp, mp->hghsel);
248
249 /* If -nolink, then "remove" messages from source folder.
250 *
251 * Note that folder_delmsgs does not call the delete hook
252 * because the message has already been handled above.
253 */
254 if (!linkf) {
255 folder_delmsgs (mp, unlink_msgs, 1);
256 } else {
257 seq_save (mp); /* synchronize message sequences */
258 context_save (); /* save the context file */
259 }
260
261 clsfolds (folders, foldp);
262
263 folder_free (mp); /* free folder structure */
264 done (0);
265 return 1;
266 }
267
268
269 /*
270 * Read all the destination folders and
271 * create folder structures for all of them.
272 */
273
274 static void
275 opnfolds (struct st_fold *folders, int nfolders)
276 {
277 char nmaildir[BUFSIZ];
278 register struct st_fold *fp, *ep;
279 register struct msgs *mp;
280
281 for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
282 chdir (m_maildir (""));
283 strncpy (nmaildir, m_maildir (fp->f_name), sizeof(nmaildir));
284
285 create_folder (nmaildir, 0, done);
286
287 if (chdir (nmaildir) == NOTOK)
288 adios (nmaildir, "unable to change directory to");
289 if (!(mp = folder_read (fp->f_name, 1)))
290 adios (NULL, "unable to read folder %s", fp->f_name);
291 mp->curmsg = 0;
292
293 fp->f_mp = mp;
294
295 chdir (maildir);
296 }
297 }
298
299
300 /*
301 * Set the Previous-Sequence and then sychronize the
302 * sequence file, for each destination folder.
303 */
304
305 static void
306 clsfolds (struct st_fold *folders, int nfolders)
307 {
308 register struct st_fold *fp, *ep;
309 register struct msgs *mp;
310
311 for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
312 mp = fp->f_mp;
313 seq_setprev (mp);
314 seq_save (mp);
315 }
316 }
317
318
319 /*
320 * If you have a "rmmproc" defined, we called that
321 * to remove all the specified files. If "rmmproc"
322 * is not defined, then just unlink the files.
323 */
324
325 static void
326 remove_files (int filep, char **files)
327 {
328 int i, vecp;
329 char **vec, *program;
330
331 /* If rmmproc is defined, we use that */
332 if (rmmproc) {
333 vec = argsplit(rmmproc, &program, &vecp);
334 files++; /* Yes, we need to do this */
335 for (i = 0; i < filep; i++)
336 vec[vecp++] = files[i];
337 vec[vecp] = NULL; /* NULL terminate list */
338
339 fflush (stdout);
340 execvp (program, vec);
341 adios (rmmproc, "unable to exec");
342 }
343
344 /* Else just unlink the files */
345 files++; /* advance past filevec[0] */
346 for (i = 0; i < filep; i++) {
347 if (unlink (files[i]) == NOTOK)
348 admonish (files[i], "unable to unlink");
349 }
350 }
351
352
353 /*
354 * Link (or copy) the message into each of the destination folders.
355 * If oldmsgnum is not 0, call copy_seqs().
356 */
357
358 static int
359 m_file (struct msgs *mp, char *msgfile, int oldmsgnum,
360 struct st_fold *folders, int nfolders, int preserve, int refile)
361 {
362 int msgnum;
363 struct st_fold *fp, *ep;
364
365 for (fp = folders, ep = folders + nfolders; fp < ep; fp++) {
366 if ((msgnum = folder_addmsg (&fp->f_mp, msgfile, 1, 0, preserve, nfolders == 1 && refile, maildir)) == -1)
367 return 1;
368 if (oldmsgnum) copy_seqs (mp, oldmsgnum, fp->f_mp, msgnum);
369 }
370 return 0;
371 }
372
373
374 /*
375 * Copy sequence information for a refiled message to its
376 * new folder. Skip the cur sequence.
377 */
378 static void
379 copy_seqs (struct msgs *oldmp, int oldmsgnum, struct msgs *newmp, int newmsgnum)
380 {
381 char **seq;
382 size_t seqnum;
383
384 for (seq = svector_strs (oldmp->msgattrs), seqnum = 0;
385 *seq && seqnum < svector_size (oldmp->msgattrs);
386 ++seq, ++seqnum) {
387 if (strcmp (current, *seq)) {
388 assert ((int) seqnum == seq_getnum (oldmp, *seq));
389 if (in_sequence (oldmp, seqnum, oldmsgnum)) {
390 seq_addmsg (newmp, *seq, newmsgnum,
391 is_seq_private (oldmp, seqnum) ? 0 : 1, 0);
392 }
393 }
394 }
395 }