]>
diplodocus.org Git - nmh/blob - uip/anno.c
1 /* anno.c -- annotate messages
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
7 * Four new options have been added: delete, list, number, and draft.
8 * Message header fields are used by the new MIME attachment code in
9 * the send command. Adding features to generalize the anno command
10 * seemed to be a better approach than the creation of a new command
11 * whose features would overlap with those of the anno command.
13 * The -draft option causes anno to operate on the current draft file
14 * instead of on a message sequence.
16 * The -delete option deletes header elements that match the -component
17 * field name. If -delete is used without the -text option, the first
18 * header field whose field name matches the component name is deleted.
19 * If the -delete is used with the -text option, and the -text argument
20 * begins with a /, the first header field whose field name matches the
21 * component name and whose field body matches the text is deleted. If
22 * the -text argument does not begin with a /, then the text is assumed
23 * to be the last component of a path name, and the first header field
24 * whose field name matches the component name and a field body whose
25 * last path name component matches the text is deleted. If the -delete
26 * option is used with the new -number option described below, the nth
27 * header field whose field name matches the component name is deleted.
28 * No header fields are deleted if none of the above conditions are met.
30 * The -list option outputs the field bodies from each header field whose
31 * field name matches the component name, one per line. If no -text
32 * option is specified, only the last path name component of each field
33 * body is output. The entire field body is output if the -text option
34 * is used; the contents of the -text argument are ignored. If the -list
35 * option is used in conjunction with the new -number option described
36 * below, each line is numbered starting with 1. A tab separates the
37 * number from the field body.
39 * The -number option works with both the -delete and -list options as
40 * described above. The -number option takes an optional argument. A
41 * value of 1 is assumed if this argument is absent.
46 #include "sbr/m_name.h"
47 #include "sbr/getarguments.h"
48 #include "sbr/seq_setcur.h"
49 #include "sbr/seq_save.h"
50 #include "sbr/smatch.h"
51 #include "sbr/trimcpy.h"
52 #include "sbr/m_draft.h"
53 #include "sbr/m_convert.h"
54 #include "sbr/getfolder.h"
55 #include "sbr/folder_read.h"
56 #include "sbr/folder_free.h"
57 #include "sbr/context_save.h"
58 #include "sbr/context_replace.h"
59 #include "sbr/context_find.h"
60 #include "sbr/ambigsw.h"
62 #include "sbr/print_version.h"
63 #include "sbr/print_help.h"
64 #include "sbr/error.h"
67 #include "sbr/m_maildir.h"
69 #define ANNO_SWITCHES \
70 X("component field", 0, COMPSW) \
71 X("inplace", 0, INPLSW) \
72 X("noinplace", 0, NINPLSW) \
73 X("date", 0, DATESW) \
74 X("nodate", 0, NDATESW) \
75 X("text body", 0, TEXTSW) \
76 X("version", 0, VERSIONSW) \
77 X("help", 0, HELPSW) \
78 X("draft", 2, DRFTSW) \
79 X("list", 1, LISTSW) \
80 X("delete", 2, DELETESW) \
81 X("number", 2, NUMBERSW) \
82 X("append", 1, APPENDSW) \
83 X("preserve", 1, PRESERVESW) \
84 X("nopreserve", 3, NOPRESERVESW) \
86 #define X(sw, minchars, id) id,
87 DEFINE_SWITCH_ENUM(ANNO
);
90 #define X(sw, minchars, id) { sw, minchars, id },
91 DEFINE_SWITCH_ARRAY(ANNO
, switches
);
97 static void make_comp (char **);
101 main (int argc
, char **argv
)
103 bool inplace
, datesw
;
106 char *comp
= NULL
, *text
= NULL
, *folder
= NULL
, buf
[BUFSIZ
];
107 char **argp
, **arguments
;
108 struct msgs_array msgs
= { 0, 0, NULL
};
110 bool append
; /* append annotations instead of default prepend */
111 int delete = -2; /* delete header element if set */
112 char *draft
= NULL
; /* draft file name */
113 int isdf
= 0; /* return needed for m_draft() */
114 bool list
; /* list header elements if set */
115 int number
= 0; /* delete specific number of like elements if set */
117 if (nmh_init(argv
[0], true, true)) { return 1; }
119 arguments
= getarguments (invo_name
, argc
, argv
, 1);
122 append
= list
= false;
123 inplace
= datesw
= true;
124 while ((cp
= *argp
++)) {
126 switch (smatch (++cp
, switches
)) {
128 ambigsw (cp
, switches
);
131 die("-%s unknown", cp
);
134 snprintf (buf
, sizeof(buf
), "%s [+folder] [msgs] [switches]",
136 print_help (buf
, switches
, 1);
139 print_version(invo_name
);
144 die("only one component at a time!");
145 if (!(comp
= *argp
++) || *comp
== '-')
146 die("missing argument to %s", argp
[-2]);
165 die("only one body at a time!");
166 if (!(text
= *argp
++) || *text
== '-')
167 die("missing argument to %s", argp
[-2]);
170 case DELETESW
: /* delete annotations */
174 case DRFTSW
: /* draft message specified */
178 case LISTSW
: /* produce a listing */
182 case NUMBERSW
: /* number listing or delete by number */
184 die("only one number at a time!");
186 if (argp
- arguments
== argc
- 1 || **argp
== '-')
190 if (strcmp(*argp
, "all") == 0)
193 else if (!(number
= atoi(*argp
)))
194 die("missing argument to %s", argp
[-1]);
202 case APPENDSW
: /* append annotations instead of default prepend */
206 case PRESERVESW
: /* preserve access and modification times on annotated message */
210 case NOPRESERVESW
: /* don't preserve access and modification times on annotated message (default) */
215 if (*cp
== '+' || *cp
== '@') {
217 die("only one folder at a time!");
218 folder
= pluspath (cp
);
220 app_msgarg(&msgs
, cp
);
224 * We're dealing with the draft message instead of message numbers.
225 * Get the name of the draft and deal with it just as we do with
226 * message numbers below.
231 die("can only have message numbers or -draft.");
233 draft
= mh_xstrdup(m_draft(folder
, NULL
, 1, &isdf
));
238 annolist(draft
, comp
, text
, number
);
240 annotate (draft
, comp
, text
, inplace
, datesw
, delete, append
);
246 if (!context_find ("path"))
247 free (path ("./", TFOLDER
));
249 app_msgarg(&msgs
, "cur");
251 folder
= getfolder (1);
252 maildir
= m_maildir (folder
);
254 if (chdir (maildir
) == NOTOK
)
255 adios (maildir
, "unable to change directory to");
257 /* read folder and create message structure */
258 if (!(mp
= folder_read (folder
, 1)))
259 die("unable to read folder %s", folder
);
261 /* check for empty folder */
263 die("no messages in %s", folder
);
265 /* parse all the message ranges/sequences and set SELECTED */
266 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
267 if (!m_convert (mp
, msgs
.msgs
[msgnum
]))
272 /* annotate all the SELECTED messages */
273 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
274 if (is_selected(mp
, msgnum
)) {
276 annolist(m_name(msgnum
), comp
, text
, number
);
278 annotate (m_name (msgnum
), comp
, text
, inplace
, datesw
, delete, append
);
282 context_replace (pfolder
, folder
); /* update current folder */
283 seq_setcur (mp
, mp
->lowsel
); /* update current message */
284 seq_save (mp
); /* synchronize message sequences */
285 folder_free (mp
); /* free folder/message structure */
286 context_save (); /* save the context file */
292 make_comp (char **ap
)
294 char *cp
, buffer
[BUFSIZ
];
297 fputs("Enter component name: ", stdout
);
300 if (fgets (buffer
, sizeof buffer
, stdin
) == NULL
)
302 *ap
= trimcpy (buffer
);
305 if ((cp
= *ap
+ strlen (*ap
) - 1) > *ap
&& *cp
== ':')
308 die("null component name");
310 die("invalid component name %s", *ap
);
311 if (strlen (*ap
) >= NAMESZ
)
312 die("too large component name %s", *ap
);
314 for (cp
= *ap
; *cp
; cp
++)
315 if (!isalnum ((unsigned char) *cp
) && *cp
!= '-')
316 die("invalid component name %s", *ap
);