]>
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.
11 #include "lock_file.h"
16 static int seq_init (struct msgs
*, char *, char *);
17 static int seq_public (struct msgs
*, int, int *);
18 static void seq_private (struct msgs
*);
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).
28 seq_read (struct msgs
*mp
, int lockflag
)
30 int failed_to_lock
= 0;
33 * Initialize the list of sequence names. Go ahead and
34 * add the "cur" sequence to the list of sequences.
36 svector_push_back (mp
->msgattrs
, getcpy (current
));
37 make_all_public (mp
); /* initially, make all public */
39 /* If folder is empty, don't scan for sequence information */
43 /* Initialize the public sequences */
44 if (seq_public (mp
, lockflag
, &failed_to_lock
) == NOTOK
) {
45 if (failed_to_lock
) return NOTOK
;
48 /* Initialize the private sequences */
56 * read folder's sequences file for public sequences
60 seq_public (struct msgs
*mp
, int lockflag
, int *failed_to_lock
)
63 char *cp
, seqfile
[PATH_MAX
];
64 char name
[NAMESZ
], field
[NMH_BUFSIZ
];
66 m_getfld_state_t gstate
= 0;
69 * If mh_seq == NULL or if *mh_seq == '\0' (the user has defined
70 * the "mh-sequences" profile entry, but left it empty),
71 * then just return, and do not initialize any public sequences.
73 if (mh_seq
== NULL
|| *mh_seq
== '\0')
76 /* get filename of sequence file */
77 snprintf (seqfile
, sizeof(seqfile
), "%s/%s", mp
->foldpath
, mh_seq
);
79 if ((fp
= lkfopendata (seqfile
, lockflag
? "r+" : "r", failed_to_lock
))
83 /* Use m_getfld to scan sequence file */
85 int fieldsz
= sizeof field
;
86 switch (state
= m_getfld (&gstate
, name
, field
, &fieldsz
, fp
)) {
89 if (state
== FLDPLUS
) {
90 cp
= mh_xstrdup(field
);
91 while (state
== FLDPLUS
) {
92 fieldsz
= sizeof field
;
93 state
= m_getfld (&gstate
, name
, field
, &fieldsz
, fp
);
96 seq_init (mp
, mh_xstrdup(name
), trimcpy (cp
));
99 seq_init (mp
, mh_xstrdup(name
), trimcpy (field
));
104 lkfclosedata (fp
, seqfile
);
105 adios (NULL
, "no blank lines are permitted in %s", seqfile
);
112 lkfclosedata (fp
, seqfile
);
113 adios (NULL
, "%s is poorly formatted", seqfile
);
115 break; /* break from for loop */
117 m_getfld_state_destroy (&gstate
);
121 mp
->seqname
= mh_xstrdup(seqfile
);
123 lkfclosedata (fp
, seqfile
);
131 * Scan profile/context list for private sequences.
133 * We search the context list for all keys that look like
134 * "atr-seqname-folderpath", and add them as private sequences.
138 seq_private (struct msgs
*mp
)
140 int i
, j
, alen
, plen
;
145 plen
= strlen (mp
->foldpath
) + 1;
147 for (np
= m_defs
; np
; np
= np
->n_next
) {
148 if (ssequal ("atr-", np
->n_name
)
149 && (j
= strlen (np
->n_name
) - plen
) > alen
150 && *(np
->n_name
+ j
) == '-'
151 && strcmp (mp
->foldpath
, np
->n_name
+ j
+ 1) == 0) {
152 cp
= mh_xstrdup(np
->n_name
+ alen
);
153 *(cp
+ j
- alen
) = '\0';
154 if ((i
= seq_init (mp
, cp
, getcpy (np
->n_field
))) != -1)
155 make_seq_private (mp
, i
);
162 * Add the name of sequence to the list of folder sequences.
163 * Then parse the list of message ranges for this
164 * sequence, and setup the various bit flags for each
165 * message in the sequence.
167 * Return internal index for the sequence if successful.
168 * Return -1 on error.
172 seq_init (struct msgs
*mp
, char *name
, char *field
)
175 int j
, k
, is_current
;
179 * Check if this is "cur" sequence,
180 * so we can do some special things.
182 is_current
= !strcmp (current
, name
);
185 * Search for this sequence name to see if we've seen
186 * it already. If we've seen this sequence before,
187 * then clear the bit for this sequence from all the
188 * messages in this folder.
190 for (i
= 0; i
< svector_size (mp
->msgattrs
); i
++) {
191 if (!strcmp (svector_at (mp
->msgattrs
, i
), name
)) {
192 for (j
= mp
->lowmsg
; j
<= mp
->hghmsg
; j
++)
193 clear_sequence (mp
, i
, j
);
199 * If we've already seen this sequence name, just free the
200 * name string. Else add it to the list of sequence names.
202 if (svector_at (mp
->msgattrs
, i
)) {
205 svector_push_back (mp
->msgattrs
, name
);
209 * Split up the different message ranges at whitespace
211 for (ap
= brkstring (field
, " ", "\n"); *ap
; ap
++) {
212 if ((cp
= strchr(*ap
, '-')))
214 if ((j
= m_atoi (*ap
)) > 0) {
215 k
= cp
? m_atoi (cp
) : j
;
218 * Keep mp->curmsg and "cur" sequence in synch. Unlike
219 * other sequences, this message doesn't need to exist.
220 * Think about the series of command (rmm; next) to
221 * understand why this can be the case. But if it does
222 * exist, we will still set the bit flag for it like
228 * We iterate through messages in this range
229 * and flip on bit for this sequence.
231 for (; j
<= k
; j
++) {
232 if (j
>= mp
->lowmsg
&& j
<= mp
->hghmsg
&& does_exist(mp
, j
))
233 add_sequence (mp
, i
, j
);
238 free (field
); /* free string containing message ranges */