]>
diplodocus.org Git - nmh/blob - uip/fmttest.c
1 /* fmttest.c -- A program to help test and debug format instructions
3 * This code is Copyright (c) 2012, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
9 #include <h/fmt_scan.h>
10 #include <h/fmt_compile.h>
12 #include <h/scansbr.h>
13 #include <h/addrsbr.h>
15 #include "sbr/m_maildir.h"
16 #include "sbr/terminal.h"
18 #define FMTTEST_SWITCHES \
19 X("form formatfile", 0, FORMSW) \
20 X("format string", 5, FMTSW) \
21 X("address", 0, ADDRSW) \
23 X("date", 0, DATESW) \
24 X("message", 0, MESSAGESW) \
25 X("file", 0, FILESW) \
26 X("nofile", 0, NFILESW) \
27 X("-component-name component-text", 0, OTHERSW) \
28 X("dupaddrs", 0, DUPADDRSW) \
29 X("nodupaddrs", 0, NDUPADDRSW) \
30 X("ccme", 0, CCMESW) \
31 X("noccme", 0, NCCMESW) \
32 X("outsize size-in-characters", 0, OUTSIZESW) \
33 X("width column-width", 0, WIDTHSW) \
34 X("msgnum number", 0, MSGNUMSW) \
35 X("msgcur flag", 0, MSGCURSW) \
36 X("msgsize size", 0, MSGSIZESW) \
37 X("unseen flag", 0, UNSEENSW) \
38 X("dump", 0, DUMPSW) \
39 X("nodump", 0, NDUMPSW) \
40 X("trace", 0, TRACESW) \
41 X("notrace", 0, NTRACESW) \
42 X("version", 0, VERSIONSW) \
43 X("help", 0, HELPSW) \
45 #define X(sw, minchars, id) id,
46 DEFINE_SWITCH_ENUM(FMTTEST
);
49 #define X(sw, minchars, id) { sw, minchars, id },
50 DEFINE_SWITCH_ARRAY(FMTTEST
, switches
);
54 * An array containing labels used for branch instructions
57 static struct format
**lvec
= NULL
;
59 static int lallocated
= 0;
61 enum mode_t
{ MESSAGE
, ADDRESS
, DATE
, RAW
};
62 #define DEFADDRFORMAT "%<{error}%{error}: %{text}%|%(putstr(proper{text}))%>"
63 #define DEFDATEFORMAT "%<(nodate{text})error: %{text}%|%(putstr(pretty{text}))%>"
66 * Context structure used by the tracing routines
69 struct trace_context
{
78 static void fmt_dump (char *, struct format
*);
79 static void dumpone(struct format
*);
80 static void initlabels(struct format
*);
81 static int findlabel(struct format
*);
82 static void assignlabel(struct format
*);
83 static char *f_typestr(int);
84 static char *c_typestr(int);
85 static char *c_flagsstr(int);
86 static void litputs(const char *);
87 static void litputc(char);
88 static void process_addresses(struct format
*, struct msgs_array
*,
89 charstring_t
, int, int *,
90 struct fmt_callbacks
*);
91 static void process_raw(struct format
*, struct msgs_array
*, charstring_t
,
92 int, int *, struct fmt_callbacks
*);
93 static void process_messages(struct format
*, struct msgs_array
*,
94 struct msgs_array
*, charstring_t
, char *, int,
95 int, int *, struct fmt_callbacks
*);
96 static void process_single_file(FILE *, struct msgs_array
*, int *, int,
97 struct format
*, charstring_t
, int,
98 struct fmt_callbacks
*);
99 static void test_trace(void *, struct format
*, int, char *, const char *);
100 static char *test_formataddr(char *, char *);
101 static char *test_concataddr(char *, char *);
102 static int insert(struct mailname
*);
103 static void mlistfree(void);
105 static bool nodupcheck
; /* If set, no check for duplicates */
106 static bool ccme
; /* Should I cc myself? */
107 static struct mailname mq
; /* Mail addresses to check for duplicates */
108 static char *dummy
= "dummy";
111 main (int argc
, char **argv
)
113 char *cp
, *form
= NULL
, *format
= NULL
, *defformat
= FORMAT
, *folder
= NULL
;
114 char buf
[BUFSIZ
], *nfs
, **argp
, **arguments
;
118 struct msgs_array msgs
= { 0, 0, NULL
}, compargs
= { 0, 0, NULL
};
122 bool dupaddrs
= true;
125 int colwidth
= -1, msgnum
= -1, msgcur
= -1, msgsize
= -1, msgunseen
= -1;
126 enum mode_t mode
= MESSAGE
;
128 struct fmt_callbacks cb
, *cbp
= NULL
;
130 if (nmh_init(argv
[0], true, true)) { return 1; }
132 arguments
= getarguments (invo_name
, argc
, argv
, 1);
135 while ((cp
= *argp
++)) {
138 * A -- means that we have a component name (like pick);
139 * save the component name and the next argument for the text.
143 die("missing component name after --");
144 app_msgarg(&compargs
, cp
);
145 /* Grab next argument for component text */
147 die("missing argument to %s", argp
[-2]);
148 app_msgarg(&compargs
, cp
);
151 switch (smatch (cp
, switches
)) {
153 ambigsw (cp
, switches
);
156 die("-%s unknown", cp
);
159 snprintf (buf
, sizeof(buf
), "%s [switches]", invo_name
);
160 print_help (buf
, switches
, 1);
163 print_version(invo_name
);
166 die("internal argument error!");
170 if (!(cp
= *argp
++) || *cp
== '-')
171 die("missing argument to %s", argp
[-2]);
172 if (strcmp(cp
, "max") == 0)
173 outputsize
= INT_MAX
;
174 else if (strcmp(cp
, "width") == 0)
175 outputsize
= sc_width();
177 outputsize
= atoi(cp
);
181 if (!(form
= *argp
++) || *form
== '-')
182 die("missing argument to %s", argp
[-2]);
186 if (!(format
= *argp
++) || *format
== '-')
187 die("missing argument to %s", argp
[-2]);
200 defformat
= DEFADDRFORMAT
;
212 defformat
= DEFDATEFORMAT
;
237 if (!(cp
= *argp
++) || *cp
== '-')
238 die("missing argument to %s", argp
[-2]);
242 if (!(cp
= *argp
++) || *cp
== '-')
243 die("missing argument to %s", argp
[-2]);
247 if (!(cp
= *argp
++) || *cp
== '-')
248 die("missing argument to %s", argp
[-2]);
252 if (!(cp
= *argp
++) || *cp
== '-')
253 die("missing argument to %s", argp
[-2]);
257 if (!(cp
= *argp
++) || *cp
== '-')
258 die("missing argument to %s", argp
[-2]);
259 msgunseen
= atoi(cp
);
273 * Only interpret as a folder if we're in message mode
276 if (mode
== MESSAGE
&& !files
&& (*cp
== '+' || *cp
== '@')) {
278 die("only one folder at a time!");
279 folder
= pluspath (cp
);
281 app_msgarg(&msgs
, cp
);
285 * Here's our weird heuristic:
287 * - We allow -dump without any other arguments.
288 * - If you've given any component arguments, we don't require any
290 * - The arguments are interpreted as folders/messages _if_ we're in
291 * message mode, otherwise pass as strings in the text component.
294 if (!dump
&& compargs
.size
== 0 && msgs
.size
== 0) {
295 die("usage: [switches] [+folder] msgs | strings...");
299 * If you're picking "raw" as a mode, then you have to select
303 if (mode
== RAW
&& form
== NULL
&& format
== NULL
) {
304 die("You must specify a format with -form or -format when "
309 * Get new format string. Must be before chdir().
311 nfs
= new_fs (form
, format
, defformat
);
312 (void) fmt_compile(nfs
, &fmt
, 1);
318 if (compargs
.size
== 0 && msgs
.size
== 0)
323 buffer
= charstring_create(BUFSIZ
);
325 if (outputsize
== 0) {
327 outputsize
= sc_width();
329 outputsize
= INT_MAX
;
335 dat
[3] = colwidth
== -1 ? outputsize
: colwidth
;
339 * If we want to provide our own formataddr, concactaddr, or tracing
340 * callback, do that now. Also, prime ismymbox if we use it.
343 if (!dupaddrs
|| trace
) {
348 cb
.formataddr
= test_formataddr
;
349 cb
.concataddr
= test_concataddr
;
355 struct trace_context
*ctx
;
360 ctx
->outbuf
= mh_xstrdup("");
362 cb
.trace_func
= test_trace
;
363 cb
.trace_context
= ctx
;
367 if (mode
== MESSAGE
) {
368 process_messages(fmt
, &compargs
, &msgs
, buffer
, folder
, outputsize
,
372 for (i
= 0; i
< compargs
.size
; i
+= 2) {
373 cptr
= fmt_findcomp(compargs
.msgs
[i
]);
375 cptr
->c_text
= getcpy(compargs
.msgs
[i
+ 1]);
379 if (mode
== ADDRESS
) {
380 process_addresses(fmt
, &msgs
, buffer
, outputsize
, dat
, cbp
);
381 } else /* Fall-through for RAW or DATE */
382 process_raw(fmt
, &msgs
, buffer
, outputsize
, dat
, cbp
);
385 charstring_free(buffer
);
393 * Process each address with fmt_scan().
399 struct pqpair
*pq_next
;
403 process_addresses(struct format
*fmt
, struct msgs_array
*addrs
,
404 charstring_t buffer
, int outwidth
, int *dat
,
405 struct fmt_callbacks
*cb
)
408 char *cp
, error
[BUFSIZ
];
410 struct pqpair
*p
, *q
;
423 for (i
= 0; i
< addrs
->size
; i
++) {
424 (q
= &pq
)->pq_next
= NULL
;
425 while ((cp
= getname(addrs
->msgs
[i
]))) {
427 if ((mp
= getm(cp
, NULL
, 0, error
, sizeof(error
))) == NULL
) {
428 p
->pq_text
= mh_xstrdup(cp
);
429 p
->pq_error
= mh_xstrdup(error
);
431 p
->pq_text
= getcpy(mp
->m_text
);
434 q
= (q
->pq_next
= p
);
437 for (p
= pq
.pq_next
; p
; p
= q
) {
438 c
= fmt_findcomp("text");
441 c
->c_text
= p
->pq_text
;
444 c
= fmt_findcomp("error");
447 c
->c_text
= p
->pq_error
;
451 fmt_scan(fmt
, buffer
, outwidth
, dat
, cb
);
452 fputs(charstring_buffer(buffer
), stdout
);
464 * Process messages and run them through the format engine. A lot taken
469 process_messages(struct format
*fmt
, struct msgs_array
*comps
,
470 struct msgs_array
*msgs
, charstring_t buffer
, char *folder
,
471 int outwidth
, int files
, int *dat
,
472 struct fmt_callbacks
*cb
)
474 int i
, msgnum
, msgsize
= dat
[2], num
= dat
[0], cur
= dat
[1];
475 int num_unseen_seq
= 0;
476 ivector_t seqnum
= ivector_create (0);
482 * If 'files' is set, short-circuit everything else and just process
487 for (i
= 0; i
< msgs
->size
; i
++) {
488 if ((in
= fopen(cp
= msgs
->msgs
[i
], "r")) == NULL
) {
489 admonish(cp
, "unable to open file");
492 process_single_file(in
, comps
, dat
, msgsize
, fmt
, buffer
,
500 folder
= getfolder(1);
502 maildir
= m_maildir(folder
);
504 if (chdir(maildir
) < 0)
505 adios(maildir
, "unable to change directory to");
507 if (!(mp
= folder_read(folder
, 1)))
508 die("unable to read folder %s", folder
);
511 die("no messages in %s", folder
);
513 for (i
= 0; i
< msgs
->size
; i
++)
514 if (!m_convert(mp
, msgs
->msgs
[i
]))
516 seq_setprev(mp
); /* set the Previous-Sequence */
518 context_replace(pfolder
, folder
); /* update current folder */
519 seq_save(mp
); /* synchronize message sequences */
520 context_save(); /* save the context file */
523 * We want to set the unseen flag if requested, so we have to check
524 * the unseen sequence as well.
528 if ((cp
= context_find(usequence
)) && *cp
) {
532 ap
= brkstring(dp
, " ", "\n");
533 for (i
= 0; ap
&& *ap
; i
++, ap
++)
534 ivector_push_back (seqnum
, seq_getnum(mp
, *ap
));
541 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
542 if (is_selected(mp
, msgnum
)) {
543 if ((in
= fopen(cp
= m_name(msgnum
), "r")) == NULL
) {
544 admonish(cp
, "unable to open message");
554 dat
[1] = msgnum
== mp
->curmsg
;
557 * Check to see if this is in the unseen sequence
561 for (i
= 0; i
< num_unseen_seq
; i
++) {
562 if (in_sequence(mp
, ivector_at (seqnum
, i
), msgnum
)) {
569 * Read in the message and process the components
572 process_single_file(in
, comps
, dat
, msgsize
, fmt
, buffer
,
577 ivector_free (seqnum
);
582 * Process a single file in message mode
586 process_single_file(FILE *in
, struct msgs_array
*comps
, int *dat
, int msgsize
,
587 struct format
*fmt
, charstring_t buffer
, int outwidth
,
588 struct fmt_callbacks
*cb
)
591 char name
[NAMESZ
], rbuf
[NMH_BUFSIZ
];
592 m_getfld_state_t gstate
;
597 * Get our size if we didn't include one
603 if (fstat(fileno(in
), &st
) < 0)
610 * Initialize everything else
621 * Read in the message and process the components
624 gstate
= m_getfld_state_init(in
);
626 bufsz
= sizeof(rbuf
);
627 state
= m_getfld2(&gstate
, name
, rbuf
, &bufsz
);
631 i
= fmt_addcomptext(name
, rbuf
);
633 while (state
== FLDPLUS
) {
634 bufsz
= sizeof(rbuf
);
635 state
= m_getfld2(&gstate
, name
, rbuf
, &bufsz
);
636 fmt_appendcomp(i
, name
, rbuf
);
640 while (state
== FLDPLUS
) {
641 bufsz
= sizeof(rbuf
);
642 state
= m_getfld2(&gstate
, name
, rbuf
, &bufsz
);
647 if (fmt_findcomp("body")) {
648 if ((i
= strlen(rbuf
)) < outwidth
) {
649 bufsz
= min (outwidth
, (int) sizeof rbuf
- i
);
650 m_getfld2(&gstate
, name
, rbuf
+ i
, &bufsz
);
653 fmt_addcomptext("body", rbuf
);
663 m_getfld_state_destroy(&gstate
);
666 * Do this now to override any components in the original message
669 for (i
= 0; i
< comps
->size
; i
+= 2) {
670 c
= fmt_findcomp(comps
->msgs
[i
]);
673 c
->c_text
= getcpy(comps
->msgs
[i
+ 1]);
677 fmt_scan(fmt
, buffer
, outwidth
, dat
, cb
);
678 fputs(charstring_buffer (buffer
), stdout
);
683 * Run text through the format engine with no special processing
687 process_raw(struct format
*fmt
, struct msgs_array
*text
, charstring_t buffer
,
688 int outwidth
, int *dat
, struct fmt_callbacks
*cb
)
702 c
= fmt_findcomp("text");
704 for (i
= 0; i
< text
->size
; i
++) {
707 c
->c_text
= getcpy(text
->msgs
[i
]);
710 fmt_scan(fmt
, buffer
, outwidth
, dat
, cb
);
711 fputs(charstring_buffer (buffer
), stdout
);
717 * Our basic tracing support callback.
719 * Print out each instruction as it's executed, including the values of
720 * the num and str registers if they've changed.
724 test_trace(void *context
, struct format
*fmt
, int num
, char *str
,
727 struct trace_context
*ctx
= (struct trace_context
*) context
;
728 bool changed
= false;
732 if (num
!= ctx
->num
) {
733 printf("num=%d", num
);
738 if (str
!= ctx
->str
) {
742 fputs("str=", stdout
);
750 if (strcmp(outbuf
, ctx
->outbuf
) != 0) {
751 fputs("outbuf=", stdout
);
755 ctx
->outbuf
= mh_xstrdup(outbuf
);
760 fmt_dump (char *nfs
, struct format
*fmth
)
764 printf("Instruction dump of format string: \n%s\n", nfs
);
767 for (fmt
= fmth
; fmt
; ++fmt
) {
769 if (fmt
->f_type
== FT_DONE
&& fmt
->f_value
== 0)
775 dumpone(struct format
*fmt
)
779 if ((i
= findlabel(fmt
)) >= 0)
783 fputs(f_typestr((int)fmt
->f_type
), stdout
);
785 switch (fmt
->f_type
) {
791 fputs(", comp ", stdout
);
792 litputs(fmt
->f_comp
->c_name
);
793 if (fmt
->f_comp
->c_type
)
794 printf(", c_type %s", c_typestr(fmt
->f_comp
->c_type
));
795 if (fmt
->f_comp
->c_flags
)
796 printf(", c_flags %s", c_flagsstr(fmt
->f_comp
->c_flags
));
823 fputs(", c_name ", stdout
);
824 litputs(fmt
->f_comp
->c_name
);
825 if (fmt
->f_comp
->c_type
)
826 printf(", c_type %s", c_typestr(fmt
->f_comp
->c_type
));
827 if (fmt
->f_comp
->c_flags
)
828 printf(", c_flags %s", c_flagsstr(fmt
->f_comp
->c_flags
));
847 fputs(", c_name ", stdout
);
848 litputs(fmt
->f_comp
->c_name
);
849 if (fmt
->f_comp
->c_type
)
850 printf(", c_type %s", c_typestr(fmt
->f_comp
->c_type
));
851 if (fmt
->f_comp
->c_flags
)
852 printf(", c_flags %s", c_flagsstr(fmt
->f_comp
->c_flags
));
856 printf(", width %d, fill '", fmt
->f_width
);
857 litputc(fmt
->f_fill
);
858 fputs("' name ", stdout
);
859 litputs(fmt
->f_comp
->c_name
);
860 if (fmt
->f_comp
->c_type
)
861 printf(", c_type %s", c_typestr(fmt
->f_comp
->c_type
));
862 if (fmt
->f_comp
->c_flags
)
863 printf(", c_flags %s", c_flagsstr(fmt
->f_comp
->c_flags
));
868 printf(", width %d, fill '", fmt
->f_width
);
869 litputc(fmt
->f_fill
);
875 litputs(fmt
->f_text
);
879 printf(", width %d, fill '", fmt
->f_width
);
880 litputc(fmt
->f_fill
);
882 litputs(fmt
->f_text
);
888 litputc(fmt
->f_char
);
897 fputs(" continue else goto", stdout
);
900 i
= findlabel(fmt
+ fmt
->f_skip
);
907 i
= findlabel(fmt
+ fmt
->f_skip
);
908 printf(" %d continue else goto L%d", fmt
->f_value
, i
);
917 case FT_LV_MULTIPLY_L
:
920 printf(" value %d", fmt
->f_value
);
924 fputs(" str ", stdout
);
925 litputs(fmt
->f_text
);
929 fputs(" getenv ", stdout
);
930 litputs(fmt
->f_text
);
933 case FT_LS_DECODECOMP
:
934 fputs(", comp ", stdout
);
935 litputs(fmt
->f_comp
->c_name
);
942 printf(", width %d", fmt
->f_width
);
946 printf(", value dat[%d]", fmt
->f_value
);
953 * Iterate over all instructions and assign labels to the targets of
958 initlabels(struct format
*fmth
)
960 struct format
*fmt
, *addr
;
964 for (fmt
= fmth
; fmt
; ++fmt
) {
974 addr
= fmt
+ fmt
->f_skip
;
975 if (findlabel(addr
) < 0)
978 if (fmt
->f_type
== FT_DONE
&& fmt
->f_value
== 0)
985 findlabel(struct format
*addr
)
989 for (i
= 0; i
< lused
; ++i
)
996 assignlabel(struct format
*addr
)
998 if (lused
>= lallocated
) {
1000 lvec
= (struct format
**)
1001 mh_xrealloc(lvec
, sizeof(struct format
*) * lallocated
);
1004 lvec
[lused
++] = addr
;
1010 static char buf
[32];
1013 case FT_COMP
: return "COMP";
1014 case FT_COMPF
: return "COMPF";
1015 case FT_LIT
: return "LIT";
1016 case FT_LITF
: return "LITF";
1017 case FT_CHAR
: return "CHAR";
1018 case FT_NUM
: return "NUM";
1019 case FT_NUMF
: return "NUMF";
1020 case FT_STR
: return "STR";
1021 case FT_STRF
: return "STRF";
1022 case FT_STRFW
: return "STRFW";
1023 case FT_STRLIT
: return "STRLIT";
1024 case FT_STRLITZ
: return "STRLITZ";
1025 case FT_PUTADDR
: return "PUTADDR";
1026 case FT_LS_COMP
: return "LS_COMP";
1027 case FT_LS_LIT
: return "LS_LIT";
1028 case FT_LS_GETENV
: return "LS_GETENV";
1029 case FT_LS_CFIND
: return "LS_CFIND";
1030 case FT_LS_DECODECOMP
: return "LS_DECODECOMP";
1031 case FT_LS_DECODE
: return "LS_DECODE";
1032 case FT_LS_TRIM
: return "LS_TRIM";
1033 case FT_LV_COMP
: return "LV_COMP";
1034 case FT_LV_COMPFLAG
: return "LV_COMPFLAG";
1035 case FT_LV_LIT
: return "LV_LIT";
1036 case FT_LV_DAT
: return "LV_DAT";
1037 case FT_LV_STRLEN
: return "LV_STRLEN";
1038 case FT_LV_PLUS_L
: return "LV_PLUS_L";
1039 case FT_LV_MINUS_L
: return "LV_MINUS_L";
1040 case FT_LV_MULTIPLY_L
: return "LV_MULTIPLY_L";
1041 case FT_LV_DIVIDE_L
: return "LV_DIVIDE_L";
1042 case FT_LV_MODULO_L
: return "LV_MODULO_L";
1043 case FT_LV_CHAR_LEFT
: return "LV_CHAR_LEFT";
1044 case FT_LS_MONTH
: return "LS_MONTH";
1045 case FT_LS_LMONTH
: return "LS_LMONTH";
1046 case FT_LS_ZONE
: return "LS_ZONE";
1047 case FT_LS_DAY
: return "LS_DAY";
1048 case FT_LS_WEEKDAY
: return "LS_WEEKDAY";
1049 case FT_LS_822DATE
: return "LS_822DATE";
1050 case FT_LS_PRETTY
: return "LS_PRETTY";
1051 case FT_LS_KILO
: return "LS_KILO";
1052 case FT_LS_KIBI
: return "LS_KIBI";
1053 case FT_LV_SEC
: return "LV_SEC";
1054 case FT_LV_MIN
: return "LV_MIN";
1055 case FT_LV_HOUR
: return "LV_HOUR";
1056 case FT_LV_MDAY
: return "LV_MDAY";
1057 case FT_LV_MON
: return "LV_MON";
1058 case FT_LV_YEAR
: return "LV_YEAR";
1059 case FT_LV_YDAY
: return "LV_YDAY";
1060 case FT_LV_WDAY
: return "LV_WDAY";
1061 case FT_LV_ZONE
: return "LV_ZONE";
1062 case FT_LV_CLOCK
: return "LV_CLOCK";
1063 case FT_LV_RCLOCK
: return "LV_RCLOCK";
1064 case FT_LV_DAYF
: return "LV_DAYF";
1065 case FT_LV_DST
: return "LV_DST";
1066 case FT_LV_ZONEF
: return "LV_ZONEF";
1067 case FT_LS_PERS
: return "LS_PERS";
1068 case FT_LS_MBOX
: return "LS_MBOX";
1069 case FT_LS_HOST
: return "LS_HOST";
1070 case FT_LS_PATH
: return "LS_PATH";
1071 case FT_LS_GNAME
: return "LS_GNAME";
1072 case FT_LS_NOTE
: return "LS_NOTE";
1073 case FT_LS_ADDR
: return "LS_ADDR";
1074 case FT_LS_822ADDR
: return "LS_822ADDR";
1075 case FT_LS_FRIENDLY
: return "LS_FRIENDLY";
1076 case FT_LV_HOSTTYPE
: return "LV_HOSTTYPE";
1077 case FT_LV_INGRPF
: return "LV_INGRPF";
1078 case FT_LS_UNQUOTE
: return "LS_UNQUOTE";
1079 case FT_LV_NOHOSTF
: return "LV_NOHOSTF";
1080 case FT_LOCALDATE
: return "LOCALDATE";
1081 case FT_GMTDATE
: return "GMTDATE";
1082 case FT_PARSEDATE
: return "PARSEDATE";
1083 case FT_PARSEADDR
: return "PARSEADDR";
1084 case FT_FORMATADDR
: return "FORMATADDR";
1085 case FT_CONCATADDR
: return "CONCATADDR";
1086 case FT_MYMBOX
: return "MYMBOX";
1087 case FT_GETMYMBOX
: return "GETMYMBOX";
1088 case FT_GETMYADDR
: return "GETMYADDR";
1089 case FT_SAVESTR
: return "SAVESTR";
1090 case FT_DONE
: return "DONE";
1091 case FT_PAUSE
: return "PAUSE";
1092 case FT_NOP
: return "NOP";
1093 case FT_GOTO
: return "GOTO";
1094 case FT_IF_S_NULL
: return "IF_S_NULL";
1095 case FT_IF_S
: return "IF_S";
1096 case FT_IF_V_EQ
: return "IF_V_EQ";
1097 case FT_IF_V_NE
: return "IF_V_NE";
1098 case FT_IF_V_GT
: return "IF_V_GT";
1099 case FT_IF_MATCH
: return "IF_MATCH";
1100 case FT_IF_AMATCH
: return "IF_AMATCH";
1101 case FT_S_NULL
: return "S_NULL";
1102 case FT_S_NONNULL
: return "S_NONNULL";
1103 case FT_V_EQ
: return "V_EQ";
1104 case FT_V_NE
: return "V_NE";
1105 case FT_V_GT
: return "V_GT";
1106 case FT_V_MATCH
: return "V_MATCH";
1107 case FT_V_AMATCH
: return "V_AMATCH";
1109 snprintf(buf
, sizeof(buf
), "/* ??? #%d */", t
);
1117 static char buf
[64];
1119 snprintb(buf
, sizeof(buf
), t
, CT_BITS
);
1126 static char buf
[64];
1128 snprintb(buf
, sizeof(buf
), t
, CF_BITS
);
1133 litputs(const char *s
)
1141 fputs("<nil>", stdout
);
1148 printf("\\x%02x", (unsigned char) c
);
1149 } else if (c
< 0x20 || c
== 0177) {
1153 } else if (c
== '\f') {
1156 } else if (c
== '\n') {
1159 } else if (c
== '\r') {
1162 } else if (c
== '\t') {
1167 putchar(c
^ 0x40); /* DEL to ?, others to alpha */
1174 * Routines/code to support the duplicate address suppression code, adapted
1178 static char *buf
; /* our current working buffer */
1179 static char *bufend
; /* end of working buffer */
1180 static char *last_dst
; /* buf ptr at end of last call */
1181 static unsigned int bufsiz
=0; /* current size of buf */
1183 #define BUFINCR 512 /* how much to expand buf when if fills */
1185 #define CPY(s) { cp = (s); while ((*dst++ = *cp++)) ; --dst; }
1188 * check if there's enough room in buf for str.
1189 * add more mem if needed
1191 #define CHECKMEM(str) \
1192 if ((len = strlen (str)) >= bufend - dst) {\
1194 int n = last_dst - buf;\
1195 bufsiz += ((dst + len - bufend) / BUFINCR + 1) * BUFINCR;\
1196 buf = mh_xrealloc (buf, bufsiz);\
1198 last_dst = buf + n;\
1199 bufend = buf + bufsiz;\
1204 * These are versions of similar routines from replsbr.c; the purpose is
1205 * to suppress duplicate addresses from being added to a list when building
1206 * up addresses for the %(formataddr) format function. This is used by
1207 * repl to prevent duplicate addresses from being added to the "to" line.
1208 * See replsbr.c for more information.
1210 * We can't use the functions in replsbr.c directly because they are slightly
1211 * different and depend on the rest of replsbr.c
1214 test_formataddr (char *orig
, char *str
)
1222 struct mailname
*mp
= NULL
;
1224 /* if we don't have a buffer yet, get one */
1226 buf
= mh_xmalloc (BUFINCR
);
1227 last_dst
= buf
; /* XXX */
1228 bufsiz
= BUFINCR
- 6; /* leave some slop */
1229 bufend
= buf
+ bufsiz
;
1232 * If "orig" points to our buffer we can just pick up where we
1233 * left off. Otherwise we have to copy orig into our buffer.
1237 else if (!orig
|| !*orig
) {
1241 dst
= last_dst
; /* XXX */
1246 /* concatenate all the new addresses onto 'buf' */
1247 for (isgroup
= false; (cp
= getname (str
)); ) {
1248 if ((mp
= getm (cp
, NULL
, 0, error
, sizeof(error
))) == NULL
) {
1249 fprintf(stderr
, "bad address \"%s\" -- %s\n", cp
, error
);
1252 if (isgroup
&& (mp
->m_gname
|| !mp
->m_ingrp
)) {
1257 /* if we get here we're going to add an address */
1263 CHECKMEM (mp
->m_gname
);
1267 sp
= adrformat (mp
);
1283 * The companion to test_formataddr(); it behaves the same way, except doesn't
1284 * do duplicate address detection.
1287 test_concataddr(char *orig
, char *str
)
1292 cp
= test_formataddr(orig
, str
);
1298 insert (struct mailname
*np
)
1300 struct mailname
*mp
;
1305 if (np
->m_mbox
== NULL
)
1308 for (mp
= &mq
; mp
->m_next
; mp
= mp
->m_next
) {
1309 if (!strcasecmp (FENDNULL(np
->m_host
),
1310 FENDNULL(mp
->m_next
->m_host
)) &&
1311 !strcasecmp (FENDNULL(np
->m_mbox
),
1312 FENDNULL(mp
->m_next
->m_mbox
)))
1315 if (!ccme
&& ismymbox (np
))
1324 * Reset our duplicate address list
1330 struct mailname
*mp
, *mp2
;
1332 for (mp
= mq
.m_next
; mp
; mp
= mp2
) {