]>
diplodocus.org Git - nmh/blob - uip/ap.c
1 /* ap.c -- parse addresses 822-style
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
10 #include <h/fmt_scan.h>
13 #include "sbr/terminal.h"
19 #define FORMAT "%<{error}%{error}: %{text}%|%(putstr(proper{text}))%>"
22 X("form formatfile", 0, FORMSW) \
23 X("format string", 5, FMTSW) \
24 X("width columns", 0, WIDTHSW) \
25 X("version", 0, VERSIONSW) \
26 X("help", 0, HELPSW) \
28 #define X(sw, minchars, id) id,
29 DEFINE_SWITCH_ENUM(AP
);
32 #define X(sw, minchars, id) { sw, minchars, id },
33 DEFINE_SWITCH_ARRAY(AP
, switches
);
36 static struct format
*fmt
;
43 static int process (char *, int);
47 main (int argc
, char **argv
)
50 int width
= -1, status
= 0;
51 char *cp
, *form
= NULL
, *format
= NULL
, *nfs
;
52 char buf
[BUFSIZ
], **argp
;
53 char *addrs
[NADDRS
+ 1]; /* Includes terminating NULL. */
55 if (nmh_init(argv
[0], 2)) { return 1; }
59 argp
= getarguments (invo_name
, argc
, argv
, 1);
60 while ((cp
= *argp
++)) {
62 switch (smatch (++cp
, switches
)) {
64 ambigsw (cp
, switches
);
68 adios (NULL
, "-%s unknown", cp
);
71 snprintf (buf
, sizeof(buf
), "%s [switches] addrs ...",
73 print_help (buf
, switches
, 1);
76 print_version (invo_name
);
80 if (!(form
= *argp
++) || *form
== '-')
81 adios (NULL
, "missing argument to %s", argp
[-2]);
85 if (!(format
= *argp
++) || *format
== '-')
86 adios (NULL
, "missing argument to %s", argp
[-2]);
91 if (!(cp
= *argp
++) || *cp
== '-')
92 adios (NULL
, "missing argument to %s", argp
[-2]);
98 adios (NULL
, "more than %d addresses", NADDRS
);
104 adios (NULL
, "usage: %s [switches] addrs ...", invo_name
);
106 /* get new format string */
107 nfs
= new_fs (form
, format
, FORMAT
);
110 if ((width
= sc_width ()) < WIDTH
/ 2) {
111 /* Default: width of the terminal, but at least WIDTH/2. */
115 } else if (width
== 0) {
116 /* Unlimited width. */
119 fmt_compile (nfs
, &fmt
, 1);
127 for (addrp
= 0; addrs
[addrp
]; addrp
++)
128 status
+= process (addrs
[addrp
], width
);
138 struct pqpair
*pq_next
;
143 process (char *arg
, int length
)
149 struct pqpair
*p
, *q
;
153 (q
= &pq
)->pq_next
= NULL
;
154 while ((cp
= getname (arg
))) {
156 if ((mp
= getm (cp
, NULL
, 0, error
, sizeof(error
))) == NULL
) {
157 p
->pq_text
= mh_xstrdup(cp
);
158 p
->pq_error
= mh_xstrdup(error
);
162 p
->pq_text
= getcpy (mp
->m_text
);
165 q
= (q
->pq_next
= p
);
168 for (p
= pq
.pq_next
; p
; p
= q
) {
170 charstring_create (length
< NMH_BUFSIZ
? length
: NMH_BUFSIZ
);
172 cptr
= fmt_findcomp ("text");
175 cptr
->c_text
= p
->pq_text
;
178 cptr
= fmt_findcomp ("error");
181 cptr
->c_text
= p
->pq_error
;
185 fmt_scan (fmt
, scanl
, length
, dat
, NULL
);
186 fputs (charstring_buffer (scanl
), stdout
);
187 charstring_free (scanl
);