Removed the configuration option NOPUBLICSEQ.
[mmh] / sbr / seq_read.c
1 /*
2 ** seq_read.c -- read the .mh_sequence file and
3 **            -- initialize sequence information
4 **
5 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
6 ** COPYRIGHT file in the root directory of the nmh distribution for
7 ** complete copyright information.
8 */
9
10 #include <h/mh.h>
11 #include <h/utils.h>
12
13 /*
14 ** static prototypes
15 */
16 static int seq_init(struct msgs *, char *, char *);
17 static void seq_public(struct msgs *);
18 static void seq_private(struct msgs *);
19
20
21 /*
22 ** Get the sequence information for this folder from
23 ** .mh_sequences (or equivalent specified in .mh_profile)
24 ** or context file (for private sequences).
25 */
26
27 void
28 seq_read(struct msgs *mp)
29 {
30         /*
31         ** Initialize the list of sequence names.  Go ahead and
32         ** add the "cur" sequence to the list of sequences.
33         */
34         mp->msgattrs[0] = getcpy(current);
35         mp->msgattrs[1] = NULL;
36         make_all_public(mp);  /* initially, make all public */
37
38         /* If folder is empty, don't scan for sequence information */
39         if (mp->nummsg == 0)
40                 return;
41
42         /* Initialize the public sequences */
43         seq_public(mp);
44
45         /* Initialize the private sequences */
46         seq_private(mp);
47 }
48
49
50 /*
51 ** read folder's sequences file for public sequences
52 */
53
54 static void
55 seq_public(struct msgs *mp)
56 {
57         int state;
58         char *cp, seqfile[PATH_MAX];
59         char name[NAMESZ], field[BUFSIZ];
60         FILE *fp;
61
62         /*
63         ** If public sequences are disabled (e.g. the user has defined
64         ** an empty `Mh-Sequences' profile entry), then just return.
65         */
66         if (mh_seq == NULL || *mh_seq == '\0')
67                 return;
68
69         /* get filename of sequence file */
70         snprintf(seqfile, sizeof(seqfile), "%s/%s", mp->foldpath, mh_seq);
71
72         if ((fp = lkfopen(seqfile, "r")) == NULL)
73                 return;
74
75         /* Use m_getfld to scan sequence file */
76         for (state = FLD;;) {
77                 switch (state = m_getfld(state, name, field, sizeof(field), fp)) {
78                         case FLD:
79                         case FLDPLUS:
80                         case FLDEOF:
81                                 if (state == FLDPLUS) {
82                                         cp = getcpy(field);
83                                         while (state == FLDPLUS) {
84                                                 state = m_getfld(state, name, field, sizeof(field), fp);
85                                                 cp = add(field, cp);
86                                         }
87                                         seq_init(mp, getcpy(name), trimcpy(cp));
88                                         free(cp);
89                                 } else {
90                                         seq_init(mp, getcpy(name), trimcpy(field));
91                                 }
92                                 if (state == FLDEOF)
93                                         break;
94                                 continue;
95
96                         case BODY:
97                         case BODYEOF:
98                                 adios(NULL, "no blank lines are permitted in %s", seqfile);
99                                 /* fall */
100
101                         case FILEEOF:
102                                 break;
103
104                         default:
105                                 adios(NULL, "%s is poorly formatted", seqfile);
106                 }
107                 break;  /* break from for loop */
108         }
109
110         lkfclose(fp, seqfile);
111 }
112
113
114 /*
115 ** Scan profile/context list for private sequences.
116 **
117 ** We search the context list for all keys that look like
118 ** "atr-seqname-folderpath", and add them as private sequences.
119 */
120
121 static void
122 seq_private(struct msgs *mp)
123 {
124         int i, j, alen, plen;
125         char *cp;
126         struct node *np;
127
128         alen = strlen("atr-");
129         plen = strlen(mp->foldpath) + 1;
130
131         for (np = m_defs; np; np = np->n_next) {
132                 if (isprefix("atr-", np->n_name)
133                                 && (j = strlen(np->n_name) - plen) > alen
134                                 && *(np->n_name + j) == '-'
135                                 && strcmp(mp->foldpath, np->n_name + j + 1)
136                                 == 0) {
137                         cp = getcpy(np->n_name + alen);
138                         *(cp + j - alen) = '\0';
139                         if ((i = seq_init(mp, cp, getcpy(np->n_field))) != -1)
140                                 make_seq_private(mp, i);
141                 }
142         }
143 }
144
145
146 /*
147 ** Add the name of sequence to the list of folder sequences.
148 ** Then parse the list of message ranges for this
149 ** sequence, and setup the various bit flags for each
150 ** message in the sequence.
151 **
152 ** Return internal index for the sequence if successful.
153 ** Return -1 on error.
154 */
155
156 static int
157 seq_init(struct msgs *mp, char *name, char *field)
158 {
159         int i, j, k, is_current;
160         char *cp, **ap;
161
162         /*
163         ** Check if this is "cur" sequence,
164         ** so we can do some special things.
165         */
166         is_current = !strcmp(current, name);
167
168         /*
169         ** Search for this sequence name to see if we've seen
170         ** it already.  If we've seen this sequence before,
171         ** then clear the bit for this sequence from all the
172         ** mesages in this folder.
173         */
174         for (i = 0; mp->msgattrs[i]; i++) {
175                 if (!strcmp(mp->msgattrs[i], name)) {
176                         for (j = mp->lowmsg; j <= mp->hghmsg; j++)
177                                 clear_sequence(mp, i, j);
178                         break;
179                 }
180         }
181
182         /* Return error, if too many sequences */
183         if (i >= NUMATTRS) {
184                 free(name);
185                 free(field);
186                 return -1;
187         }
188
189         /*
190         ** If we've already seen this sequence name, just free the
191         ** name string.  Else add it to the list of sequence names.
192         */
193         if (mp->msgattrs[i]) {
194                 free(name);
195         } else {
196                 mp->msgattrs[i] = name;
197                 mp->msgattrs[i + 1] = NULL;
198         }
199
200         /*
201         ** Split up the different message ranges at whitespace
202         */
203         for (ap = brkstring(field, " ", "\n"); *ap; ap++) {
204                 if ((cp = strchr(*ap, '-')))
205                         *cp++ = '\0';
206                 if ((j = m_atoi(*ap)) > 0) {
207                         k = cp ? m_atoi(cp) : j;
208
209                         /*
210                         ** Keep mp->curmsg and "cur" sequence in synch.  Unlike
211                         ** other sequences, this message doesn't need to exist.
212                         ** Think about the series of command (rmm; next) to
213                         ** understand why this can be the case.  But if it does
214                         ** exist, we will still set the bit flag for it like
215                         ** other sequences.
216                         */
217                         if (is_current)
218                                 mp->curmsg = j;
219                         /*
220                         ** We iterate through messages in this range
221                         ** and flip on bit for this sequence.
222                         */
223                         for (; j <= k; j++) {
224                                 if (j >= mp->lowmsg && j <= mp->hghmsg &&
225                                                 does_exist(mp, j))
226                                         add_sequence(mp, i, j);
227                         }
228                 }
229         }
230
231         free(field);  /* free string containing message ranges */
232         return i;
233 }