]> diplodocus.org Git - nmh/blob - uip/scan.c
Added context_find_prefix().
[nmh] / uip / scan.c
1
2 /*
3 * scan.c -- display a one-line "scan" listing of folder or messages
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/fmt_scan.h>
12 #include <h/scansbr.h>
13 #include <h/tws.h>
14 #include <h/mts.h>
15 #include <h/utils.h>
16
17 #define SCAN_SWITCHES \
18 X("clear", 0, CLRSW) \
19 X("noclear", 0, NCLRSW) \
20 X("form formatfile", 0, FORMSW) \
21 X("format string", 5, FMTSW) \
22 X("header", 0, HEADSW) \
23 X("noheader", 0, NHEADSW) \
24 X("width columns", 0, WIDTHSW) \
25 X("reverse", 0, REVSW) \
26 X("noreverse", 0, NREVSW) \
27 X("file file", 4, FILESW) \
28 X("version", 0, VERSIONSW) \
29 X("help", 0, HELPSW) \
30
31 #define X(sw, minchars, id) id,
32 DEFINE_SWITCH_ENUM(SCAN);
33 #undef X
34
35 #define X(sw, minchars, id) { sw, minchars, id },
36 DEFINE_SWITCH_ARRAY(SCAN, switches);
37 #undef X
38
39
40 int
41 main (int argc, char **argv)
42 {
43 int clearflag = 0, hdrflag = 0, ontty;
44 int width = -1, revflag = 0;
45 int i, state, msgnum;
46 ivector_t seqnum = ivector_create (0);
47 int unseen, num_unseen_seq = 0;
48 char *cp, *maildir, *file = NULL, *folder = NULL;
49 char *form = NULL, *format = NULL, buf[BUFSIZ];
50 char **argp, *nfs, **arguments;
51 struct msgs_array msgs = { 0, 0, NULL };
52 struct msgs *mp;
53 FILE *in;
54
55 if (nmh_init(argv[0], 1)) { return 1; }
56
57 mts_init (invo_name);
58 arguments = getarguments (invo_name, argc, argv, 1);
59 argp = arguments;
60
61 /*
62 * Parse arguments
63 */
64 while ((cp = *argp++)) {
65 if (*cp == '-') {
66 switch (smatch (++cp, switches)) {
67 case AMBIGSW:
68 ambigsw (cp, switches);
69 done (1);
70 case UNKWNSW:
71 adios (NULL, "-%s unknown", cp);
72
73 case HELPSW:
74 snprintf (buf, sizeof(buf), "%s [+folder] [msgs] [switches]",
75 invo_name);
76 print_help (buf, switches, 1);
77 done (0);
78 case VERSIONSW:
79 print_version(invo_name);
80 done (0);
81
82 case CLRSW:
83 clearflag++;
84 continue;
85 case NCLRSW:
86 clearflag = 0;
87 continue;
88
89 case FORMSW:
90 if (!(form = *argp++) || *form == '-')
91 adios (NULL, "missing argument to %s", argp[-2]);
92 format = NULL;
93 continue;
94 case FMTSW:
95 if (!(format = *argp++) || *format == '-')
96 adios (NULL, "missing argument to %s", argp[-2]);
97 form = NULL;
98 continue;
99
100 case HEADSW:
101 hdrflag++;
102 continue;
103 case NHEADSW:
104 hdrflag = 0;
105 continue;
106
107 case WIDTHSW:
108 if (!(cp = *argp++) || *cp == '-')
109 adios (NULL, "missing argument to %s", argp[-2]);
110 width = atoi (cp);
111 continue;
112 case REVSW:
113 revflag++;
114 continue;
115 case NREVSW:
116 revflag = 0;
117 continue;
118
119 case FILESW:
120 if (!(cp = *argp++) || (cp[0] == '-' && cp[1]))
121 adios (NULL, "missing argument to %s", argp[-2]);
122 if (strcmp (file = cp, "-"))
123 file = path (cp, TFILE);
124 continue;
125 }
126 }
127 if (*cp == '+' || *cp == '@') {
128 if (folder)
129 adios (NULL, "only one folder at a time!");
130 else
131 folder = pluspath (cp);
132 } else
133 app_msgarg(&msgs, cp);
134 }
135
136 if (!context_find ("path"))
137 free (path ("./", TFOLDER));
138
139 /*
140 * Get new format string. Must be before chdir().
141 */
142 nfs = new_fs (form, format, FORMAT);
143
144 /*
145 * We are scanning a maildrop file
146 */
147 if (file) {
148 if (msgs.size)
149 adios (NULL, "\"msgs\" not allowed with -file");
150 if (folder)
151 adios (NULL, "\"+folder\" not allowed with -file");
152
153 /* check if "file" is really stdin */
154 if (strcmp (file, "-") == 0) {
155 in = stdin;
156 file = "stdin";
157 } else {
158 if ((in = fopen (file, "r")) == NULL)
159 adios (file, "unable to open");
160 }
161
162 if (hdrflag) {
163 printf ("FOLDER %s\t%s\n", file, dtimenow (1));
164 }
165
166 scan_detect_mbox_style (in);
167 for (msgnum = 1; ; ++msgnum) {
168 charstring_t scanl = NULL;
169
170 state = scan (in, msgnum, -1, nfs, width, 0, 0,
171 hdrflag ? file : NULL, 0L, 1, &scanl);
172 charstring_free (scanl);
173 if (state != SCNMSG && state != SCNENC)
174 break;
175 }
176 scan_finished ();
177 fclose (in);
178 done (0);
179 }
180
181 /*
182 * We are scanning a folder
183 */
184
185 if (!msgs.size)
186 app_msgarg(&msgs, "all");
187 if (!folder)
188 folder = getfolder (1);
189 maildir = m_maildir (folder);
190
191 if (chdir (maildir) == NOTOK)
192 adios (maildir, "unable to change directory to");
193
194 /* read folder and create message structure */
195 if (!(mp = folder_read (folder, 1)))
196 adios (NULL, "unable to read folder %s", folder);
197
198 /* check for empty folder */
199 if (mp->nummsg == 0)
200 adios (NULL, "no messages in %s", folder);
201
202 /* parse all the message ranges/sequences and set SELECTED */
203 for (msgnum = 0; msgnum < msgs.size; msgnum++)
204 if (!m_convert (mp, msgs.msgs[msgnum]))
205 done(1);
206 seq_setprev (mp); /* set the Previous-Sequence */
207
208 context_replace (pfolder, folder); /* update current folder */
209 seq_save (mp); /* synchronize message sequences */
210 context_save (); /* save the context file */
211
212 /*
213 * Get the sequence number for each sequence
214 * specified by Unseen-Sequence
215 */
216 if ((cp = context_find (usequence)) && *cp) {
217 char **ap, *dp;
218
219 dp = getcpy(cp);
220 ap = brkstring (dp, " ", "\n");
221 for (i = 0; ap && *ap; i++, ap++)
222 ivector_push_back (seqnum, seq_getnum (mp, *ap));
223
224 num_unseen_seq = i;
225 if (dp)
226 free(dp);
227 }
228
229 ontty = isatty (fileno (stdout));
230
231 for (msgnum = revflag ? mp->hghsel : mp->lowsel;
232 (revflag ? msgnum >= mp->lowsel : msgnum <= mp->hghsel);
233 msgnum += (revflag ? -1 : 1)) {
234 if (is_selected(mp, msgnum)) {
235 charstring_t scanl = NULL;
236
237 if ((in = fopen (cp = m_name (msgnum), "r")) == NULL) {
238 admonish (cp, "unable to open message");
239 continue;
240 }
241
242 if (hdrflag) {
243 printf ("FOLDER %s\t%s\n", folder, dtimenow(1));
244 }
245
246 /*
247 * Check if message is in any sequence given
248 * by Unseen-Sequence profile entry.
249 */
250 unseen = 0;
251 for (i = 0; i < num_unseen_seq; i++) {
252 if (in_sequence(mp, ivector_at (seqnum, i), msgnum)) {
253 unseen = 1;
254 break;
255 }
256 }
257
258 switch (state = scan (in, msgnum, 0, nfs, width,
259 msgnum == mp->curmsg, unseen,
260 folder, 0L, 1, &scanl)) {
261 case SCNMSG:
262 case SCNENC:
263 case SCNERR:
264 break;
265
266 default:
267 adios (NULL, "scan() botch (%d)", state);
268
269 case SCNEOF:
270 advise (NULL, "message %d: empty", msgnum);
271 break;
272 }
273 charstring_free (scanl);
274 scan_finished ();
275 hdrflag = 0;
276 fclose (in);
277 if (ontty)
278 fflush (stdout);
279 }
280 }
281
282 ivector_free (seqnum);
283 folder_free (mp); /* free folder/message structure */
284 if (clearflag)
285 nmh_clear_screen ();
286
287 done (0);
288 return 1;
289 }