Bump version to 23.1.97.
[bpt/emacs.git] / lib-src / b2m.c
CommitLineData
cc9940c7
JB
1/*
2 * b2m - a filter for Babyl -> Unix mail files
a43dbef8 3 * The copyright on this file has been disclaimed.
cc9940c7
JB
4 *
5 * usage: b2m < babyl > mailbox
6 *
7 * I find this useful whenever I have to use a
8 * system which - shock horror! - doesn't run
37a9305e
PJ
9 * GNU Emacs. At least now I can read all my
10 * GNU Emacs Babyl format mail files!
cc9940c7
JB
11 *
12 * it's not much but it's free!
13 *
14 * Ed Wilkinson
15 * E.Wilkinson@massey.ac.nz
16 * Mon Nov 7 15:54:06 PDT 1988
17 */
18
e19bdc14
RS
19/* Made conformant to the GNU coding standards January, 1995
20 by Francesco Potorti` <pot@cnuce.cnr.it>. */
21
e19bdc14
RS
22#ifdef HAVE_CONFIG_H
23#include <config.h>
24/* On some systems, Emacs defines static as nothing for the sake
25 of unexec. We don't want that here since we don't use unexec. */
26#undef static
27#endif
fbfed6f0 28
4ee9629e
PE
29#include <stdio.h>
30#include <time.h>
31#include <sys/types.h>
32#include <getopt.h>
33#ifdef MSDOS
34#include <fcntl.h>
1f8c2f55
AS
35#endif
36
e19bdc14
RS
37#undef TRUE
38#define TRUE 1
39#undef FALSE
40#define FALSE 0
cc9940c7 41
e19bdc14
RS
42#define streq(s,t) (strcmp (s, t) == 0)
43#define strneq(s,t,n) (strncmp (s, t, n) == 0)
44
45typedef int logical;
46
d65b4235
PE
47#define TM_YEAR_BASE 1900
48
49/* Nonzero if TM_YEAR is a struct tm's tm_year value that causes
50 asctime to have well-defined behavior. */
51#ifndef TM_YEAR_IN_ASCTIME_RANGE
f5565804 52# define TM_YEAR_IN_ASCTIME_RANGE(tm_year) \
d65b4235 53 (1000 - TM_YEAR_BASE <= (tm_year) && (tm_year) <= 9999 - TM_YEAR_BASE)
f5565804
PE
54#endif
55
e19bdc14
RS
56/*
57 * A `struct linebuffer' is a structure which holds a line of text.
58 * `readline' reads a line from a stream into a linebuffer and works
59 * regardless of the length of the line.
60 */
61struct linebuffer
62{
63 long size;
64 char *buffer;
65};
66
67extern char *strtok();
128ba46c 68
0404b62c 69long *xmalloc (), *xrealloc ();
e19bdc14
RS
70char *concat ();
71long readline ();
72void fatal ();
73
74/*
75 * xnew -- allocate storage. SYNOPSIS: Type *xnew (int n, Type);
76 */
77#define xnew(n, Type) ((Type *) xmalloc ((n) * sizeof (Type)))
78
79
80
81char *progname;
cc9940c7 82
e4b34a85
KH
83struct option longopts[] =
84{
85 { "help", no_argument, NULL, 'h' },
86 { "version", no_argument, NULL, 'V' },
87 { 0 }
88};
89
90extern int optind;
91
1f8c2f55 92int
5d13f393
JB
93main (argc, argv)
94 int argc;
95 char **argv;
cc9940c7 96{
678bc1f5 97 logical labels_saved, printing, header, first, last_was_blank_line;
e19bdc14 98 time_t ltoday;
f5565804 99 struct tm *tm;
e19bdc14
RS
100 char *labels, *p, *today;
101 struct linebuffer data;
102
c6880c90 103#ifdef MSDOS
e3515d10 104 _fmode = O_BINARY; /* all of files are treated as binary files */
18198bb2
RS
105#if __DJGPP__ > 1
106 if (!isatty (fileno (stdout)))
107 setmode (fileno (stdout), O_BINARY);
108 if (!isatty (fileno (stdin)))
109 setmode (fileno (stdin), O_BINARY);
110#else /* not __DJGPP__ > 1 */
c6880c90
RS
111 (stdout)->_flag &= ~_IOTEXT;
112 (stdin)->_flag &= ~_IOTEXT;
18198bb2 113#endif /* not __DJGPP__ > 1 */
c6880c90 114#endif
d4843060
RS
115 progname = argv[0];
116
e4b34a85
KH
117 while (1)
118 {
119 int opt = getopt_long (argc, argv, "hV", longopts, 0);
120 if (opt == EOF)
121 break;
122
123 switch (opt)
124 {
125 case 'V':
126 printf ("%s (GNU Emacs %s)\n", "b2m", VERSION);
127 puts ("b2m is in the public domain.");
3f0656ff 128 exit (EXIT_SUCCESS);
e4b34a85
KH
129
130 case 'h':
131 fprintf (stderr, "Usage: %s <babylmailbox >unixmailbox\n", progname);
3f0656ff 132 exit (EXIT_SUCCESS);
e4b34a85
KH
133 }
134 }
135
136 if (optind != argc)
88d00c7e 137 {
e19bdc14 138 fprintf (stderr, "Usage: %s <babylmailbox >unixmailbox\n", progname);
3f0656ff 139 exit (EXIT_SUCCESS);
88d00c7e 140 }
e4b34a85 141
678bc1f5
CY
142 labels_saved = printing = header = last_was_blank_line = FALSE;
143 first = TRUE;
e3515d10 144 ltoday = time (0);
f5565804
PE
145 /* Convert to a string, checking for out-of-range time stamps.
146 Don't use 'ctime', as that might dump core if the hardware clock
147 is set to a bizarre value. */
148 tm = localtime (&ltoday);
d65b4235
PE
149 if (! (tm && TM_YEAR_IN_ASCTIME_RANGE (tm->tm_year)
150 && (today = asctime (tm))))
f5565804 151 fatal ("current time is out of range");
e19bdc14
RS
152 data.size = 200;
153 data.buffer = xnew (200, char);
cc9940c7 154
e19bdc14
RS
155 if (readline (&data, stdin) == 0
156 || !strneq (data.buffer, "BABYL OPTIONS:", 14))
157 fatal ("standard input is not a Babyl mailfile.");
cc9940c7 158
e19bdc14 159 while (readline (&data, stdin) > 0)
e3515d10 160 {
e19bdc14 161 if (streq (data.buffer, "*** EOOH ***") && !printing)
e3515d10
RS
162 {
163 printing = header = TRUE;
d4843060 164 printf ("From \"Babyl to mail by %s\" %s", progname, today);
e3515d10
RS
165 continue;
166 }
88d00c7e 167
e19bdc14 168 if (data.buffer[0] == '\037')
e3515d10 169 {
e19bdc14
RS
170 if (data.buffer[1] == '\0')
171 continue;
172 else if (data.buffer[1] == '\f')
e3515d10 173 {
678bc1f5
CY
174 if (first)
175 first = FALSE;
176 else if (! last_was_blank_line)
177 puts("");
e19bdc14
RS
178 /* Save labels. */
179 readline (&data, stdin);
180 p = strtok (data.buffer, " ,\r\n\t");
181 labels = "X-Babyl-Labels: ";
cc9940c7 182
25b18337 183 while ((p = strtok (NULL, " ,\r\n\t")))
e19bdc14
RS
184 labels = concat (labels, p, ", ");
185
7a804c76
KH
186 p = &labels[strlen (labels) - 2];
187 if (*p == ',')
188 *p = '\0';
e19bdc14
RS
189 printing = header = FALSE;
190 labels_saved = TRUE;
191 continue;
192 }
e3515d10 193 }
cc9940c7 194
e19bdc14 195 if ((data.buffer[0] == '\0') && header)
e3515d10
RS
196 {
197 header = FALSE;
e19bdc14 198 if (labels_saved)
e3515d10
RS
199 puts (labels);
200 }
e19bdc14 201
e3515d10 202 if (printing)
678bc1f5
CY
203 {
204 puts (data.buffer);
205 if (data.buffer[0] == '\0')
206 last_was_blank_line = TRUE;
207 else
208 last_was_blank_line = FALSE;
209 }
e19bdc14 210 }
3a213356 211
3f0656ff 212 return EXIT_SUCCESS;
e19bdc14
RS
213}
214
215
216
217/*
218 * Return a newly-allocated string whose contents
219 * concatenate those of s1, s2, s3.
220 */
221char *
222concat (s1, s2, s3)
223 char *s1, *s2, *s3;
224{
225 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
226 char *result = xnew (len1 + len2 + len3 + 1, char);
227
228 strcpy (result, s1);
229 strcpy (result + len1, s2);
230 strcpy (result + len1 + len2, s3);
231 result[len1 + len2 + len3] = '\0';
232
233 return result;
234}
235
236/*
237 * Read a line of text from `stream' into `linebuffer'.
238 * Return the number of characters read from `stream',
239 * which is the length of the line including the newline, if any.
240 */
241long
242readline (linebuffer, stream)
243 struct linebuffer *linebuffer;
244 register FILE *stream;
245{
246 char *buffer = linebuffer->buffer;
247 register char *p = linebuffer->buffer;
248 register char *pend;
249 int chars_deleted;
250
251 pend = p + linebuffer->size; /* Separate to avoid 386/IX compiler bug. */
252
253 while (1)
254 {
255 register int c = getc (stream);
256 if (p == pend)
257 {
258 linebuffer->size *= 2;
259 buffer = (char *) xrealloc (buffer, linebuffer->size);
260 p += buffer - linebuffer->buffer;
261 pend = buffer + linebuffer->size;
262 linebuffer->buffer = buffer;
263 }
264 if (c == EOF)
265 {
5326c1d6 266 *p = '\0';
e19bdc14
RS
267 chars_deleted = 0;
268 break;
269 }
270 if (c == '\n')
271 {
5326c1d6 272 if (p > buffer && p[-1] == '\r')
e19bdc14
RS
273 {
274 *--p = '\0';
275 chars_deleted = 2;
276 }
277 else
278 {
279 *p = '\0';
280 chars_deleted = 1;
281 }
282 break;
283 }
284 *p++ = c;
e3515d10 285 }
e19bdc14
RS
286
287 return (p - buffer + chars_deleted);
cc9940c7 288}
e19bdc14
RS
289
290/*
291 * Like malloc but get fatal error if memory is exhausted.
292 */
0404b62c 293long *
e19bdc14
RS
294xmalloc (size)
295 unsigned int size;
296{
0404b62c 297 long *result = (long *) malloc (size);
e19bdc14
RS
298 if (result == NULL)
299 fatal ("virtual memory exhausted");
300 return result;
301}
302
0404b62c 303long *
e19bdc14
RS
304xrealloc (ptr, size)
305 char *ptr;
306 unsigned int size;
307{
0404b62c 308 long *result = (long *) realloc (ptr, size);
e19bdc14
RS
309 if (result == NULL)
310 fatal ("virtual memory exhausted");
311 return result;
312}
313
314void
315fatal (message)
5c0b76c1 316 char *message;
e19bdc14
RS
317{
318 fprintf (stderr, "%s: %s\n", progname, message);
3f0656ff 319 exit (EXIT_FAILURE);
e19bdc14
RS
320}
321
ab5796a9
MB
322/* arch-tag: 5a3ad2af-a802-408f-83cc-e7cf5e98653e
323 (do not change this comment) */
3f0656ff
TTN
324
325/* b2m.c ends here */