]>
diplodocus.org Git - nmh/blob - sbr/seq_read.c
1 /* seq_read.c -- read the .mh_sequence file and
2 * -- initialize sequence information
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.
16 #include "brkstring.h"
19 #include "lock_file.h"
24 static int seq_init (struct msgs
*, char *, char *);
25 static int seq_public (struct msgs
*, int, int *);
26 static void seq_private (struct msgs
*);
30 * Get the sequence information for this folder from
31 * .mh_sequences (or equivalent specified in .mh_profile)
32 * or context file (for private sequences).
36 seq_read (struct msgs
*mp
, int lockflag
)
38 int failed_to_lock
= 0;
41 * Initialize the list of sequence names. Go ahead and
42 * add the "cur" sequence to the list of sequences.
44 svector_push_back (mp
->msgattrs
, getcpy (current
));
45 make_all_public (mp
); /* initially, make all public */
47 /* If folder is empty, don't scan for sequence information */
51 /* Initialize the public sequences */
52 if (seq_public (mp
, lockflag
, &failed_to_lock
) == NOTOK
) {
53 if (failed_to_lock
) return NOTOK
;
56 /* Initialize the private sequences */
64 * read folder's sequences file for public sequences
68 seq_public (struct msgs
*mp
, int lockflag
, int *failed_to_lock
)
71 char *cp
, seqfile
[PATH_MAX
];
72 char name
[NAMESZ
], field
[NMH_BUFSIZ
];
74 m_getfld_state_t gstate
;
77 * If mh_seq == NULL or if *mh_seq == '\0' (the user has defined
78 * the "mh-sequences" profile entry, but left it empty),
79 * then just return, and do not initialize any public sequences.
81 if (mh_seq
== NULL
|| *mh_seq
== '\0')
84 /* get filename of sequence file */
85 snprintf (seqfile
, sizeof(seqfile
), "%s/%s", mp
->foldpath
, mh_seq
);
87 if ((fp
= lkfopendata (seqfile
, lockflag
? "r+" : "r", failed_to_lock
))
91 /* Use m_getfld2 to scan sequence file */
92 gstate
= m_getfld_state_init(fp
);
94 int fieldsz
= sizeof field
;
95 switch (state
= m_getfld2(&gstate
, name
, field
, &fieldsz
)) {
98 if (state
== FLDPLUS
) {
99 cp
= mh_xstrdup(field
);
100 while (state
== FLDPLUS
) {
101 fieldsz
= sizeof field
;
102 state
= m_getfld2(&gstate
, name
, field
, &fieldsz
);
103 cp
= add (field
, cp
);
105 seq_init (mp
, mh_xstrdup(name
), trimcpy (cp
));
108 seq_init (mp
, mh_xstrdup(name
), trimcpy (field
));
113 lkfclosedata (fp
, seqfile
);
114 die("no blank lines are permitted in %s", seqfile
);
121 lkfclosedata (fp
, seqfile
);
122 die("%s is poorly formatted", seqfile
);
124 break; /* break from for loop */
126 m_getfld_state_destroy (&gstate
);
130 mp
->seqname
= mh_xstrdup(seqfile
);
132 lkfclosedata (fp
, seqfile
);
140 * Scan profile/context list for private sequences.
142 * We search the context list for all keys that look like
143 * "atr-seqname-folderpath", and add them as private sequences.
147 seq_private (struct msgs
*mp
)
149 int i
, j
, alen
, plen
;
154 plen
= strlen (mp
->foldpath
) + 1;
156 for (np
= m_defs
; np
; np
= np
->n_next
) {
157 if (ssequal ("atr-", np
->n_name
)
158 && (j
= strlen (np
->n_name
) - plen
) > alen
159 && *(np
->n_name
+ j
) == '-'
160 && strcmp (mp
->foldpath
, np
->n_name
+ j
+ 1) == 0) {
161 cp
= mh_xstrdup(np
->n_name
+ alen
);
162 *(cp
+ j
- alen
) = '\0';
163 if ((i
= seq_init (mp
, cp
, getcpy (np
->n_field
))) != -1)
164 make_seq_private (mp
, i
);
171 * Add the name of sequence to the list of folder sequences.
172 * Then parse the list of message ranges for this
173 * sequence, and setup the various bit flags for each
174 * message in the sequence.
176 * Return internal index for the sequence if successful.
177 * Return -1 on error.
181 seq_init (struct msgs
*mp
, char *name
, char *field
)
184 int j
, k
, is_current
;
188 * Check if this is "cur" sequence,
189 * so we can do some special things.
191 is_current
= !strcmp (current
, name
);
194 * Search for this sequence name to see if we've seen
195 * it already. If we've seen this sequence before,
196 * then clear the bit for this sequence from all the
197 * messages in this folder.
199 for (i
= 0; i
< svector_size (mp
->msgattrs
); i
++) {
200 if (!strcmp (svector_at (mp
->msgattrs
, i
), name
)) {
201 for (j
= mp
->lowmsg
; j
<= mp
->hghmsg
; j
++)
202 clear_sequence (mp
, i
, j
);
208 * If we've already seen this sequence name, just free the
209 * name string. Else add it to the list of sequence names.
211 if (svector_at (mp
->msgattrs
, i
)) {
214 svector_push_back (mp
->msgattrs
, name
);
218 * Split up the different message ranges at whitespace
220 for (ap
= brkstring (field
, " ", "\n"); *ap
; ap
++) {
221 if ((cp
= strchr(*ap
, '-')))
223 if ((j
= m_atoi (*ap
)) > 0) {
224 k
= cp
? m_atoi (cp
) : j
;
227 * Keep mp->curmsg and "cur" sequence in synch. Unlike
228 * other sequences, this message doesn't need to exist.
229 * Think about the series of command (rmm; next) to
230 * understand why this can be the case. But if it does
231 * exist, we will still set the bit flag for it like
237 * We iterate through messages in this range
238 * and flip on bit for this sequence.
240 for (; j
<= k
; j
++) {
241 if (j
>= mp
->lowmsg
&& j
<= mp
->hghmsg
&& does_exist(mp
, j
))
242 add_sequence (mp
, i
, j
);
247 free (field
); /* free string containing message ranges */