3 * fmt_scan.c -- format string interpretation
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
9 * This is the engine that processes the format instructions created by
10 * fmt_compile (found in fmt_compile.c).
14 #include <h/addrsbr.h>
15 #include <h/fmt_scan.h>
17 #include <h/fmt_compile.h>
19 #ifdef HAVE_SYS_TIME_H
20 # include <sys/time.h>
23 #ifdef MULTIBYTE_SUPPORT
29 struct msgs *fmt_current_folder; /* current folder (set by main program) */
32 extern int fmt_norm; /* defined in sbr/fmt_def.c = AD_NAME */
33 struct mailname fmt_mnull = { NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0,
39 static int match (char *, char *);
40 static char *get_x400_friendly (char *, char *, int);
41 static int get_x400_comp (char *, char *, char *, int);
45 * test if string "sub" appears anywhere in
46 * string "str" (case insensitive).
50 match (char *str, char *sub)
57 c1 = (isalpha(c1) && isupper(c1)) ? tolower(c1) : c1;
58 while ((c2 = *str++) && c1 != ((isalpha(c2) && isupper(c2)) ? tolower(c2) : c2))
62 s1 = sub + 1; s2 = str;
63 while ((c1 = *s1++) && ((isalpha(c1) && isupper(c1)) ? tolower(c1) : c1) == ((isalpha(c2 =*s2++) && isupper(c2)) ? tolower(c2) : c2))
70 while ((c2 = *str++) && (c1 | 040) != (c2 | 040))
74 s1 = sub + 1; s2 = str;
75 while ((c1 = *s1++) && (c1 | 040) == (*s2++ | 040))
85 * copy a number to the destination subject to a maximum width
88 cpnumber(char **dest, int num, unsigned int wid, char fill, size_t n) {
101 *--sp = (i % 10) + '0';
103 } while (i > 0 && sp > cp);
106 else if ((num) < 0 && sp > cp)
116 * copy string from str to dest padding with the fill character to a size
117 * of wid characters. if wid is negative, the string is right aligned
118 * no more than n bytes are copied
121 cptrimmed(char **dest, char *str, unsigned int wid, char fill, size_t n) {
122 int remaining; /* remaining output width available */
124 int end; /* number of input bytes remaining in str */
125 #ifdef MULTIBYTE_SUPPORT
126 int char_len; /* bytes in current character */
130 char *sp; /* current position in source string */
131 char *cp = *dest; /* current position in destination string */
132 char *ep = cp + n; /* end of destination buffer */
137 if ((remaining = (wid)) < 0) {
138 remaining = -remaining;
142 mbtowc(NULL, NULL, 0); /* reset shift state */
144 while (*sp && remaining > 0 && end > 0) {
145 #ifdef MULTIBYTE_SUPPORT
146 char_len = mbtowc(&wide_char, sp, end);
147 if (char_len <= 0 || (cp + char_len > ep))
152 if (iswcntrl(wide_char) || iswspace(wide_char)) {
156 /* isnctrl(), etc., take an int argument. Cygwin's ctype.h
157 intentionally warns if they are passed a char. */
159 if (iscntrl(c) || isspace(c)) {
172 #ifdef MULTIBYTE_SUPPORT
173 w = wcwidth(wide_char);
174 if (w >= 0 && remaining >= w) {
175 strncpy(cp, sp, char_len);
188 if (cp + remaining > ep)
192 /* copy string to the right */
193 while (--cp >= *dest)
194 *(cp + remaining) = *cp;
195 /* add padding at the beginning */
197 for (c=remaining; c>0; c--)
202 /* pad remaining space */
203 while (remaining-- > 0 && cp < ep)
210 cpstripped (char **start, char *end, char *str)
218 /* skip any initial control characters or spaces */
219 while ((c = (unsigned char) *s) &&
221 (iscntrl(c) || isspace(c)))
227 /* compact repeated control characters and spaces into a single space */
228 while((c = (unsigned char) *s++) && *start < end)
229 if (!iscntrl(c) && !isspace(c))
232 while ((c = (unsigned char) *s) &&
234 (iscntrl(c) || isspace(c)))
243 static char *lmonth[] = { "January", "February","March", "April",
244 "May", "June", "July", "August",
245 "September","October", "November","December" };
248 get_x400_friendly (char *mbox, char *buffer, int buffer_len)
250 char given[BUFSIZ], surname[BUFSIZ];
259 if (get_x400_comp (mbox, "/PN=", buffer, buffer_len)) {
260 for (mbox = buffer; (mbox = strchr(mbox, '.')); )
266 if (!get_x400_comp (mbox, "/S=", surname, sizeof(surname)))
269 if (get_x400_comp (mbox, "/G=", given, sizeof(given)))
270 snprintf (buffer, buffer_len, "%s %s", given, surname);
272 snprintf (buffer, buffer_len, "%s", surname);
278 get_x400_comp (char *mbox, char *key, char *buffer, int buffer_len)
283 if ((idx = stringdex (key, mbox)) < 0
284 || !(cp = strchr(mbox += idx + strlen (key), '/')))
287 snprintf (buffer, buffer_len, "%*.*s", (int)(cp - mbox), (int)(cp - mbox), mbox);
292 fmt_scan (struct format *format, char *scanl, int width, int *dat)
296 char *savestr = NULL;
297 unsigned char *str = NULL;
298 char buffer[BUFSIZ], buffer2[BUFSIZ];
308 ep = scanl + width - 1;
310 for (fmt = format; fmt->f_type != FT_DONE; fmt++)
311 switch (fmt->f_type) {
314 fmt->f_comp->c_flags &= ~CF_PARSED;
321 switch (fmt->f_type) {
324 cpstripped (&cp, ep, fmt->f_comp->c_text);
327 cptrimmed (&cp, fmt->f_comp->c_text, fmt->f_width, fmt->f_fill, ep - cp);
332 while( (c = *sp++) && cp < ep)
341 ljust++; /* XXX should do something with this */
343 while( (c = *sp++) && --i >= 0 && cp < ep)
345 while( --i >= 0 && cp < ep)
350 cpstripped (&cp, ep, str);
353 cptrimmed (&cp, str, fmt->f_width, fmt->f_fill, ep - cp);
357 while ((c = *sp++) && cp < ep)
361 adios (NULL, "internal error (FT_STRFW)");
364 n = snprintf(cp, ep - cp + 1, "%d", value);
373 cpnumber (&cp, value, fmt->f_width, fmt->f_fill, ep - cp);
384 if (!(value = (str && *str))) {
391 if (!(value = (str == NULL || *str == 0))) {
398 if (value != fmt->f_value) {
405 if (value == fmt->f_value) {
412 if (value <= fmt->f_value) {
419 if (!(value = (str && match (str, fmt->f_text)))) {
427 value = match (str, fmt->f_text);
433 if (!(value = (str && uprf (str, fmt->f_text)))) {
440 value = uprf (str, fmt->f_text);
444 value = (str != NULL && *str != 0);
448 value = (str == NULL || *str == 0);
452 value = (fmt->f_value == value);
456 value = (fmt->f_value != value);
460 value = (fmt->f_value > value);
471 str = fmt->f_comp->c_text;
477 if (!(str = getenv (fmt->f_text)))
481 if (!(str = context_find (fmt->f_text)))
485 case FT_LS_DECODECOMP:
486 if (decode_rfc2047(fmt->f_comp->c_text, buffer2, sizeof(buffer2)))
489 str = fmt->f_comp->c_text;
493 if (str && decode_rfc2047(str, buffer2, sizeof(buffer2)))
501 strncpy(buffer, str, sizeof(buffer));
502 buffer[sizeof(buffer)-1] = '\0';
504 while (isspace(*str))
507 if ((i = fmt->f_width) < 0) {
512 if (!ljust && i > 0 && (int) strlen(str) > i)
515 xp += strlen(str) - 1;
516 while (xp > str && isspace(*xp))
518 if (ljust && i > 0 && (int) strlen(str) > i)
519 str += strlen(str) - i;
524 value = (fmt->f_comp->c_flags & CF_TRUE) != 0;
527 value = (comp = fmt->f_comp)->c_text ? atoi(comp->c_text) : 0;
530 value = fmt->f_value;
533 value = dat[fmt->f_value];
541 case FT_LV_CHAR_LEFT:
542 value = width - (cp - scanl);
545 value += fmt->f_value;
548 value = fmt->f_value - value;
552 value = value / fmt->f_value;
558 value = value % fmt->f_value;
567 value = fmt->f_comp->c_tws->tw_sec;
570 value = fmt->f_comp->c_tws->tw_min;
573 value = fmt->f_comp->c_tws->tw_hour;
576 value = fmt->f_comp->c_tws->tw_mday;
579 value = fmt->f_comp->c_tws->tw_mon + 1;
582 str = tw_moty[fmt->f_comp->c_tws->tw_mon];
585 str = lmonth[fmt->f_comp->c_tws->tw_mon];
588 str = dtwszone (fmt->f_comp->c_tws);
591 value = fmt->f_comp->c_tws->tw_year;
594 if (!(((tws = fmt->f_comp->c_tws)->tw_flags) & (TW_SEXP|TW_SIMP)))
596 value = tws->tw_wday;
599 if (!(((tws = fmt->f_comp->c_tws)->tw_flags) & (TW_SEXP|TW_SIMP)))
601 str = tw_dotw[tws->tw_wday];
604 if (!(((tws = fmt->f_comp->c_tws)->tw_flags) & (TW_SEXP|TW_SIMP)))
606 str = tw_ldotw[tws->tw_wday];
609 value = fmt->f_comp->c_tws->tw_yday;
612 value = fmt->f_comp->c_tws->tw_zone;
615 if ((value = fmt->f_comp->c_tws->tw_clock) == 0)
616 value = dmktime(fmt->f_comp->c_tws);
619 if ((value = fmt->f_comp->c_tws->tw_clock) == 0)
620 value = dmktime(fmt->f_comp->c_tws);
621 value = time((time_t *) 0) - value;
624 if (!(((tws = fmt->f_comp->c_tws)->tw_flags) & (TW_SEXP|TW_SIMP)))
626 switch (fmt->f_comp->c_tws->tw_flags & TW_SDAY) {
635 if ((fmt->f_comp->c_tws->tw_flags & TW_SZONE) == TW_SZEXP)
641 value = fmt->f_comp->c_tws->tw_flags & TW_DST;
644 str = dasctime (fmt->f_comp->c_tws , TW_ZONE);
647 str = dasctime (fmt->f_comp->c_tws, TW_NULL);
651 str = fmt->f_comp->c_mn->m_pers;
654 str = fmt->f_comp->c_mn->m_mbox;
657 str = fmt->f_comp->c_mn->m_host;
660 str = fmt->f_comp->c_mn->m_path;
663 str = fmt->f_comp->c_mn->m_gname;
666 str = fmt->f_comp->c_mn->m_note;
669 str = adrformat( fmt->f_comp->c_mn );
672 value = fmt->f_comp->c_mn->m_type;
675 value = fmt->f_comp->c_mn->m_ingrp;
678 value = fmt->f_comp->c_mn->m_nohost;
682 if ((mn = fmt->f_comp->c_mn) == &fmt_mnull) {
683 str = fmt->f_comp->c_text;
686 if (fmt->f_type == FT_LS_ADDR)
688 if ((str = mn->m_pers) == NULL) {
689 if ((str = mn->m_note)) {
690 strncpy (buffer, str, sizeof(buffer));
691 buffer[sizeof(buffer)-1] = '\0';
695 sp = str + strlen(str) - 1;
704 } else if (!(str = get_x400_friendly (mn->m_mbox,
705 buffer, sizeof(buffer)))) {
707 switch (mn->m_type) {
712 snprintf (buffer, sizeof(buffer), "%s!%s",
713 mn->m_host, mn->m_mbox);
718 snprintf (buffer, sizeof(buffer), "%s@%s",
719 mn->m_mbox, mn->m_host);
731 /* UNQUOTEs RFC-2822 quoted-string and quoted-pair */
735 strncpy(buffer, str, sizeof(buffer));
736 /* strncpy doesn't NUL-terminate if it fills the buffer */
737 buffer[sizeof(buffer)-1] = '\0';
740 /* we will parse from buffer to buffer2 */
741 n = 0; /* n is the input position in str */
742 m = 0; /* m is the ouput position in buffer2 */
744 while ( str[n] != '\0') {
749 buffer2[m++] = str[n++];
755 buffer2[m++] = str[n++];
766 if ((t = comp->c_tws->tw_clock) == 0)
767 t = dmktime(comp->c_tws);
768 tws = dlocaltime(&t);
774 if ((t = comp->c_tws->tw_clock) == 0)
775 t = dmktime(comp->c_tws);
782 if (comp->c_flags & CF_PARSED)
784 if ((sp = comp->c_text) && (tws = dparsetime(sp))) {
786 comp->c_flags &= ~CF_TRUE;
787 } else if ((comp->c_flags & CF_DATEFAB) == 0) {
788 memset ((char *) comp->c_tws, 0, sizeof *comp->c_tws);
789 comp->c_flags = CF_TRUE;
791 comp->c_flags |= CF_PARSED;
795 /* hook for custom address list formatting (see replsbr.c) */
796 str = formataddr (savestr, str);
800 /* The same as formataddr, but doesn't do duplicate suppression */
801 str = concataddr (savestr, str);
805 /* output the str register as an address component,
806 * splitting it into multiple lines if necessary. The
807 * value reg. contains the max line length. The lit.
808 * field may contain a string to prepend to the result
814 int indent, wid, len;
820 indent = strlen (sp);
823 adios(NULL, "putaddr -- num register (%d) must be greater "
824 "than label width (%d)", value, indent);
826 while( (c = *sp++) && cp < ep)
829 /* try to break at a comma; failing that, break at a
832 lastb = 0; sp = lp + wid;
833 while (sp > lp && (c = *--sp) != ',') {
834 if (! lastb && isspace(c))
838 if (! (sp = lastb)) {
840 while (*sp && *sp != ',' && !isspace(*sp))
847 while (cp < ep && lp <= sp)
854 for (i=indent; cp < ep && i > 0; i--)
858 cpstripped (&cp, ep, lp);
864 if (comp->c_flags & CF_PARSED)
866 if (comp->c_mn != &fmt_mnull)
868 if ((sp = comp->c_text) && (sp = getname(sp)) &&
869 (mn = getm (sp, NULL, 0, fmt_norm, NULL))) {
873 comp->c_flags |= CF_PARSED;
875 while (getname("")) /* XXX */
877 comp->c_mn = &fmt_mnull;
883 * if there's no component, we say true. Otherwise we
884 * say "true" only if we can parse the address and it
885 * matches one of our addresses.
888 if (comp->c_mn != &fmt_mnull)
890 if ((sp = comp->c_text) && (sp = getname(sp)) &&
891 (mn = getm (sp, NULL, 0, AD_NAME, NULL))) {
894 comp->c_flags |= CF_TRUE;
896 comp->c_flags &= ~CF_TRUE;
897 while ((sp = getname(sp)))
898 if ((comp->c_flags & CF_TRUE) == 0 &&
899 (mn = getm (sp, NULL, 0, AD_NAME, NULL)))
901 comp->c_flags |= CF_TRUE;
903 while (getname("")) /* XXX */
905 if (comp->c_text == 0)
906 comp->c_flags |= CF_TRUE;
908 comp->c_flags &= ~CF_TRUE;
909 comp->c_mn = &fmt_mnull;
915 /* If we're working on a folder (as opposed to a file), add the
916 * current msg to sequence given in literal field. Don't
917 * disturb string or value registers.
919 if (fmt_current_folder)
920 seq_addmsg(fmt_current_folder, fmt->f_text, dat[0], -1);
931 return ((struct format *)0);
935 while (fmt->f_type != FT_DONE)
940 return (fmt->f_value ? ++fmt : (struct format *) 0);