]>
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
26 * We allocate space to record the names of folders
27 * (foldersToDo array), this number of elements at a time.
29 #define MAXFOLDERS 100
32 static struct swit switches
[] = {
34 { "sequence name", 0 },
67 char *name
; /* name of folder */
69 int error
; /* error == 1 for unreadable folder */
70 int nMsgs
; /* number of messages in folder */
71 int nSeq
[NUMATTRS
]; /* number of messages in each sequence */
72 int private[NUMATTRS
]; /* is given sequence, public or private */
75 static struct Folder
*orders
= NULL
;
76 static int nOrders
= 0;
77 static int nOrdersAlloced
= 0;
78 static struct Folder
*folders
= NULL
;
79 static int nFolders
= 0;
80 static int nFoldersAlloced
= 0;
82 /* info on folders to search */
83 static char **foldersToDo
;
84 static int numfolders
;
85 static int maxfolders
;
87 /* info on sequences to search for */
88 static char *sequencesToDo
[NUMATTRS
];
89 static int numsequences
;
91 static int all
= FALSE
; /* scan all folders in top level? */
92 static int alphaOrder
= FALSE
; /* want alphabetical order only */
93 static int recurse
= FALSE
; /* show nested folders? */
94 static int showzero
= TRUE
; /* show folders even if no messages in seq? */
95 static int Total
= TRUE
; /* display info on number of messages in *
96 * sequence found, and total num messages */
98 static char curfolder
[BUFSIZ
]; /* name of the current folder */
99 static char *nmhdir
; /* base nmh mail directory */
102 * Type for a compare function for qsort. This keeps
103 * the compiler happy.
105 typedef int (*qsort_comp
) (const void *, const void *);
110 int CompareFolders(struct Folder
*, struct Folder
*);
111 void GetFolderOrder(void);
112 void ScanFolders(void);
113 int AddFolder(char *, int);
114 void BuildFolderList(char *, int);
115 void BuildFolderListRecurse(char *, struct stat
*, int);
116 void PrintFolders(void);
117 void AllocFolders(struct Folder
**, int *, int);
118 int AssignPriority(char *);
119 static void do_readonly_folders(void);
124 main(int argc
, char **argv
)
131 setlocale(LC_ALL
, "");
133 invo_name
= r1bindex(argv
[0], '/');
135 /* read user profile/context */
139 * If program was invoked with name ending
140 * in `s', then add switch `-all'.
142 if (argv
[0][strlen (argv
[0]) - 1] == 's')
145 arguments
= getarguments (invo_name
, argc
, argv
, 1);
148 /* allocate the initial space to record the folder names */
150 maxfolders
= MAXFOLDERS
;
151 foldersToDo
= (char **) mh_xmalloc ((size_t) (maxfolders
* sizeof(*foldersToDo
)));
153 /* no sequences yet */
156 /* parse arguments */
157 while ((cp
= *argp
++)) {
159 switch (smatch(++cp
, switches
)) {
161 ambigsw(cp
, switches
);
164 adios(NULL
, "-%s unknown", cp
);
167 snprintf(buf
, sizeof(buf
), "%s [+folder1 [+folder2 ...]][switches]",
169 print_help(buf
, switches
, 1);
172 print_version(invo_name
);
176 if (!(cp
= *argp
++) || *cp
== '-')
177 adios (NULL
, "missing argument to %s", argp
[-2]);
179 /* check if too many sequences specified */
180 if (numsequences
>= NUMATTRS
)
181 adios (NULL
, "too many sequences (more than %d) specified", NUMATTRS
);
182 sequencesToDo
[numsequences
++] = cp
;
225 * Check if we need to allocate more space
228 if (numfolders
>= maxfolders
) {
229 maxfolders
+= MAXFOLDERS
;
230 foldersToDo
= (char **) mh_xrealloc (foldersToDo
,
231 (size_t) (maxfolders
* sizeof(*foldersToDo
)));
233 if (*cp
== '+' || *cp
== '@') {
234 foldersToDo
[numfolders
++] =
237 foldersToDo
[numfolders
++] = cp
;
241 if (!context_find ("path"))
242 free (path ("./", TFOLDER
));
244 /* get current folder */
245 strncpy (curfolder
, getfolder(1), sizeof(curfolder
));
247 /* get nmh base directory */
248 nmhdir
= m_maildir ("");
251 * If we didn't specify any sequences, we search
252 * for the "Unseen-Sequence" profile entry and use
253 * all the sequences defined there. We check to
254 * make sure that the Unseen-Sequence entry doesn't
255 * contain more than NUMATTRS sequences.
257 if (numsequences
== 0) {
258 if ((cp
= context_find(usequence
)) && *cp
) {
262 ap
= brkstring (dp
, " ", "\n");
263 for (; ap
&& *ap
; ap
++) {
264 if (numsequences
>= NUMATTRS
)
265 adios (NULL
, "too many sequences (more than %d) in %s profile entry",
266 NUMATTRS
, usequence
);
268 sequencesToDo
[numsequences
++] = *ap
;
271 adios (NULL
, "no sequence specified or %s profile entry found", usequence
);
277 qsort(folders
, nFolders
, sizeof(struct Folder
), (qsort_comp
) CompareFolders
);
284 * Read the Flist-Order profile entry to determine
285 * how to sort folders for output.
291 unsigned char *p
, *s
;
295 if (!(p
= context_find("Flist-Order")))
301 while (*p
&& !isspace(*p
))
305 AllocFolders(&orders
, &nOrdersAlloced
, nOrders
+ 1);
306 o
= &orders
[nOrders
++];
307 o
->priority
= priority
++;
308 o
->name
= (char *) mh_xmalloc(p
- s
+ 1);
309 strncpy(o
->name
, s
, p
- s
);
317 * Scan all the necessary folders
326 * change directory to base of nmh directory
328 if (chdir (nmhdir
) == NOTOK
)
329 adios (nmhdir
, "unable to change directory to");
331 if (numfolders
> 0) {
333 strncpy (curfolder
, foldersToDo
[numfolders
- 1], sizeof(curfolder
));
334 context_replace (pfolder
, curfolder
);/* update current folder */
335 context_save (); /* save the context file */
338 * Scan each given folder. If -all is given,
339 * then also scan the 1st level subfolders under
342 for (i
= 0; i
< numfolders
; ++i
)
343 BuildFolderList(foldersToDo
[i
], all
? 1 : 0);
347 * Do the readonly folders
349 do_readonly_folders();
352 * Now scan the entire nmh directory for folders
354 BuildFolderList(".", 0);
357 * Else scan current folder
359 BuildFolderList(curfolder
, 0);
365 * Initial building of folder list for
366 * the top of our search tree.
370 BuildFolderList(char *dirName
, int searchdepth
)
374 /* Make sure we have a directory */
375 if ((stat(dirName
, &st
) == -1) || !S_ISDIR(st
.st_mode
))
379 * If base directory, don't add it to the
380 * folder list. We just recurse into it.
382 if (!strcmp (dirName
, ".")) {
383 BuildFolderListRecurse (".", &st
, 0);
388 * Add this folder to the list.
389 * If recursing and directory has subfolders,
390 * then build folder list for subfolders.
392 if (AddFolder(dirName
, showzero
) && (recurse
|| searchdepth
) && st
.st_nlink
> 2)
393 BuildFolderListRecurse(dirName
, &st
, searchdepth
- 1);
397 * Recursive building of folder list
401 BuildFolderListRecurse(char *dirName
, struct stat
*s
, int searchdepth
)
403 char *base
, name
[PATH_MAX
];
411 * Keep track of number of directories we've seen so we can
412 * stop stat'ing entries in this directory once we've seen
413 * them all. This optimization will fail if you have extra
414 * directories beginning with ".", since we don't bother to
415 * stat them. But that shouldn't generally be a problem.
417 nlinks
= s
->st_nlink
;
419 if (!(dir
= opendir(dirName
)))
420 adios(dirName
, "can't open directory");
423 * A hack so that we don't see a
424 * leading "./" in folder names.
426 base
= strcmp (dirName
, ".") ? dirName
: dirName
+ 1;
428 while (nlinks
&& (dp
= readdir(dir
))) {
429 if (!strcmp(dp
->d_name
, ".") || !strcmp(dp
->d_name
, "..")) {
433 if (dp
->d_name
[0] == '.')
435 /* Check to see if the name of the file is a number
436 * if it is, we assume it's a mail file and skip it
438 for (n
= dp
->d_name
; *n
&& isdigit(*n
); n
++);
441 strncpy (name
, base
, sizeof(name
) - 2);
444 strncat(name
, dp
->d_name
, sizeof(name
) - strlen(name
) - 1);
445 if ((stat(name
, &st
) != -1) && S_ISDIR(st
.st_mode
)) {
447 * Check if this was really a symbolic link pointing
448 * to a directory. If not, then decrement link count.
450 if (lstat (name
, &st
) == -1)
452 /* Add this folder to the list */
453 if (AddFolder(name
, showzero
) &&
454 (recurse
|| searchdepth
) && st
.st_nlink
> 2)
455 BuildFolderListRecurse(name
, &st
, searchdepth
- 1);
462 * Add this folder to our list, counting the total number of
463 * messages and the number of messages in each sequence.
467 AddFolder(char *name
, int force
)
469 int i
, msgnum
, nonzero
;
470 int seqnum
[NUMATTRS
], nSeq
[NUMATTRS
];
474 /* Read folder and create message structure */
475 if (!(mp
= folder_read (name
))) {
476 /* Oops, error occurred. Record it and continue. */
477 AllocFolders(&folders
, &nFoldersAlloced
, nFolders
+ 1);
478 f
= &folders
[nFolders
++];
479 f
->name
= getcpy(name
);
481 f
->priority
= AssignPriority(f
->name
);
485 for (i
= 0; i
< numsequences
; i
++) {
486 /* Convert sequences to their sequence numbers */
487 if (sequencesToDo
[i
])
488 seqnum
[i
] = seq_getnum(mp
, sequencesToDo
[i
]);
492 /* Now count messages in this sequence */
494 if (mp
->nummsg
> 0 && seqnum
[i
] != -1) {
495 for (msgnum
= mp
->lowmsg
; msgnum
<= mp
->hghmsg
; msgnum
++) {
496 if (in_sequence(mp
, seqnum
[i
], msgnum
))
502 /* Check if any of the sequence checks were nonzero */
504 for (i
= 0; i
< numsequences
; i
++) {
511 if (nonzero
|| force
) {
512 /* save general folder information */
513 AllocFolders(&folders
, &nFoldersAlloced
, nFolders
+ 1);
514 f
= &folders
[nFolders
++];
515 f
->name
= getcpy(name
);
516 f
->nMsgs
= mp
->nummsg
;
518 f
->priority
= AssignPriority(f
->name
);
520 /* record the sequence information */
521 for (i
= 0; i
< numsequences
; i
++) {
522 f
->nSeq
[i
] = nSeq
[i
];
523 f
->private[i
] = (seqnum
[i
] != -1) ? is_seq_private(mp
, seqnum
[i
]) : 0;
527 folder_free (mp
); /* free folder/message structure */
532 * Print the folder/sequence information
538 char tmpname
[BUFSIZ
];
539 int i
, j
, len
, has_private
= 0;
540 int maxfolderlen
= 0, maxseqlen
= 0;
541 int maxnum
= 0, maxseq
= 0;
544 for (i
= 0; i
< nFolders
; i
++)
545 printf("%s\n", folders
[i
].name
);
550 * Find the width we need for various fields
552 for (i
= 0; i
< nFolders
; ++i
) {
553 /* find the length of longest folder name */
554 len
= strlen(folders
[i
].name
);
555 if (len
> maxfolderlen
)
558 /* If folder had error, skip the rest */
559 if (folders
[i
].error
)
562 /* find the maximum total messages */
563 if (folders
[i
].nMsgs
> maxnum
)
564 maxnum
= folders
[i
].nMsgs
;
566 for (j
= 0; j
< numsequences
; j
++) {
567 /* find maximum width of sequence name */
568 len
= strlen (sequencesToDo
[j
]);
569 if ((folders
[i
].nSeq
[j
] > 0 || showzero
) && (len
> maxseqlen
))
572 /* find the maximum number of messages in sequence */
573 if (folders
[i
].nSeq
[j
] > maxseq
)
574 maxseq
= folders
[i
].nSeq
[j
];
576 /* check if this sequence is private in any of the folders */
577 if (folders
[i
].private[j
])
582 /* Now print all the folder/sequence information */
583 for (i
= 0; i
< nFolders
; i
++) {
584 for (j
= 0; j
< numsequences
; j
++) {
585 if (folders
[i
].nSeq
[j
] > 0 || showzero
) {
586 /* Add `+' to end of name of current folder */
587 if (strcmp(curfolder
, folders
[i
].name
))
588 snprintf(tmpname
, sizeof(tmpname
), "%s", folders
[i
].name
);
590 snprintf(tmpname
, sizeof(tmpname
), "%s+", folders
[i
].name
);
592 if (folders
[i
].error
) {
593 printf("%-*s is unreadable\n", maxfolderlen
+1, tmpname
);
597 printf("%-*s has %*d in sequence %-*s%s; out of %*d\n",
598 maxfolderlen
+1, tmpname
,
599 num_digits(maxseq
), folders
[i
].nSeq
[j
],
600 maxseqlen
, sequencesToDo
[j
],
601 !has_private
? "" : folders
[i
].private[j
] ? " (private)" : " ",
602 num_digits(maxnum
), folders
[i
].nMsgs
);
609 * Put them in priority order.
613 CompareFolders(struct Folder
*f1
, struct Folder
*f2
)
615 if (!alphaOrder
&& f1
->priority
!= f2
->priority
)
616 return f1
->priority
- f2
->priority
;
618 return strcmp(f1
->name
, f2
->name
);
622 * Make sure we have at least n folders allocated.
626 AllocFolders(struct Folder
**f
, int *nfa
, int n
)
632 *f
= (struct Folder
*) mh_xmalloc (*nfa
* (sizeof(struct Folder
)));
635 *f
= (struct Folder
*) mh_xrealloc (*f
, *nfa
* (sizeof(struct Folder
)));
640 * Return the priority for a name. The highest comes from an exact match.
641 * After that, the longest match (then first) assigns the priority.
644 AssignPriority(char *name
)
652 for (i
= 0; i
< nOrders
; ++i
) {
654 if (!strcmp(name
, o
->name
))
656 ol
= strlen(o
->name
);
661 if (o
->name
[0] == '*' && !strcmp(o
->name
+ 1, name
+ (nl
- ol
+ 1))) {
664 } else if (o
->name
[ol
- 1] == '*' && strncmp(o
->name
, name
, ol
- 1) == 0) {
673 * Do the read only folders
677 do_readonly_folders (void)
681 register struct node
*np
;
683 snprintf (atrcur
, sizeof(atrcur
), "atr-%s-", current
);
684 atrlen
= strlen (atrcur
);
686 for (np
= m_defs
; np
; np
= np
->n_next
)
687 if (ssequal (atrcur
, np
->n_name
)
688 && !ssequal (nmhdir
, np
->n_name
+ atrlen
))
689 BuildFolderList (np
->n_name
+ atrlen
, 0);