Reformated comments and long lines
[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]",
55                                                 invo_name);
56                                         print_help (buf, switches, 1);
57                                         done (1);
58                                 case VERSIONSW:
59                                         print_version(invo_name);
60                                         done (1);
61                         }
62                 }
63                 if (*cp == '+' || *cp == '@') {
64                         if (folder)
65                                 adios (NULL, "only one folder at a time!");
66                         else
67                                 folder = pluspath (cp);
68                 } else
69                                 app_msgarg(&msgs, cp);
70         }
71
72         if (!context_find ("path"))
73                 free (path ("./", TFOLDER));
74
75         if (!folder)
76                 folder = getfolder (1);
77         maildir = m_maildir (folder);
78
79         /* If no messages are given, print folder pathname */
80         if (!msgs.size) {
81                 printf ("%s\n", maildir);
82                 done (0);
83         }
84
85         if (chdir (maildir) == NOTOK)
86                 adios (maildir, "unable to change directory to");
87
88         /* read folder and create message structure */
89         if (!(mp = folder_read (folder)))
90                 adios (NULL, "unable to read folder %s", folder);
91
92         /*
93         ** We need to make sure there is message status space
94         ** for all the message numbers from 1 to "new" since
95         ** mhpath can select empty slots.  If we are adding
96         ** space at the end, we go ahead and add 10 slots.
97         */
98         if (mp->hghmsg >= mp->hghoff) {
99                 if (!(mp = folder_realloc (mp, 1, mp->hghmsg + 10)))
100                         adios (NULL, "unable to allocate folder storage");
101         } else if (mp->lowoff > 1) {
102                 if (!(mp = folder_realloc (mp, 1, mp->hghoff)))
103                         adios (NULL, "unable to allocate folder storage");
104         }
105
106         mp->msgflags |= ALLOW_NEW;  /* allow the "new" sequence */
107
108         /* parse all the message ranges/sequences and set SELECTED */
109         for (i = 0; i < msgs.size; i++)
110                 if (!m_convert (mp, msgs.msgs[i]))
111                         done (1);
112
113         seq_setprev (mp);  /* set the previous-sequence */
114
115         /* print the path of all selected messages */
116         for (i = mp->lowsel; i <= mp->hghsel; i++)
117                 if (is_selected (mp, i))
118                         printf ("%s/%s\n", mp->foldpath, m_name (i));
119
120         seq_save (mp);  /* synchronize message sequences */
121         context_save ();  /* save the context file */
122         folder_free (mp);  /* free folder/message structure */
123         done (0);
124         return 1;
125 }