Removed the space between function names and the opening parenthesis.
[mmh] / uip / mhpath.c
1 /*
2 ** mhpath.c -- print full pathnames of nmh messages and folders
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10 #include <h/utils.h>
11
12 static struct swit switches[] = {
13 #define VERSIONSW 0
14         { "version", 0 },
15 #define HELPSW  1
16         { "help", 0 },
17         { NULL, 0 }
18 };
19
20 int
21 main(int argc, char **argv)
22 {
23         int i;
24         char *cp, *maildir, *folder = NULL;
25         char **argp;
26         char **arguments, buf[BUFSIZ];
27         struct msgs_array msgs = { 0, 0, NULL };
28         struct msgs *mp;
29
30 #ifdef LOCALE
31         setlocale(LC_ALL, "");
32 #endif
33         invo_name = r1bindex(argv[0], '/');
34
35         /* read user profile/context */
36         context_read();
37
38         arguments = getarguments(invo_name, argc, argv, 1);
39         argp = arguments;
40
41         /*
42         ** Parse arguments
43         */
44         while ((cp = *argp++)) {
45                 if (*cp == '-') {
46                         switch (smatch(++cp, switches)) {
47                                 case AMBIGSW:
48                                         ambigsw(cp, switches);
49                                         done(1);
50                                 case UNKWNSW:
51                                         adios(NULL, "-%s unknown", cp);
52
53                                 case HELPSW:
54                                         snprintf(buf, sizeof(buf), "%s [+folder] [msgs] [switches]", invo_name);
55                                         print_help(buf, switches, 1);
56                                         done(1);
57                                 case VERSIONSW:
58                                         print_version(invo_name);
59                                         done(1);
60                         }
61                 }
62                 if (*cp == '+' || *cp == '@') {
63                         if (folder)
64                                 adios(NULL, "only one folder at a time!");
65                         else
66                                 folder = pluspath(cp);
67                 } else
68                         app_msgarg(&msgs, cp);
69         }
70
71         if (!context_find("path"))
72                 free(path("./", TFOLDER));
73
74         if (!folder)
75                 folder = getfolder(1);
76         maildir = m_maildir(folder);
77
78         /* If no messages are given, print folder pathname */
79         if (!msgs.size) {
80                 printf("%s\n", maildir);
81                 done(0);
82         }
83
84         if (chdir(maildir) == NOTOK)
85                 adios(maildir, "unable to change directory to");
86
87         /* read folder and create message structure */
88         if (!(mp = folder_read(folder)))
89                 adios(NULL, "unable to read folder %s", folder);
90
91         /*
92         ** We need to make sure there is message status space
93         ** for all the message numbers from 1 to "new" since
94         ** mhpath can select empty slots.  If we are adding
95         ** space at the end, we go ahead and add 10 slots.
96         */
97         if (mp->hghmsg >= mp->hghoff) {
98                 if (!(mp = folder_realloc(mp, 1, mp->hghmsg + 10)))
99                         adios(NULL, "unable to allocate folder storage");
100         } else if (mp->lowoff > 1) {
101                 if (!(mp = folder_realloc(mp, 1, mp->hghoff)))
102                         adios(NULL, "unable to allocate folder storage");
103         }
104
105         mp->msgflags |= ALLOW_NEW;  /* allow the "new" sequence */
106
107         /* parse all the message ranges/sequences and set SELECTED */
108         for (i = 0; i < msgs.size; i++)
109                 if (!m_convert(mp, msgs.msgs[i]))
110                         done(1);
111
112         seq_setprev(mp);  /* set the previous-sequence */
113
114         /* print the path of all selected messages */
115         for (i = mp->lowsel; i <= mp->hghsel; i++)
116                 if (is_selected(mp, i))
117                         printf("%s/%s\n", mp->foldpath, m_name(i));
118
119         seq_save(mp);  /* synchronize message sequences */
120         context_save();  /* save the context file */
121         folder_free(mp);  /* free folder/message structure */
122         done(0);
123         return 1;
124 }