When compiling format strings, nmh attempts to avoid multiple parsing
authorJeffrey C Honig <jch@honig.net>
Mon, 11 Aug 2003 01:20:52 +0000 (01:20 +0000)
committerJeffrey C Honig <jch@honig.net>
Mon, 11 Aug 2003 01:20:52 +0000 (01:20 +0000)
commitcafee7a804b8aa53166065e988ec0fc387862fc8
tree25cdf4ad4c479919ad24c153e5d60534ae09c315
parentf8665df65d2bc3552b68c734a7b3975d95ccdc41
When compiling format strings, nmh attempts to avoid multiple parsing
of address and date fields by only inserting calls to the parse
functions (FT_PARSEADDR and FT_PARSEDATE) for a given component once.
The problem with this method is that the initial invocation may
actually be on a code path that is conditionally executed.  This can
result cached copies of data from the fields in previous messages to
be used.

My solution is to move this optimization from compile time to run time.
Address and Date parsing calls (FT_PARSEADDR and FT_PARSEDATE) will
always be included.  Run time flags are used to prevent these functions
from being run more than once per component per message.

The c_flags field has being converted from a boolean to a bit-field to
facilitate maintenance of the new CT_PARSED value.  The result value
that used to be in this field is now the bit CF_TRUE and the
overloaded use of this field by scan() is now the CT_DATEFAB bit.

Some unneeded flags (CT_ADDRPARSE, CT_MYMBOX) have also been removed.
ChangeLog
h/fmt_scan.h
sbr/fmt_compile.c
sbr/fmt_scan.c
uip/fmtdump.c
uip/scansbr.c