2 * b2m - a filter for Babyl -> Unix mail files
3 * The copyright on this file has been disclaimed.
5 * usage: b2m < babyl > mailbox
7 * I find this useful whenever I have to use a
8 * system which - shock horror! - doesn't run
9 * GNU Emacs. At least now I can read all my
10 * GNU Emacs Babyl format mail files!
12 * it's not much but it's free!
15 * E.Wilkinson@massey.ac.nz
16 * Mon Nov 7 15:54:06 PDT 1988
19 /* Made conformant to the GNU coding standards January, 1995
20 by Francesco Potorti` <pot@cnuce.cnr.it>. */
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. */
31 #include <sys/types.h>
42 #define streq(s,t) (strcmp (s, t) == 0)
43 #define strneq(s,t,n) (strncmp (s, t, n) == 0)
47 #define TM_YEAR_BASE 1900
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
52 # define TM_YEAR_IN_ASCTIME_RANGE(tm_year) \
53 (1000 - TM_YEAR_BASE <= (tm_year) && (tm_year) <= 9999 - TM_YEAR_BASE)
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.
67 extern char *strtok();
69 long *xmalloc (), *xrealloc ();
75 * xnew -- allocate storage. SYNOPSIS: Type *xnew (int n, Type);
77 #define xnew(n, Type) ((Type *) xmalloc ((n) * sizeof (Type)))
83 struct option longopts
[] =
85 { "help", no_argument
, NULL
, 'h' },
86 { "version", no_argument
, NULL
, 'V' },
97 logical labels_saved
, printing
, header
;
100 char *labels
, *p
, *today
;
101 struct linebuffer data
;
104 _fmode
= O_BINARY
; /* all of files are treated as binary files */
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 */
111 (stdout
)->_flag
&= ~_IOTEXT
;
112 (stdin
)->_flag
&= ~_IOTEXT
;
113 #endif /* not __DJGPP__ > 1 */
119 int opt
= getopt_long (argc
, argv
, "hV", longopts
, 0);
126 printf ("%s (GNU Emacs %s)\n", "b2m", VERSION
);
127 puts ("b2m is in the public domain.");
131 fprintf (stderr
, "Usage: %s <babylmailbox >unixmailbox\n", progname
);
138 fprintf (stderr
, "Usage: %s <babylmailbox >unixmailbox\n", progname
);
142 labels_saved
= printing
= header
= FALSE
;
144 /* Convert to a string, checking for out-of-range time stamps.
145 Don't use 'ctime', as that might dump core if the hardware clock
146 is set to a bizarre value. */
147 tm
= localtime (<oday
);
148 if (! (tm
&& TM_YEAR_IN_ASCTIME_RANGE (tm
->tm_year
)
149 && (today
= asctime (tm
))))
150 fatal ("current time is out of range");
152 data
.buffer
= xnew (200, char);
154 if (readline (&data
, stdin
) == 0
155 || !strneq (data
.buffer
, "BABYL OPTIONS:", 14))
156 fatal ("standard input is not a Babyl mailfile.");
158 while (readline (&data
, stdin
) > 0)
160 if (streq (data
.buffer
, "*** EOOH ***") && !printing
)
162 printing
= header
= TRUE
;
163 printf ("From \"Babyl to mail by %s\" %s", progname
, today
);
167 if (data
.buffer
[0] == '\037')
169 if (data
.buffer
[1] == '\0')
171 else if (data
.buffer
[1] == '\f')
174 readline (&data
, stdin
);
175 p
= strtok (data
.buffer
, " ,\r\n\t");
176 labels
= "X-Babyl-Labels: ";
178 while ((p
= strtok (NULL
, " ,\r\n\t")))
179 labels
= concat (labels
, p
, ", ");
181 p
= &labels
[strlen (labels
) - 2];
184 printing
= header
= FALSE
;
190 if ((data
.buffer
[0] == '\0') && header
)
207 * Return a newly-allocated string whose contents
208 * concatenate those of s1, s2, s3.
214 int len1
= strlen (s1
), len2
= strlen (s2
), len3
= strlen (s3
);
215 char *result
= xnew (len1
+ len2
+ len3
+ 1, char);
218 strcpy (result
+ len1
, s2
);
219 strcpy (result
+ len1
+ len2
, s3
);
220 result
[len1
+ len2
+ len3
] = '\0';
226 * Read a line of text from `stream' into `linebuffer'.
227 * Return the number of characters read from `stream',
228 * which is the length of the line including the newline, if any.
231 readline (linebuffer
, stream
)
232 struct linebuffer
*linebuffer
;
233 register FILE *stream
;
235 char *buffer
= linebuffer
->buffer
;
236 register char *p
= linebuffer
->buffer
;
240 pend
= p
+ linebuffer
->size
; /* Separate to avoid 386/IX compiler bug. */
244 register int c
= getc (stream
);
247 linebuffer
->size
*= 2;
248 buffer
= (char *) xrealloc (buffer
, linebuffer
->size
);
249 p
+= buffer
- linebuffer
->buffer
;
250 pend
= buffer
+ linebuffer
->size
;
251 linebuffer
->buffer
= buffer
;
261 if (p
> buffer
&& p
[-1] == '\r')
276 return (p
- buffer
+ chars_deleted
);
280 * Like malloc but get fatal error if memory is exhausted.
286 long *result
= (long *) malloc (size
);
288 fatal ("virtual memory exhausted");
297 long *result
= (long *) realloc (ptr
, size
);
299 fatal ("virtual memory exhausted");
307 fprintf (stderr
, "%s: %s\n", progname
, message
);
311 /* arch-tag: 5a3ad2af-a802-408f-83cc-e7cf5e98653e
312 (do not change this comment) */
314 /* b2m.c ends here */