]>
diplodocus.org Git - nmh/blob - sbr/fmt_scan.c
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.
11 #include <h/addrsbr.h>
12 #include <h/fmt_scan.h>
14 #include <h/fmt_compile.h>
16 #ifdef TIME_WITH_SYS_TIME
17 # include <sys/time.h>
20 # ifdef TM_IN_SYS_TIME
21 # include <sys/time.h>
26 #ifdef MULTIBYTE_SUPPORT
33 extern char *formataddr (); /* hook for custom address formatting */
36 struct msgs
*fmt_current_folder
; /* current folder (set by main program) */
39 extern int fmt_norm
; /* defined in sbr/fmt_def.c = AD_NAME */
40 struct mailname fmt_mnull
;
45 static int match (char *, char *);
46 static char *get_x400_friendly (char *, char *, int);
47 static int get_x400_comp (char *, char *, char *, int);
51 * test if string "sub" appears anywhere in
52 * string "str" (case insensitive).
56 match (char *str
, char *sub
)
63 c1
= (isalpha(c1
) && isupper(c1
)) ? tolower(c1
) : c1
;
64 while ((c2
= *str
++) && c1
!= ((isalpha(c2
) && isupper(c2
)) ? tolower(c2
) : c2
))
68 s1
= sub
+ 1; s2
= str
;
69 while ((c1
= *s1
++) && ((isalpha(c1
) && isupper(c1
)) ? tolower(c1
) : c1
) == ((isalpha(c2
=*s2
++) && isupper(c2
)) ? tolower(c2
) : c2
))
76 while ((c2
= *str
++) && (c1
| 040) != (c2
| 040))
80 s1
= sub
+ 1; s2
= str
;
81 while ((c1
= *s1
++) && (c1
| 040) == (*s2
++ | 040))
91 * copy a number to the destination subject to a maximum width
94 cpnumber(char **dest
, int num
, unsigned int wid
, char fill
, size_t n
) {
107 *--sp
= (i
% 10) + '0';
109 } while (i
> 0 && sp
> cp
);
112 else if ((num
) < 0 && sp
> cp
)
122 * copy string from str to dest padding with the fill character to a size
123 * of wid characters. if wid is negative, the string is right aligned
124 * no more than n bytes are copied
127 cptrimmed(char **dest
, char *str
, unsigned int wid
, char fill
, size_t n
) {
128 int remaining
; /* remaining output width available */
130 int end
; /* number of input bytes remaining in str */
131 #ifdef MULTIBYTE_SUPPORT
132 int char_len
; /* bytes in current character */
135 char *sp
; /* current position in source string */
136 char *cp
= *dest
; /* current position in destination string */
137 char *ep
= cp
+ n
; /* end of destination buffer */
142 if ((remaining
= (wid
)) < 0) {
143 remaining
= -remaining
;
147 mbtowc(NULL
, NULL
, 0); /* reset shift state */
149 while (*sp
&& remaining
> 0 && end
> 0) {
150 #ifdef MULTIBYTE_SUPPORT
151 char_len
= mbtowc(&wide_char
, sp
, end
);
152 if (char_len
<= 0 || (cp
+ char_len
> ep
))
157 if (iswcntrl(wide_char
) || iswspace(wide_char
)) {
161 if (iscntrl(*sp
) || isspace(*sp
)) {
174 #ifdef MULTIBYTE_SUPPORT
175 w
= wcwidth(wide_char
);
176 if (w
>= 0 && remaining
>= w
) {
177 strncpy(cp
, sp
, char_len
);
190 if (cp
+ remaining
> ep
)
194 /* copy string to the right */
195 while (--cp
>= *dest
)
196 *(cp
+ remaining
) = *cp
;
197 /* add padding at the beginning */
199 for (c
=remaining
; c
>0; c
--)
204 /* pad remaining space */
205 while (remaining
-- > 0 && cp
< ep
)
212 cpstripped (char **start
, char *end
, char *str
)
220 /* skip any initial control characters or spaces */
221 while ((c
= (unsigned char) *s
) &&
223 (iscntrl(c
) || isspace(c
)))
229 /* compact repeated control characters and spaces into a single space */
230 while((c
= (unsigned char) *s
++) && *start
< end
)
231 if (!iscntrl(c
) && !isspace(c
))
234 while ((c
= (unsigned char) *s
) &&
236 (iscntrl(c
) || isspace(c
)))
245 static char *lmonth
[] = { "January", "February","March", "April",
246 "May", "June", "July", "August",
247 "September","October", "November","December" };
250 get_x400_friendly (char *mbox
, char *buffer
, int buffer_len
)
252 char given
[BUFSIZ
], surname
[BUFSIZ
];
261 if (get_x400_comp (mbox
, "/PN=", buffer
, buffer_len
)) {
262 for (mbox
= buffer
; (mbox
= strchr(mbox
, '.')); )
268 if (!get_x400_comp (mbox
, "/S=", surname
, sizeof(surname
)))
271 if (get_x400_comp (mbox
, "/G=", given
, sizeof(given
)))
272 snprintf (buffer
, buffer_len
, "%s %s", given
, surname
);
274 snprintf (buffer
, buffer_len
, "%s", surname
);
280 get_x400_comp (char *mbox
, char *key
, char *buffer
, int buffer_len
)
285 if ((idx
= stringdex (key
, mbox
)) < 0
286 || !(cp
= strchr(mbox
+= idx
+ strlen (key
), '/')))
289 snprintf (buffer
, buffer_len
, "%*.*s", (int)(cp
- mbox
), (int)(cp
- mbox
), mbox
);
294 fmt_scan (struct format
*format
, char *scanl
, int width
, int *dat
)
298 char *savestr
= NULL
;
299 unsigned char *str
= NULL
;
300 char buffer
[BUFSIZ
], buffer2
[BUFSIZ
];
310 ep
= scanl
+ width
- 1;
312 for (fmt
= format
; fmt
->f_type
!= FT_DONE
; fmt
++)
313 switch (fmt
->f_type
) {
316 fmt
->f_comp
->c_flags
&= ~CF_PARSED
;
323 switch (fmt
->f_type
) {
326 cpstripped (&cp
, ep
, fmt
->f_comp
->c_text
);
329 cptrimmed (&cp
, fmt
->f_comp
->c_text
, fmt
->f_width
, fmt
->f_fill
, ep
- cp
);
334 while( (c
= *sp
++) && cp
< ep
)
343 ljust
++; /* XXX should do something with this */
345 while( (c
= *sp
++) && --i
>= 0 && cp
< ep
)
347 while( --i
>= 0 && cp
< ep
)
352 cpstripped (&cp
, ep
, str
);
355 cptrimmed (&cp
, str
, fmt
->f_width
, fmt
->f_fill
, ep
- cp
);
358 adios (NULL
, "internal error (FT_STRFW)");
361 n
= snprintf(cp
, ep
- cp
+ 1, "%d", value
);
370 cpnumber (&cp
, value
, fmt
->f_width
, fmt
->f_fill
, ep
- cp
);
381 if (!(value
= (str
&& *str
))) {
388 if (!(value
= (str
== NULL
|| *str
== 0))) {
395 if (value
!= fmt
->f_value
) {
402 if (value
== fmt
->f_value
) {
409 if (value
<= fmt
->f_value
) {
416 if (!(value
= (str
&& match (str
, fmt
->f_text
)))) {
424 value
= match (str
, fmt
->f_text
);
430 if (!(value
= (str
&& uprf (str
, fmt
->f_text
)))) {
437 value
= uprf (str
, fmt
->f_text
);
441 value
= (str
!= NULL
&& *str
!= 0);
445 value
= (str
== NULL
|| *str
== 0);
449 value
= (fmt
->f_value
== value
);
453 value
= (fmt
->f_value
!= value
);
457 value
= (fmt
->f_value
> value
);
468 str
= fmt
->f_comp
->c_text
;
474 if (!(str
= getenv (fmt
->f_text
)))
478 if (!(str
= context_find (fmt
->f_text
)))
482 case FT_LS_DECODECOMP
:
483 if (decode_rfc2047(fmt
->f_comp
->c_text
, buffer2
, sizeof(buffer2
)))
486 str
= fmt
->f_comp
->c_text
;
490 if (str
&& decode_rfc2047(str
, buffer2
, sizeof(buffer2
)))
498 strncpy(buffer
, str
, sizeof(buffer
));
499 buffer
[sizeof(buffer
)-1] = '\0';
501 while (isspace(*str
))
504 if ((i
= fmt
->f_width
) < 0) {
509 if (!ljust
&& i
> 0 && strlen(str
) > i
)
512 xp
+= strlen(str
) - 1;
513 while (xp
> str
&& isspace(*xp
))
515 if (ljust
&& i
> 0 && strlen(str
) > i
)
516 str
+= strlen(str
) - i
;
521 value
= (fmt
->f_comp
->c_flags
& CF_TRUE
) != 0;
524 value
= (comp
= fmt
->f_comp
)->c_text
? atoi(comp
->c_text
) : 0;
527 value
= fmt
->f_value
;
530 value
= dat
[fmt
->f_value
];
538 case FT_LV_CHAR_LEFT
:
539 value
= width
- (cp
- scanl
);
542 value
+= fmt
->f_value
;
545 value
= fmt
->f_value
- value
;
549 value
= value
/ fmt
->f_value
;
555 value
= value
% fmt
->f_value
;
564 value
= fmt
->f_comp
->c_tws
->tw_sec
;
567 value
= fmt
->f_comp
->c_tws
->tw_min
;
570 value
= fmt
->f_comp
->c_tws
->tw_hour
;
573 value
= fmt
->f_comp
->c_tws
->tw_mday
;
576 value
= fmt
->f_comp
->c_tws
->tw_mon
+ 1;
579 str
= tw_moty
[fmt
->f_comp
->c_tws
->tw_mon
];
582 str
= lmonth
[fmt
->f_comp
->c_tws
->tw_mon
];
585 str
= dtwszone (fmt
->f_comp
->c_tws
);
588 value
= fmt
->f_comp
->c_tws
->tw_year
;
591 if (!(((tws
= fmt
->f_comp
->c_tws
)->tw_flags
) & (TW_SEXP
|TW_SIMP
)))
593 value
= tws
->tw_wday
;
596 if (!(((tws
= fmt
->f_comp
->c_tws
)->tw_flags
) & (TW_SEXP
|TW_SIMP
)))
598 str
= tw_dotw
[tws
->tw_wday
];
601 if (!(((tws
= fmt
->f_comp
->c_tws
)->tw_flags
) & (TW_SEXP
|TW_SIMP
)))
603 str
= tw_ldotw
[tws
->tw_wday
];
606 value
= fmt
->f_comp
->c_tws
->tw_yday
;
609 value
= fmt
->f_comp
->c_tws
->tw_zone
;
612 if ((value
= fmt
->f_comp
->c_tws
->tw_clock
) == 0)
613 value
= dmktime(fmt
->f_comp
->c_tws
);
616 if ((value
= fmt
->f_comp
->c_tws
->tw_clock
) == 0)
617 value
= dmktime(fmt
->f_comp
->c_tws
);
618 value
= time((time_t *) 0) - value
;
621 if (!(((tws
= fmt
->f_comp
->c_tws
)->tw_flags
) & (TW_SEXP
|TW_SIMP
)))
623 switch (fmt
->f_comp
->c_tws
->tw_flags
& TW_SDAY
) {
632 if ((fmt
->f_comp
->c_tws
->tw_flags
& TW_SZONE
) == TW_SZEXP
)
638 value
= fmt
->f_comp
->c_tws
->tw_flags
& TW_DST
;
641 str
= dasctime (fmt
->f_comp
->c_tws
, TW_ZONE
);
644 str
= dasctime (fmt
->f_comp
->c_tws
, TW_NULL
);
648 str
= fmt
->f_comp
->c_mn
->m_pers
;
651 str
= fmt
->f_comp
->c_mn
->m_mbox
;
654 str
= fmt
->f_comp
->c_mn
->m_host
;
657 str
= fmt
->f_comp
->c_mn
->m_path
;
660 str
= fmt
->f_comp
->c_mn
->m_gname
;
663 str
= fmt
->f_comp
->c_mn
->m_note
;
666 str
= adrformat( fmt
->f_comp
->c_mn
);
669 value
= fmt
->f_comp
->c_mn
->m_type
;
672 value
= fmt
->f_comp
->c_mn
->m_ingrp
;
675 value
= fmt
->f_comp
->c_mn
->m_nohost
;
679 if ((mn
= fmt
->f_comp
->c_mn
) == &fmt_mnull
) {
680 str
= fmt
->f_comp
->c_text
;
683 if (fmt
->f_type
== FT_LS_ADDR
)
685 if ((str
= mn
->m_pers
) == NULL
) {
686 if ((str
= mn
->m_note
)) {
687 strncpy (buffer
, str
, sizeof(buffer
));
688 buffer
[sizeof(buffer
)-1] = '\0';
692 sp
= str
+ strlen(str
) - 1;
701 } else if (!(str
= get_x400_friendly (mn
->m_mbox
,
702 buffer
, sizeof(buffer
)))) {
704 switch (mn
->m_type
) {
709 snprintf (buffer
, sizeof(buffer
), "%s!%s",
710 mn
->m_host
, mn
->m_mbox
);
715 snprintf (buffer
, sizeof(buffer
), "%s@%s",
716 mn
->m_mbox
, mn
->m_host
);
728 /* UNQUOTEs RFC-2822 quoted-string and quoted-pair */
732 strncpy(buffer
, str
, sizeof(buffer
));
733 /* strncpy doesn't NUL-terminate if it fills the buffer */
734 buffer
[sizeof(buffer
)-1] = '\0';
737 /* we will parse from buffer to buffer2 */
738 n
= 0; /* n is the input position in str */
739 m
= 0; /* m is the ouput position in buffer2 */
741 while ( str
[n
] != '\0') {
746 buffer2
[m
++] = str
[n
++];
752 buffer2
[m
++] = str
[n
++];
763 if ((t
= comp
->c_tws
->tw_clock
) == 0)
764 t
= dmktime(comp
->c_tws
);
765 tws
= dlocaltime(&t
);
771 if ((t
= comp
->c_tws
->tw_clock
) == 0)
772 t
= dmktime(comp
->c_tws
);
779 if (comp
->c_flags
& CF_PARSED
)
781 if ((sp
= comp
->c_text
) && (tws
= dparsetime(sp
))) {
783 comp
->c_flags
&= ~CF_TRUE
;
784 } else if ((comp
->c_flags
& CF_DATEFAB
) == 0) {
785 memset ((char *) comp
->c_tws
, 0, sizeof *comp
->c_tws
);
786 comp
->c_flags
= CF_TRUE
;
788 comp
->c_flags
|= CF_PARSED
;
792 /* hook for custom address list formatting (see replsbr.c) */
793 str
= formataddr (savestr
, str
);
797 /* output the str register as an address component,
798 * splitting it into multiple lines if necessary. The
799 * value reg. contains the max line length. The lit.
800 * field may contain a string to prepend to the result
806 int indent
, wid
, len
;
812 indent
= strlen (sp
);
814 while( (c
= *sp
++) && cp
< ep
)
817 /* try to break at a comma; failing that, break at a
820 lastb
= 0; sp
= lp
+ wid
;
821 while (sp
> lp
&& (c
= *--sp
) != ',') {
822 if (! lastb
&& isspace(c
))
826 if (! (sp
= lastb
)) {
828 while (*sp
&& *sp
!= ',' && !isspace(*sp
))
835 while (cp
< ep
&& lp
<= sp
)
842 for (i
=indent
; cp
< ep
&& i
> 0; i
--)
846 cpstripped (&cp
, ep
, lp
);
852 if (comp
->c_flags
& CF_PARSED
)
854 if (comp
->c_mn
!= &fmt_mnull
)
856 if ((sp
= comp
->c_text
) && (sp
= getname(sp
)) &&
857 (mn
= getm (sp
, NULL
, 0, fmt_norm
, NULL
))) {
861 comp
->c_flags
|= CF_PARSED
;
863 while (getname("")) /* XXX */
865 comp
->c_mn
= &fmt_mnull
;
871 * if there's no component, we say true. Otherwise we
872 * say "true" only if we can parse the address and it
873 * matches one of our addresses.
876 if (comp
->c_mn
!= &fmt_mnull
)
878 if ((sp
= comp
->c_text
) && (sp
= getname(sp
)) &&
879 (mn
= getm (sp
, NULL
, 0, AD_NAME
, NULL
))) {
882 comp
->c_flags
|= CF_TRUE
;
884 comp
->c_flags
&= ~CF_TRUE
;
885 while ((sp
= getname(sp
)))
886 if ((comp
->c_flags
& CF_TRUE
) == 0 &&
887 (mn
= getm (sp
, NULL
, 0, AD_NAME
, NULL
)))
889 comp
->c_flags
|= CF_TRUE
;
891 while (getname("")) /* XXX */
893 if (comp
->c_text
== 0)
894 comp
->c_flags
|= CF_TRUE
;
896 comp
->c_flags
&= ~CF_TRUE
;
897 comp
->c_mn
= &fmt_mnull
;
903 /* If we're working on a folder (as opposed to a file), add the
904 * current msg to sequence given in literal field. Don't
905 * disturb string or value registers.
907 if (fmt_current_folder
)
908 seq_addmsg(fmt_current_folder
, fmt
->f_text
, dat
[0], -1);
919 return ((struct format
*)0);
923 while (fmt
->f_type
!= FT_DONE
)
928 return (fmt
->f_value
? ++fmt
: (struct format
*) 0);