]>
diplodocus.org Git - nmh/blob - uip/flist.c
2 * flist.c -- list nmh folders containing messages
3 * -- in a given sequence
6 * David Nichols, Xerox-PARC, November, 1992
8 * Copyright (c) 1994 Xerox Corporation.
9 * Use and copying of this software and preparation of derivative works based
10 * upon this software are permitted. Any distribution of this software or
11 * derivative works must comply with all applicable United States export
12 * control laws. This software is made available AS IS, and Xerox Corporation
13 * makes no warranty about the software, its performance or its conformity to
24 * We allocate space to record the names of folders
25 * (foldersToDo array), this number of elements at a time.
27 #define MAXFOLDERS 100
30 #define FLIST_SWITCHES \
31 X("sequence name", 0, SEQSW) \
33 X("noall", 0, NOALLSW) \
34 X("recurse", 0, RECURSE) \
35 X("norecurse", 0, NORECURSE) \
36 X("showzero", 0, SHOWZERO) \
37 X("noshowzero", 0, NOSHOWZERO) \
38 X("alpha", 0, ALPHASW) \
39 X("noalpha", 0, NOALPHASW) \
40 X("fast", 0, FASTSW) \
41 X("nofast", 0, NOFASTSW) \
42 X("total", -5, TOTALSW) \
43 X("nototal", -7, NOTOTALSW) \
44 X("version", 0, VERSIONSW) \
45 X("help", 0, HELPSW) \
47 #define X(sw, minchars, id) id,
48 DEFINE_SWITCH_ENUM(FLIST
);
51 #define X(sw, minchars, id) { sw, minchars, id },
52 DEFINE_SWITCH_ARRAY(FLIST
, switches
);
56 char *name
; /* name of folder */
58 int error
; /* error == 1 for unreadable folder */
59 int nMsgs
; /* number of messages in folder */
60 ivector_t nSeq
; /* number of messages in each sequence */
61 ivector_t
private; /* is given sequence, public or private */
64 static struct Folder
*orders
= NULL
;
65 static int nOrders
= 0;
66 static int nOrdersAlloced
= 0;
67 static struct Folder
*folders
= NULL
;
68 static unsigned int nFolders
= 0;
69 static int nFoldersAlloced
= 0;
71 /* info on folders to search */
72 static char **foldersToDo
;
73 static int numfolders
;
74 static int maxfolders
;
76 /* info on sequences to search for */
77 static svector_t sequencesToDo
;
79 static int all
= FALSE
; /* scan all folders in top level? */
80 static int alphaOrder
= FALSE
; /* want alphabetical order only */
81 static int recurse
= FALSE
; /* show nested folders? */
82 static int showzero
= TRUE
; /* show folders even if no messages in seq? */
83 static int Total
= TRUE
; /* display info on number of messages in *
84 * sequence found, and total num messages */
86 static char curfolder
[BUFSIZ
]; /* name of the current folder */
87 static char *nmhdir
; /* base nmh mail directory */
90 * Type for a compare function for qsort. This keeps
93 typedef int (*qsort_comp
) (const void *, const void *);
98 int CompareFolders(struct Folder
*, struct Folder
*);
99 void GetFolderOrder(void);
100 void ScanFolders(void);
101 int AddFolder(char *, int);
102 void BuildFolderList(char *, int);
103 void BuildFolderListRecurse(char *, struct stat
*, int);
104 void PrintFolders(void);
105 void AllocFolders(struct Folder
**, int *, int);
106 int AssignPriority(char *);
107 static void do_readonly_folders(void);
112 main(int argc
, char **argv
)
119 setlocale(LC_ALL
, "");
121 invo_name
= r1bindex(argv
[0], '/');
123 /* read user profile/context */
127 * If program was invoked with name ending
128 * in `s', then add switch `-all'.
130 if (argv
[0][strlen (argv
[0]) - 1] == 's')
133 arguments
= getarguments (invo_name
, argc
, argv
, 1);
136 /* allocate the initial space to record the folder names */
138 maxfolders
= MAXFOLDERS
;
139 foldersToDo
= (char **) mh_xmalloc ((size_t) (maxfolders
* sizeof(*foldersToDo
)));
141 /* no sequences yet */
142 sequencesToDo
= svector_create (0);
144 /* parse arguments */
145 while ((cp
= *argp
++)) {
147 switch (smatch(++cp
, switches
)) {
149 ambigsw(cp
, switches
);
152 adios(NULL
, "-%s unknown", cp
);
155 snprintf(buf
, sizeof(buf
), "%s [+folder1 [+folder2 ...]][switches]",
157 print_help(buf
, switches
, 1);
160 print_version(invo_name
);
164 if (!(cp
= *argp
++) || *cp
== '-')
165 adios (NULL
, "missing argument to %s", argp
[-2]);
167 svector_push_back (sequencesToDo
, cp
);
210 * Check if we need to allocate more space
213 if (numfolders
>= maxfolders
) {
214 maxfolders
+= MAXFOLDERS
;
215 foldersToDo
= (char **) mh_xrealloc (foldersToDo
,
216 (size_t) (maxfolders
* sizeof(*foldersToDo
)));
218 if (*cp
== '+' || *cp
== '@') {
219 foldersToDo
[numfolders
++] =
222 foldersToDo
[numfolders
++] = cp
;
226 if (!context_find ("path"))
227 free (path ("./", TFOLDER
));
229 /* get current folder */
230 strncpy (curfolder
, getfolder(1), sizeof(curfolder
));
232 /* get nmh base directory */
233 nmhdir
= m_maildir ("");
236 * If we didn't specify any sequences, we search
237 * for the "Unseen-Sequence" profile entry and use
238 * all the sequences defined there.
240 if (svector_size (sequencesToDo
) == 0) {
241 if ((cp
= context_find(usequence
)) && *cp
) {
245 ap
= brkstring (dp
, " ", "\n");
246 for (; ap
&& *ap
; ap
++)
247 svector_push_back (sequencesToDo
, *ap
);
249 adios (NULL
, "no sequence specified or %s profile entry found", usequence
);
255 qsort(folders
, nFolders
, sizeof(struct Folder
), (qsort_comp
) CompareFolders
);
257 svector_free (sequencesToDo
);
263 * Read the Flist-Order profile entry to determine
264 * how to sort folders for output.
274 if (!(p
= context_find("Flist-Order")))
277 while (isspace((unsigned char) *p
))
280 while (*p
&& !isspace((unsigned char) *p
))
284 AllocFolders(&orders
, &nOrdersAlloced
, nOrders
+ 1);
285 o
= &orders
[nOrders
++];
286 o
->priority
= priority
++;
287 o
->name
= (char *) mh_xmalloc(p
- s
+ 1);
288 strncpy(o
->name
, s
, p
- s
);
296 * Scan all the necessary folders
305 * change directory to base of nmh directory
307 if (chdir (nmhdir
) == NOTOK
)
308 adios (nmhdir
, "unable to change directory to");
310 if (numfolders
> 0) {
312 strncpy (curfolder
, foldersToDo
[numfolders
- 1], sizeof(curfolder
));
313 context_replace (pfolder
, curfolder
);/* update current folder */
314 context_save (); /* save the context file */
317 * Scan each given folder. If -all is given,
318 * then also scan the 1st level subfolders under
321 for (i
= 0; i
< numfolders
; ++i
)
322 BuildFolderList(foldersToDo
[i
], all
? 1 : 0);
326 * Do the readonly folders
328 do_readonly_folders();
331 * Now scan the entire nmh directory for folders
333 BuildFolderList(".", 0);
336 * Else scan current folder
338 BuildFolderList(curfolder
, 0);
344 * Initial building of folder list for
345 * the top of our search tree.
349 BuildFolderList(char *dirName
, int searchdepth
)
353 /* Make sure we have a directory */
354 if ((stat(dirName
, &st
) == -1) || !S_ISDIR(st
.st_mode
))
358 * If base directory, don't add it to the
359 * folder list. We just recurse into it.
361 if (!strcmp (dirName
, ".")) {
362 BuildFolderListRecurse (".", &st
, 0);
367 * Add this folder to the list.
368 * If recursing and directory has subfolders,
369 * then build folder list for subfolders.
371 if (AddFolder(dirName
, showzero
) && (recurse
|| searchdepth
) && st
.st_nlink
> 2)
372 BuildFolderListRecurse(dirName
, &st
, searchdepth
- 1);
376 * Recursive building of folder list
380 BuildFolderListRecurse(char *dirName
, struct stat
*s
, int searchdepth
)
382 char *base
, name
[PATH_MAX
];
390 * Keep track of number of directories we've seen so we can
391 * stop stat'ing entries in this directory once we've seen
392 * them all. This optimization will fail if you have extra
393 * directories beginning with ".", since we don't bother to
394 * stat them. But that shouldn't generally be a problem.
396 nlinks
= s
->st_nlink
;
398 /* Disable the optimization under conditions where st_nlink
399 is set to 1. That happens on Cygwin, for example:
400 http://cygwin.com/ml/cygwin-apps/2008-08/msg00264.html */
404 if (!(dir
= opendir(dirName
)))
405 adios(dirName
, "can't open directory");
408 * A hack so that we don't see a
409 * leading "./" in folder names.
411 base
= strcmp (dirName
, ".") ? dirName
: dirName
+ 1;
413 while (nlinks
&& (dp
= readdir(dir
))) {
414 if (!strcmp(dp
->d_name
, ".") || !strcmp(dp
->d_name
, "..")) {
418 if (dp
->d_name
[0] == '.')
420 /* Check to see if the name of the file is a number
421 * if it is, we assume it's a mail file and skip it
423 for (n
= dp
->d_name
; *n
&& isdigit((unsigned char) *n
); n
++);
426 strncpy (name
, base
, sizeof(name
) - 2);
429 strncat(name
, dp
->d_name
, sizeof(name
) - strlen(name
) - 1);
430 if ((stat(name
, &st
) != -1) && S_ISDIR(st
.st_mode
)) {
432 * Check if this was really a symbolic link pointing
433 * to a directory. If not, then decrement link count.
435 if (lstat (name
, &st
) == -1)
437 /* Add this folder to the list */
438 if (AddFolder(name
, showzero
) &&
439 (recurse
|| searchdepth
) && st
.st_nlink
> 2)
440 BuildFolderListRecurse(name
, &st
, searchdepth
- 1);
447 * Add this folder to our list, counting the total number of
448 * messages and the number of messages in each sequence.
452 AddFolder(char *name
, int force
)
456 ivector_t seqnum
= ivector_create (0), nSeq
= ivector_create (0);
461 /* Read folder and create message structure */
462 if (!(mp
= folder_read (name
, 0))) {
463 /* Oops, error occurred. Record it and continue. */
464 AllocFolders(&folders
, &nFoldersAlloced
, nFolders
+ 1);
465 f
= &folders
[nFolders
++];
466 f
->name
= getcpy(name
);
468 f
->priority
= AssignPriority(f
->name
);
472 for (i
= 0; i
< svector_size (sequencesToDo
); i
++) {
473 /* Convert sequences to their sequence numbers */
474 if ((cp
= svector_at (sequencesToDo
, i
)))
475 ivector_push_back (seqnum
, seq_getnum(mp
, cp
));
477 ivector_push_back (seqnum
, -1);
479 /* Now count messages in this sequence */
480 ivector_push_back (nSeq
, 0);
481 if (mp
->nummsg
> 0 && ivector_at (seqnum
, i
) != -1) {
482 for (msgnum
= mp
->lowmsg
; msgnum
<= mp
->hghmsg
; msgnum
++) {
483 if (in_sequence(mp
, ivector_at (seqnum
, i
), msgnum
))
484 (*ivector_atp (nSeq
, i
))++;
489 /* Check if any of the sequence checks were nonzero */
491 for (i
= 0; i
< svector_size (sequencesToDo
); i
++) {
492 if (ivector_at (nSeq
, i
) > 0) {
498 if (nonzero
|| force
) {
499 /* save general folder information */
500 AllocFolders(&folders
, &nFoldersAlloced
, nFolders
+ 1);
501 f
= &folders
[nFolders
++];
502 f
->name
= getcpy(name
);
503 f
->nMsgs
= mp
->nummsg
;
504 f
->nSeq
= ivector_create (0);
505 f
->private = ivector_create (0);
507 f
->priority
= AssignPriority(f
->name
);
509 /* record the sequence information */
510 for (i
= 0; i
< svector_size (sequencesToDo
); i
++) {
511 *ivector_atp (f
->nSeq
, i
) = ivector_at (nSeq
, i
);
512 ivector_push_back (f
->private,
513 ivector_at (seqnum
, i
) != -1
514 ? is_seq_private(mp
, ivector_at (seqnum
, i
))
520 ivector_free (seqnum
);
521 folder_free (mp
); /* free folder/message structure */
526 * Print the folder/sequence information
532 char tmpname
[BUFSIZ
];
533 unsigned int i
, j
, len
, has_private
= 0;
534 unsigned int maxfolderlen
= 0, maxseqlen
= 0;
535 int maxnum
= 0, maxseq
= 0;
538 for (i
= 0; i
< nFolders
; i
++)
539 printf("%s\n", folders
[i
].name
);
544 * Find the width we need for various fields
546 for (i
= 0; i
< nFolders
; ++i
) {
547 /* find the length of longest folder name */
548 len
= strlen(folders
[i
].name
);
549 if (len
> maxfolderlen
)
552 /* If folder had error, skip the rest */
553 if (folders
[i
].error
)
556 /* find the maximum total messages */
557 if (folders
[i
].nMsgs
> maxnum
)
558 maxnum
= folders
[i
].nMsgs
;
560 for (j
= 0; j
< svector_size (sequencesToDo
); j
++) {
561 /* find maximum width of sequence name */
562 len
= strlen (svector_at (sequencesToDo
, j
));
563 if ((ivector_at (folders
[i
].nSeq
, j
) > 0 || showzero
) &&
567 /* find the maximum number of messages in sequence */
568 if (ivector_at (folders
[i
].nSeq
, j
) > maxseq
)
569 maxseq
= ivector_at (folders
[i
].nSeq
, j
);
571 /* check if this sequence is private in any of the folders */
572 if (ivector_at (folders
[i
].private, j
))
577 /* Now print all the folder/sequence information */
578 for (i
= 0; i
< nFolders
; i
++) {
579 for (j
= 0; j
< svector_size (sequencesToDo
); j
++) {
580 if (ivector_at (folders
[i
].nSeq
, j
) > 0 || showzero
) {
581 /* Add `+' to end of name of current folder */
582 if (strcmp(curfolder
, folders
[i
].name
))
583 snprintf(tmpname
, sizeof(tmpname
), "%s", folders
[i
].name
);
585 snprintf(tmpname
, sizeof(tmpname
), "%s+", folders
[i
].name
);
587 if (folders
[i
].error
) {
588 printf("%-*s is unreadable\n", maxfolderlen
+1, tmpname
);
592 printf("%-*s has %*d in sequence %-*s%s; out of %*d\n",
593 maxfolderlen
+1, tmpname
,
594 num_digits(maxseq
), ivector_at (folders
[i
].nSeq
, j
),
595 maxseqlen
, svector_at (sequencesToDo
, j
),
596 !has_private
? "" : ivector_at (folders
[i
].private, j
)
597 ? " (private)" : " ",
598 num_digits(maxnum
), folders
[i
].nMsgs
);
605 * Put them in priority order.
609 CompareFolders(struct Folder
*f1
, struct Folder
*f2
)
611 if (!alphaOrder
&& f1
->priority
!= f2
->priority
)
612 return f1
->priority
- f2
->priority
;
614 return strcmp(f1
->name
, f2
->name
);
618 * Make sure we have at least n folders allocated.
622 AllocFolders(struct Folder
**f
, int *nfa
, int n
)
628 *f
= (struct Folder
*) mh_xmalloc (*nfa
* (sizeof(struct Folder
)));
631 *f
= (struct Folder
*) mh_xrealloc (*f
, *nfa
* (sizeof(struct Folder
)));
636 * Return the priority for a name. The highest comes from an exact match.
637 * After that, the longest match (then first) assigns the priority.
640 AssignPriority(char *name
)
648 for (i
= 0; i
< nOrders
; ++i
) {
650 if (!strcmp(name
, o
->name
))
652 ol
= strlen(o
->name
);
657 if (o
->name
[0] == '*' && !strcmp(o
->name
+ 1, name
+ (nl
- ol
+ 1))) {
660 } else if (o
->name
[ol
- 1] == '*' && strncmp(o
->name
, name
, ol
- 1) == 0) {
669 * Do the read only folders
673 do_readonly_folders (void)
677 register struct node
*np
;
679 snprintf (atrcur
, sizeof(atrcur
), "atr-%s-", current
);
680 atrlen
= strlen (atrcur
);
682 for (np
= m_defs
; np
; np
= np
->n_next
)
683 if (ssequal (atrcur
, np
->n_name
)
684 && !ssequal (nmhdir
, np
->n_name
+ atrlen
))
685 BuildFolderList (np
->n_name
+ atrlen
, 0);