]>
diplodocus.org Git - nmh/blob - h/mh.h
2 * mh.h -- main header file for all of nmh
10 #define NOTOK (-1) /* syscall()s return this on error */
11 #define OK 0 /* ditto on success */
12 #define DONE 1 /* trinary logic */
14 #define Nbby 8 /* number of bits/byte */
16 #define MAXARGS 1000 /* max arguments to exec */
17 #define NFOLDERS 1000 /* max folder arguments on command line */
18 #define DMAXFOLDER 4 /* typical number of digits */
19 #define MAXFOLDER 1000 /* message increment */
22 * This macro is for use by scan, for example, so that platforms with
23 * a small BUFSIZ can easily allocate larger buffers.
25 #define NMH_BUFSIZ (BUFSIZ>=8192 ? BUFSIZ : 8192)
33 typedef unsigned char boolean
; /* not int so we can pack in a structure */
35 /* If we're using gcc then give it some information about
36 * functions that abort.
39 #define NORETURN __attribute__((__noreturn__))
40 #define NMH_UNUSED(i) (void) i
43 #define NMH_UNUSED(i) i
47 * char array that keeps track of size in both bytes and characters
49 * Don't store return value of charstring_buffer() and use later
50 * after intervening push_back's; use charstring_buffer_copy()
53 typedef struct charstring
*charstring_t
;
55 charstring_t
charstring_create (size_t);
56 charstring_t
charstring_copy (const charstring_t
);
57 void charstring_free (charstring_t
);
58 /* Append a single-byte character: */
59 void charstring_push_back (charstring_t
, const char);
60 /* Append possibly multi-byte character(s): */
61 void charstring_push_back_chars (charstring_t
, const char [], size_t, size_t);
62 void charstring_append (charstring_t
, const charstring_t
);
63 void charstring_append_cstring (charstring_t
, const char []);
64 void charstring_clear (charstring_t
);
65 /* Don't store return value of charstring_buffer() and use later after
66 intervening push_back's; use charstring_buffer_copy() instead. */
67 const char *charstring_buffer (const charstring_t
);
68 /* User is responsible for free'ing result of buffer copy. */
69 char *charstring_buffer_copy (const charstring_t
);
70 size_t charstring_bytes (const charstring_t
);
71 size_t charstring_chars (const charstring_t
);
72 /* Length of the last character in the charstring. */
73 int charstring_last_char_len (const charstring_t
);
76 * user context/profile structure
79 char *n_name
; /* key */
80 char *n_field
; /* value */
81 char n_context
; /* context, not profile */
82 struct node
*n_next
; /* next entry */
88 #define AMBIGSW (-2) /* from smatch() on ambiguous switch */
89 #define UNKWNSW (-1) /* from smatch() on unknown switch */
99 /* The minchars field is apparently used like this:
101 -# : Switch can be abbreviated to # characters; switch hidden in -help.
102 0 : Switch can't be abbreviated; switch shown in -help.
103 # : Switch can be abbreviated to # characters; switch shown in -help. */
107 * If we pick this switch, return this value from smatch
114 * Macros to use when declaring struct swit arrays.
116 * These macros use a technique known as X-Macros. In your source code you
117 * use them like this:
119 * #define FOO_SWITCHES \
120 * X("switch1", 0, SWITCHSW) \
121 * X("switch2", 0, SWITCH2SW) \
122 * X("thirdswitch", 2, SWITCH3SW) \
124 * The argument to each entry in FOO_SWITCHES are the switch name (sw),
125 * the minchars field (see above) and the return value for this switch.
126 * Note that the last entry in the above definition must either omit the
127 * continuation backslash, or be followed by a blank line. In the nmh
128 * code the style is to have every line include a backslash and follow
129 * the SWITCHES macro definition by a blank line.
131 * After you define FOO_SWITCHES, you instantiate it as follows:
133 * #define X(sw, minchars, id) id,
134 * DEFINE_SWITCH_ENUM(FOO);
137 * #define X(sw, minchars, id) { sw, minchars, id },
138 * DEFINE_SWITCH_ARRAY(FOO);
141 * DEFINE_SWITCH_ENUM defines an extra enum at the end of the list called
145 #define DEFINE_SWITCH_ENUM(name) \
151 #define DEFINE_SWITCH_ARRAY(name, array) \
152 static struct swit array[] = { \
157 extern struct swit anoyes
[]; /* standard yes/no switches */
160 * general folder attributes
162 #define READONLY (1<<0) /* No write access to folder */
163 #define SEQMOD (1<<1) /* folder's sequences modifed */
164 #define ALLOW_NEW (1<<2) /* allow the "new" sequence */
165 #define OTHERS (1<<3) /* folder has other files */
166 #define MODIFIED (1<<4) /* msh in-core folder modified */
168 #define FBITS "\020\01READONLY\02SEQMOD\03ALLOW_NEW\04OTHERS\05MODIFIED"
171 * first free slot for user defined sequences
177 * internal messages attributes (sequences)
179 #define EXISTS (0) /* exists */
180 #define DELETED (1) /* deleted */
181 #define SELECTED (2) /* selected for use */
182 #define SELECT_EMPTY (3) /* "new" message */
183 #define SELECT_UNSEEN (4) /* inc/show "unseen" */
185 #define MBITS "\020\01EXISTS\02DELETED\03SELECTED\04NEW\05UNSEEN"
188 * type for holding the sequence set of a message
190 typedef struct bvector
*bvector_t
;
192 bvector_t
bvector_create (size_t /* initial size in bits, can be 0 */);
193 void bvector_copy (bvector_t
, bvector_t
);
194 void bvector_free (bvector_t
);
195 void bvector_clear (bvector_t
, size_t);
196 void bvector_clear_all (bvector_t
);
197 void bvector_set (bvector_t
, size_t);
198 unsigned int bvector_at (bvector_t
, size_t);
199 const unsigned long *bvector_bits (bvector_t
);
200 size_t bvector_maxsize (bvector_t
);
202 typedef struct svector
*svector_t
;
204 svector_t
svector_create (size_t);
205 void svector_free (svector_t
);
206 char *svector_push_back (svector_t
, char *);
207 char *svector_at (svector_t
, size_t);
208 char **svector_find(svector_t
, const char *);
209 char **svector_strs (svector_t
);
210 size_t svector_size (svector_t
);
212 typedef struct ivector
*ivector_t
;
214 ivector_t
ivector_create (size_t);
215 void ivector_free (ivector_t
);
216 int ivector_push_back (ivector_t
, int);
217 int ivector_at (ivector_t
, size_t);
218 int *ivector_atp (ivector_t
, size_t);
219 size_t ivector_size (ivector_t
);
222 * Primary structure of folder/message information
225 int lowmsg
; /* Lowest msg number */
226 int hghmsg
; /* Highest msg number */
227 int nummsg
; /* Actual Number of msgs */
229 int lowsel
; /* Lowest selected msg number */
230 int hghsel
; /* Highest selected msg number */
231 int numsel
; /* Number of msgs selected */
233 int curmsg
; /* Number of current msg if any */
235 int msgflags
; /* Folder attributes (READONLY, etc) */
236 char *foldpath
; /* Pathname of folder */
239 * Name of sequences in this folder.
244 * bit flags for whether sequence
245 * is public (0), or private (1)
250 * These represent the lowest and highest possible
251 * message numbers we can put in the message status
252 * area, without calling folder_realloc().
258 * This is an array of bvector_t which we allocate dynamically.
259 * Each bvector_t is a set of bits flags for a particular message.
260 * These bit flags represent general attributes such as
261 * EXISTS, SELECTED, etc. as well as track if message is
262 * in a particular sequence.
265 bvector_t
*msgstats
; /* msg status */
268 * A FILE handle containing an open filehandle for the sequence file
269 * for this folder. If non-NULL, use it when the sequence file is
275 * The name of the public sequence file; required by lkfclose()
281 * Amount of space to allocate for msgstats. Allocate
282 * the array to have space for messages numbered lo to hi.
283 * Use MSGSTATNUM to load mp->num_msgstats first.
285 #define MSGSTATNUM(lo, hi) ((size_t) ((hi) - (lo) + 1))
286 #define MSGSTATSIZE(mp) ((mp)->num_msgstats * sizeof *(mp)->msgstats)
289 * macros for message and sequence manipulation
291 #define msgstat(mp,n) (mp)->msgstats[(n) - mp->lowoff]
292 #define clear_msg_flags(mp,msgnum) bvector_clear_all (msgstat(mp, msgnum))
293 #define copy_msg_flags(mp,i,j) bvector_copy (msgstat(mp,i), msgstat(mp,j))
294 #define get_msg_flags(mp,ptr,msgnum) bvector_copy (ptr, msgstat(mp, msgnum))
295 #define set_msg_flags(mp,ptr,msgnum) bvector_copy (msgstat(mp, msgnum), ptr)
297 #define does_exist(mp,msgnum) bvector_at (msgstat(mp, msgnum), EXISTS)
298 #define unset_exists(mp,msgnum) bvector_clear (msgstat(mp, msgnum), EXISTS)
299 #define set_exists(mp,msgnum) bvector_set (msgstat(mp, msgnum), EXISTS)
301 #define is_selected(mp,msgnum) bvector_at (msgstat(mp, msgnum), SELECTED)
302 #define unset_selected(mp,msgnum) bvector_clear (msgstat(mp, msgnum), SELECTED)
303 #define set_selected(mp,msgnum) bvector_set (msgstat(mp, msgnum), SELECTED)
305 #define is_select_empty(mp,msgnum) \
306 bvector_at (msgstat(mp, msgnum), SELECT_EMPTY)
307 #define set_select_empty(mp,msgnum) \
308 bvector_set (msgstat(mp, msgnum), SELECT_EMPTY)
310 #define is_unseen(mp,msgnum) \
311 bvector_at (msgstat(mp, msgnum), SELECT_UNSEEN)
312 #define unset_unseen(mp,msgnum) \
313 bvector_clear (msgstat(mp, msgnum), SELECT_UNSEEN)
314 #define set_unseen(mp,msgnum) \
315 bvector_set (msgstat(mp, msgnum), SELECT_UNSEEN)
318 #define set_deleted(mp,msgnum) bvector_set (msgstat(mp, msgnum), DELETED)
320 #define in_sequence(mp,seqnum,msgnum) \
321 bvector_at (msgstat(mp, msgnum), FFATTRSLOT + seqnum)
322 #define clear_sequence(mp,seqnum,msgnum) \
323 bvector_clear (msgstat(mp, msgnum), FFATTRSLOT + seqnum)
324 #define add_sequence(mp,seqnum,msgnum) \
325 bvector_set (msgstat(mp, msgnum), FFATTRSLOT + seqnum)
327 #define is_seq_private(mp,seqnum) \
328 bvector_at (mp->attrstats, FFATTRSLOT + seqnum)
329 #define make_seq_public(mp,seqnum) \
330 bvector_clear (mp->attrstats, FFATTRSLOT + seqnum)
331 #define make_seq_private(mp,seqnum) \
332 bvector_set (mp->attrstats, FFATTRSLOT + seqnum)
333 #define make_all_public(mp) \
334 mp->attrstats = bvector_create(0); bvector_clear_all (mp->attrstats)
337 * macros for folder attributes
339 #define clear_folder_flags(mp) ((mp)->msgflags = 0)
341 #define is_readonly(mp) ((mp)->msgflags & READONLY)
342 #define set_readonly(mp) ((mp)->msgflags |= READONLY)
344 #define other_files(mp) ((mp)->msgflags & OTHERS)
345 #define set_other_files(mp) ((mp)->msgflags |= OTHERS)
347 #define NULLMP ((struct msgs *) 0)
350 * m_getfld() message parsing
353 #define NAMESZ 999 /* Limit on component name size.
354 RFC 2822 limits line lengths to
355 998 characters, so a header name
356 can be at most that long.
357 m_getfld limits header names to 2
358 less than NAMESZ, which is fine,
359 because header names must be
360 followed by a colon. Add one for
363 #define LENERR (-2) /* Name too long error from getfld */
364 #define FMTERR (-3) /* Message Format error */
365 #define FLD 0 /* Field returned */
366 #define FLDPLUS 1 /* Field returned with more to come */
367 #define BODY 3 /* Body returned with more to come */
368 #define FILEEOF 5 /* Reached end of input file */
370 struct m_getfld_state
;
371 typedef struct m_getfld_state
*m_getfld_state_t
;
376 #define MS_DEFAULT 0 /* default (one msg per file) */
377 #define MS_UNKNOWN 1 /* type not known yet */
378 #define MS_MBOX 2 /* Unix-style "from" lines */
379 #define MS_MMDF 3 /* string mmdlm2 */
380 #define MS_MSH 4 /* whacko msh */
382 #define NOUSE 0 /* draft being re-used */
384 #define TFOLDER 0 /* path() given a +folder */
385 #define TFILE 1 /* path() given a file */
386 #define TSUBCWF 2 /* path() given a @folder */
388 #define OUTPUTLINELEN 72 /* default line length for headers */
390 #define LINK "@" /* Name of link to file to which you are */
394 * credentials management
402 typedef struct nmh_creds
*nmh_creds_t
;
405 * miscellaneous macros
407 #define pidXwait(pid,cp) pidstatus (pidwait (pid, NOTOK), stdout, cp)
410 # define max(a,b) ((a) > (b) ? (a) : (b))
414 # define min(a,b) ((a) < (b) ? (a) : (b))
418 # define abs(a) ((a) > 0 ? (a) : -(a))
424 #define CTXMOD 0x01 /* context information modified */
425 #define DBITS "\020\01CTXMOD"
426 extern char ctxflags
;
428 extern char *invo_name
; /* command invocation name */
429 extern char *mypath
; /* user's $HOME */
430 extern char *defpath
; /* pathname of user's profile */
431 extern char *ctxpath
; /* pathname of user's context */
432 extern struct node
*m_defs
; /* list of profile/context entries */
434 /* What style to use for generated Message-ID and Content-ID header
435 fields. The localname style is pid.time@localname, where time is
436 in seconds. The random style replaces the localname with some
437 (pseudo)random bytes and uses microsecond-resolution time. */
438 int save_message_id_style (const char *);
439 char *message_id (time_t, int);
442 * These standard strings are defined in config.c. They are the
443 * only system-dependent parameters in nmh, and thus by redefining
444 * their values and reloading the various modules, nmh will run
447 extern char *buildmimeproc
;
448 extern char *catproc
;
449 extern char *components
;
450 extern char *context
;
451 extern char *current
;
452 extern char *credentials_file
;
453 extern char *defaultfolder
;
454 extern char *digestcomps
;
455 extern char *distcomps
;
457 extern char *fileproc
;
458 extern char *foldprot
;
459 extern char *formatproc
;
460 extern char *forwcomps
;
462 extern char *incproc
;
464 extern char *mailproc
;
465 extern char *mh_defaults
;
466 extern char *mh_profile
;
468 extern char *mhlformat
;
469 extern char *mhlforward
;
470 extern char *mhlproc
;
471 extern char *mhlreply
;
472 extern char *moreproc
;
473 extern char *msgprot
;
474 extern char *nmhaccessftp
;
475 extern char *nmhaccessurl
;
476 extern char *nmhstorage
;
477 extern char *nmhcache
;
478 extern char *nmhprivcache
;
479 extern char *nsequence
;
480 extern char *packproc
;
481 extern char *postproc
;
482 extern char *pfolder
;
483 extern char *psequence
;
484 extern char *rcvdistcomps
;
485 extern char *rcvstoreproc
;
486 extern char *replcomps
;
487 extern char *replgroupcomps
;
488 extern char *rmmproc
;
489 extern char *sendproc
;
490 extern char *showmimeproc
;
491 extern char *showproc
;
492 extern char *usequence
;
493 extern char *version_num
;
494 extern char *version_str
;
495 extern char *whatnowproc
;
496 extern char *whomproc
;
498 extern void (*done
) (int) NORETURN
;
500 #include <h/prototypes.h>