]>
diplodocus.org Git - nmh/blob - uip/scan.c
1 /* scan.c -- display a one-line "scan" listing of folder or 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.
9 #include <h/fmt_scan.h>
10 #include <h/scansbr.h>
14 #include "sbr/m_maildir.h"
15 #include "sbr/terminal.h"
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) \
31 #define X(sw, minchars, id) id,
32 DEFINE_SWITCH_ENUM(SCAN
);
35 #define X(sw, minchars, id) { sw, minchars, id },
36 DEFINE_SWITCH_ARRAY(SCAN
, switches
);
41 main (int argc
, char **argv
)
43 int clearflag
= 0, hdrflag
= 0, ontty
;
44 int width
= -1, revflag
= 0;
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
};
55 if (nmh_init(argv
[0], 1)) { return 1; }
58 arguments
= getarguments (invo_name
, argc
, argv
, 1);
64 while ((cp
= *argp
++)) {
66 switch (smatch (++cp
, switches
)) {
68 ambigsw (cp
, switches
);
71 adios (NULL
, "-%s unknown", cp
);
74 snprintf (buf
, sizeof(buf
), "%s [+folder] [msgs] [switches]",
76 print_help (buf
, switches
, 1);
79 print_version(invo_name
);
90 if (!(form
= *argp
++) || *form
== '-')
91 adios (NULL
, "missing argument to %s", argp
[-2]);
95 if (!(format
= *argp
++) || *format
== '-')
96 adios (NULL
, "missing argument to %s", argp
[-2]);
108 if (!(cp
= *argp
++) || *cp
== '-')
109 adios (NULL
, "missing argument to %s", argp
[-2]);
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
);
127 if (*cp
== '+' || *cp
== '@') {
129 adios (NULL
, "only one folder at a time!");
130 folder
= pluspath (cp
);
132 app_msgarg(&msgs
, cp
);
135 if (!context_find ("path"))
136 free (path ("./", TFOLDER
));
139 * Get new format string. Must be before chdir().
141 nfs
= new_fs (form
, format
, FORMAT
);
144 * We are scanning a maildrop file
148 adios (NULL
, "\"msgs\" not allowed with -file");
150 adios (NULL
, "\"+folder\" not allowed with -file");
152 /* check if "file" is really stdin */
153 if (strcmp (file
, "-") == 0) {
157 if ((in
= fopen (file
, "r")) == NULL
)
158 adios (file
, "unable to open");
162 printf ("FOLDER %s\t%s\n", file
, dtimenow (1));
165 scan_detect_mbox_style (in
);
166 for (msgnum
= 1; ; ++msgnum
) {
167 charstring_t scanl
= NULL
;
169 state
= scan (in
, msgnum
, -1, nfs
, width
, 0, 0,
170 hdrflag
? file
: NULL
, 0L, 1, &scanl
);
171 charstring_free (scanl
);
172 if (state
!= SCNMSG
&& state
!= SCNENC
)
181 * We are scanning a folder
185 app_msgarg(&msgs
, "all");
187 folder
= getfolder (1);
188 maildir
= m_maildir (folder
);
190 if (chdir (maildir
) == NOTOK
)
191 adios (maildir
, "unable to change directory to");
193 /* read folder and create message structure */
194 if (!(mp
= folder_read (folder
, 1)))
195 adios (NULL
, "unable to read folder %s", folder
);
197 /* check for empty folder */
199 adios (NULL
, "no messages in %s", folder
);
201 /* parse all the message ranges/sequences and set SELECTED */
202 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
203 if (!m_convert (mp
, msgs
.msgs
[msgnum
]))
205 seq_setprev (mp
); /* set the Previous-Sequence */
207 context_replace (pfolder
, folder
); /* update current folder */
208 seq_save (mp
); /* synchronize message sequences */
209 context_save (); /* save the context file */
212 * Get the sequence number for each sequence
213 * specified by Unseen-Sequence
215 if ((cp
= context_find (usequence
)) && *cp
) {
219 ap
= brkstring (dp
, " ", "\n");
220 for (i
= 0; ap
&& *ap
; i
++, ap
++)
221 ivector_push_back (seqnum
, seq_getnum (mp
, *ap
));
227 ontty
= isatty (fileno (stdout
));
229 for (msgnum
= revflag
? mp
->hghsel
: mp
->lowsel
;
230 (revflag
? msgnum
>= mp
->lowsel
: msgnum
<= mp
->hghsel
);
231 msgnum
+= (revflag
? -1 : 1)) {
232 if (is_selected(mp
, msgnum
)) {
233 charstring_t scanl
= NULL
;
235 if ((in
= fopen (cp
= m_name (msgnum
), "r")) == NULL
) {
236 admonish (cp
, "unable to open message");
241 printf ("FOLDER %s\t%s\n", folder
, dtimenow(1));
245 * Check if message is in any sequence given
246 * by Unseen-Sequence profile entry.
249 for (i
= 0; i
< num_unseen_seq
; i
++) {
250 if (in_sequence(mp
, ivector_at (seqnum
, i
), msgnum
)) {
256 switch (state
= scan (in
, msgnum
, 0, nfs
, width
,
257 msgnum
== mp
->curmsg
, unseen
,
258 folder
, 0L, 1, &scanl
)) {
265 adios (NULL
, "scan() botch (%d)", state
);
268 inform("message %d: empty", msgnum
);
271 charstring_free (scanl
);
280 ivector_free (seqnum
);
281 folder_free (mp
); /* free folder/message structure */