1*7e382390SJung-uk Kim /* flex - tool to generate fast lexical analyzers */
2*7e382390SJung-uk Kim
3*7e382390SJung-uk Kim /* Copyright (c) 1990 The Regents of the University of California. */
4*7e382390SJung-uk Kim /* All rights reserved. */
5*7e382390SJung-uk Kim
6*7e382390SJung-uk Kim /* This code is derived from software contributed to Berkeley by */
7*7e382390SJung-uk Kim /* Vern Paxson. */
8*7e382390SJung-uk Kim
9*7e382390SJung-uk Kim /* The United States Government has rights in this work pursuant */
10*7e382390SJung-uk Kim /* to contract no. DE-AC03-76SF00098 between the United States */
11*7e382390SJung-uk Kim /* Department of Energy and the University of California. */
12*7e382390SJung-uk Kim
13*7e382390SJung-uk Kim /* This file is part of flex. */
14*7e382390SJung-uk Kim
15*7e382390SJung-uk Kim /* Redistribution and use in source and binary forms, with or without */
16*7e382390SJung-uk Kim /* modification, are permitted provided that the following conditions */
17*7e382390SJung-uk Kim /* are met: */
18*7e382390SJung-uk Kim
19*7e382390SJung-uk Kim /* 1. Redistributions of source code must retain the above copyright */
20*7e382390SJung-uk Kim /* notice, this list of conditions and the following disclaimer. */
21*7e382390SJung-uk Kim /* 2. Redistributions in binary form must reproduce the above copyright */
22*7e382390SJung-uk Kim /* notice, this list of conditions and the following disclaimer in the */
23*7e382390SJung-uk Kim /* documentation and/or other materials provided with the distribution. */
24*7e382390SJung-uk Kim
25*7e382390SJung-uk Kim /* Neither the name of the University nor the names of its contributors */
26*7e382390SJung-uk Kim /* may be used to endorse or promote products derived from this software */
27*7e382390SJung-uk Kim /* without specific prior written permission. */
28*7e382390SJung-uk Kim
29*7e382390SJung-uk Kim /* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
30*7e382390SJung-uk Kim /* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
31*7e382390SJung-uk Kim /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
32*7e382390SJung-uk Kim /* PURPOSE. */
33*7e382390SJung-uk Kim
34*7e382390SJung-uk Kim #include "flexdef.h"
35*7e382390SJung-uk Kim
36*7e382390SJung-uk Kim /* Take note: The buffer object is sometimes used as a String buffer (one
37*7e382390SJung-uk Kim * continuous string), and sometimes used as a list of strings, usually line by
38*7e382390SJung-uk Kim * line.
39*7e382390SJung-uk Kim *
40*7e382390SJung-uk Kim * The type is specified in buf_init by the elt_size. If the elt_size is
41*7e382390SJung-uk Kim * sizeof(char), then the buffer should be treated as string buffer. If the
42*7e382390SJung-uk Kim * elt_size is sizeof(char*), then the buffer should be treated as a list of
43*7e382390SJung-uk Kim * strings.
44*7e382390SJung-uk Kim *
45*7e382390SJung-uk Kim * Certain functions are only appropriate for one type or the other.
46*7e382390SJung-uk Kim */
47*7e382390SJung-uk Kim
48*7e382390SJung-uk Kim /* global buffers. */
49*7e382390SJung-uk Kim struct Buf userdef_buf; /**< for user #definitions triggered by cmd-line. */
50*7e382390SJung-uk Kim struct Buf defs_buf; /**< for #define's autogenerated. List of strings. */
51*7e382390SJung-uk Kim struct Buf yydmap_buf; /**< string buffer to hold yydmap elements */
52*7e382390SJung-uk Kim struct Buf m4defs_buf; /**< m4 definitions. List of strings. */
53*7e382390SJung-uk Kim struct Buf top_buf; /**< contains %top code. String buffer. */
54*7e382390SJung-uk Kim
buf_print_strings(struct Buf * buf,FILE * out)55*7e382390SJung-uk Kim struct Buf *buf_print_strings(struct Buf * buf, FILE* out)
56*7e382390SJung-uk Kim {
57*7e382390SJung-uk Kim int i;
58*7e382390SJung-uk Kim
59*7e382390SJung-uk Kim if(!buf || !out)
60*7e382390SJung-uk Kim return buf;
61*7e382390SJung-uk Kim
62*7e382390SJung-uk Kim for (i=0; i < buf->nelts; i++){
63*7e382390SJung-uk Kim const char * s = ((char**)buf->elts)[i];
64*7e382390SJung-uk Kim if(s)
65*7e382390SJung-uk Kim fprintf(out, "%s", s);
66*7e382390SJung-uk Kim }
67*7e382390SJung-uk Kim return buf;
68*7e382390SJung-uk Kim }
69*7e382390SJung-uk Kim
70*7e382390SJung-uk Kim /* Append a "%s" formatted string to a string buffer */
buf_prints(struct Buf * buf,const char * fmt,const char * s)71*7e382390SJung-uk Kim struct Buf *buf_prints (struct Buf *buf, const char *fmt, const char *s)
72*7e382390SJung-uk Kim {
73*7e382390SJung-uk Kim char *t;
74*7e382390SJung-uk Kim size_t tsz;
75*7e382390SJung-uk Kim
76*7e382390SJung-uk Kim tsz = strlen(fmt) + strlen(s) + 1;
77*7e382390SJung-uk Kim t = malloc(tsz);
78*7e382390SJung-uk Kim if (!t)
79*7e382390SJung-uk Kim flexfatal (_("Allocation of buffer to print string failed"));
80*7e382390SJung-uk Kim snprintf (t, tsz, fmt, s);
81*7e382390SJung-uk Kim buf = buf_strappend (buf, t);
82*7e382390SJung-uk Kim free(t);
83*7e382390SJung-uk Kim return buf;
84*7e382390SJung-uk Kim }
85*7e382390SJung-uk Kim
86*7e382390SJung-uk Kim /** Append a line directive to the string buffer.
87*7e382390SJung-uk Kim * @param buf A string buffer.
88*7e382390SJung-uk Kim * @param filename file name
89*7e382390SJung-uk Kim * @param lineno line number
90*7e382390SJung-uk Kim * @return buf
91*7e382390SJung-uk Kim */
buf_linedir(struct Buf * buf,const char * filename,int lineno)92*7e382390SJung-uk Kim struct Buf *buf_linedir (struct Buf *buf, const char* filename, int lineno)
93*7e382390SJung-uk Kim {
94*7e382390SJung-uk Kim char *dst, *t;
95*7e382390SJung-uk Kim const char *src;
96*7e382390SJung-uk Kim size_t tsz;
97*7e382390SJung-uk Kim
98*7e382390SJung-uk Kim if (gen_line_dirs)
99*7e382390SJung-uk Kim return buf;
100*7e382390SJung-uk Kim
101*7e382390SJung-uk Kim tsz = strlen("#line \"\"\n") + /* constant parts */
102*7e382390SJung-uk Kim 2 * strlen (filename) + /* filename with possibly all backslashes escaped */
103*7e382390SJung-uk Kim NUMCHARLINES + /* line number */
104*7e382390SJung-uk Kim 1; /* NUL */
105*7e382390SJung-uk Kim t = malloc(tsz);
106*7e382390SJung-uk Kim if (!t)
107*7e382390SJung-uk Kim flexfatal (_("Allocation of buffer for line directive failed"));
108*7e382390SJung-uk Kim for (dst = t + snprintf (t, tsz, "#line %d \"", lineno), src = filename; *src; *dst++ = *src++)
109*7e382390SJung-uk Kim if (*src == '\\') /* escape backslashes */
110*7e382390SJung-uk Kim *dst++ = '\\';
111*7e382390SJung-uk Kim *dst++ = '"';
112*7e382390SJung-uk Kim *dst++ = '\n';
113*7e382390SJung-uk Kim *dst = '\0';
114*7e382390SJung-uk Kim buf = buf_strappend (buf, t);
115*7e382390SJung-uk Kim free(t);
116*7e382390SJung-uk Kim return buf;
117*7e382390SJung-uk Kim }
118*7e382390SJung-uk Kim
119*7e382390SJung-uk Kim
120*7e382390SJung-uk Kim /** Append the contents of @a src to @a dest.
121*7e382390SJung-uk Kim * @param @a dest the destination buffer
122*7e382390SJung-uk Kim * @param @a dest the source buffer
123*7e382390SJung-uk Kim * @return @a dest
124*7e382390SJung-uk Kim */
buf_concat(struct Buf * dest,const struct Buf * src)125*7e382390SJung-uk Kim struct Buf *buf_concat(struct Buf* dest, const struct Buf* src)
126*7e382390SJung-uk Kim {
127*7e382390SJung-uk Kim buf_append(dest, src->elts, src->nelts);
128*7e382390SJung-uk Kim return dest;
129*7e382390SJung-uk Kim }
130*7e382390SJung-uk Kim
131*7e382390SJung-uk Kim
132*7e382390SJung-uk Kim /* Appends n characters in str to buf. */
buf_strnappend(struct Buf * buf,const char * str,int n)133*7e382390SJung-uk Kim struct Buf *buf_strnappend (struct Buf *buf, const char *str, int n)
134*7e382390SJung-uk Kim {
135*7e382390SJung-uk Kim buf_append (buf, str, n + 1);
136*7e382390SJung-uk Kim
137*7e382390SJung-uk Kim /* "undo" the '\0' character that buf_append() already copied. */
138*7e382390SJung-uk Kim buf->nelts--;
139*7e382390SJung-uk Kim
140*7e382390SJung-uk Kim return buf;
141*7e382390SJung-uk Kim }
142*7e382390SJung-uk Kim
143*7e382390SJung-uk Kim /* Appends characters in str to buf. */
buf_strappend(struct Buf * buf,const char * str)144*7e382390SJung-uk Kim struct Buf *buf_strappend (struct Buf *buf, const char *str)
145*7e382390SJung-uk Kim {
146*7e382390SJung-uk Kim return buf_strnappend (buf, str, (int) strlen (str));
147*7e382390SJung-uk Kim }
148*7e382390SJung-uk Kim
149*7e382390SJung-uk Kim /* appends "#define str def\n" */
buf_strdefine(struct Buf * buf,const char * str,const char * def)150*7e382390SJung-uk Kim struct Buf *buf_strdefine (struct Buf *buf, const char *str, const char *def)
151*7e382390SJung-uk Kim {
152*7e382390SJung-uk Kim buf_strappend (buf, "#define ");
153*7e382390SJung-uk Kim buf_strappend (buf, " ");
154*7e382390SJung-uk Kim buf_strappend (buf, str);
155*7e382390SJung-uk Kim buf_strappend (buf, " ");
156*7e382390SJung-uk Kim buf_strappend (buf, def);
157*7e382390SJung-uk Kim buf_strappend (buf, "\n");
158*7e382390SJung-uk Kim return buf;
159*7e382390SJung-uk Kim }
160*7e382390SJung-uk Kim
161*7e382390SJung-uk Kim /** Pushes "m4_define( [[def]], [[val]])m4_dnl" to end of buffer.
162*7e382390SJung-uk Kim * @param buf A buffer as a list of strings.
163*7e382390SJung-uk Kim * @param def The m4 symbol to define.
164*7e382390SJung-uk Kim * @param val The definition; may be NULL.
165*7e382390SJung-uk Kim * @return buf
166*7e382390SJung-uk Kim */
buf_m4_define(struct Buf * buf,const char * def,const char * val)167*7e382390SJung-uk Kim struct Buf *buf_m4_define (struct Buf *buf, const char* def, const char* val)
168*7e382390SJung-uk Kim {
169*7e382390SJung-uk Kim const char * fmt = "m4_define( [[%s]], [[[[%s]]]])m4_dnl\n";
170*7e382390SJung-uk Kim char * str;
171*7e382390SJung-uk Kim size_t strsz;
172*7e382390SJung-uk Kim
173*7e382390SJung-uk Kim val = val?val:"";
174*7e382390SJung-uk Kim strsz = strlen(fmt) + strlen(def) + strlen(val) + 2;
175*7e382390SJung-uk Kim str = malloc(strsz);
176*7e382390SJung-uk Kim if (!str)
177*7e382390SJung-uk Kim flexfatal (_("Allocation of buffer for m4 def failed"));
178*7e382390SJung-uk Kim
179*7e382390SJung-uk Kim snprintf(str, strsz, fmt, def, val);
180*7e382390SJung-uk Kim buf_append(buf, &str, 1);
181*7e382390SJung-uk Kim return buf;
182*7e382390SJung-uk Kim }
183*7e382390SJung-uk Kim
184*7e382390SJung-uk Kim /** Pushes "m4_undefine([[def]])m4_dnl" to end of buffer.
185*7e382390SJung-uk Kim * @param buf A buffer as a list of strings.
186*7e382390SJung-uk Kim * @param def The m4 symbol to undefine.
187*7e382390SJung-uk Kim * @return buf
188*7e382390SJung-uk Kim */
buf_m4_undefine(struct Buf * buf,const char * def)189*7e382390SJung-uk Kim struct Buf *buf_m4_undefine (struct Buf *buf, const char* def)
190*7e382390SJung-uk Kim {
191*7e382390SJung-uk Kim const char * fmt = "m4_undefine( [[%s]])m4_dnl\n";
192*7e382390SJung-uk Kim char * str;
193*7e382390SJung-uk Kim size_t strsz;
194*7e382390SJung-uk Kim
195*7e382390SJung-uk Kim strsz = strlen(fmt) + strlen(def) + 2;
196*7e382390SJung-uk Kim str = malloc(strsz);
197*7e382390SJung-uk Kim if (!str)
198*7e382390SJung-uk Kim flexfatal (_("Allocation of buffer for m4 undef failed"));
199*7e382390SJung-uk Kim
200*7e382390SJung-uk Kim snprintf(str, strsz, fmt, def);
201*7e382390SJung-uk Kim buf_append(buf, &str, 1);
202*7e382390SJung-uk Kim return buf;
203*7e382390SJung-uk Kim }
204*7e382390SJung-uk Kim
205*7e382390SJung-uk Kim /* create buf with 0 elements, each of size elem_size. */
buf_init(struct Buf * buf,size_t elem_size)206*7e382390SJung-uk Kim void buf_init (struct Buf *buf, size_t elem_size)
207*7e382390SJung-uk Kim {
208*7e382390SJung-uk Kim buf->elts = NULL;
209*7e382390SJung-uk Kim buf->nelts = 0;
210*7e382390SJung-uk Kim buf->elt_size = elem_size;
211*7e382390SJung-uk Kim buf->nmax = 0;
212*7e382390SJung-uk Kim }
213*7e382390SJung-uk Kim
214*7e382390SJung-uk Kim /* frees memory */
buf_destroy(struct Buf * buf)215*7e382390SJung-uk Kim void buf_destroy (struct Buf *buf)
216*7e382390SJung-uk Kim {
217*7e382390SJung-uk Kim if (buf) {
218*7e382390SJung-uk Kim free(buf->elts);
219*7e382390SJung-uk Kim buf->elts = NULL;
220*7e382390SJung-uk Kim }
221*7e382390SJung-uk Kim }
222*7e382390SJung-uk Kim
223*7e382390SJung-uk Kim
224*7e382390SJung-uk Kim /* appends ptr[] to buf, grow if necessary.
225*7e382390SJung-uk Kim * n_elem is number of elements in ptr[], NOT bytes.
226*7e382390SJung-uk Kim * returns buf.
227*7e382390SJung-uk Kim * We grow by mod(512) boundaries.
228*7e382390SJung-uk Kim */
229*7e382390SJung-uk Kim
buf_append(struct Buf * buf,const void * ptr,int n_elem)230*7e382390SJung-uk Kim struct Buf *buf_append (struct Buf *buf, const void *ptr, int n_elem)
231*7e382390SJung-uk Kim {
232*7e382390SJung-uk Kim int n_alloc = 0;
233*7e382390SJung-uk Kim
234*7e382390SJung-uk Kim if (!ptr || n_elem == 0)
235*7e382390SJung-uk Kim return buf;
236*7e382390SJung-uk Kim
237*7e382390SJung-uk Kim /* May need to alloc more. */
238*7e382390SJung-uk Kim if (n_elem + buf->nelts > buf->nmax) {
239*7e382390SJung-uk Kim
240*7e382390SJung-uk Kim /* exact count needed... */
241*7e382390SJung-uk Kim n_alloc = n_elem + buf->nelts;
242*7e382390SJung-uk Kim
243*7e382390SJung-uk Kim /* ...plus some extra */
244*7e382390SJung-uk Kim if ((((size_t) n_alloc * buf->elt_size) % 512) != 0
245*7e382390SJung-uk Kim && buf->elt_size < 512)
246*7e382390SJung-uk Kim n_alloc += (int)
247*7e382390SJung-uk Kim ((512 -
248*7e382390SJung-uk Kim (((size_t) n_alloc * buf->elt_size) % 512)) /
249*7e382390SJung-uk Kim buf->elt_size);
250*7e382390SJung-uk Kim
251*7e382390SJung-uk Kim if (!buf->elts)
252*7e382390SJung-uk Kim buf->elts =
253*7e382390SJung-uk Kim allocate_array ((int) n_alloc, buf->elt_size);
254*7e382390SJung-uk Kim else
255*7e382390SJung-uk Kim buf->elts =
256*7e382390SJung-uk Kim reallocate_array (buf->elts, (int) n_alloc,
257*7e382390SJung-uk Kim buf->elt_size);
258*7e382390SJung-uk Kim
259*7e382390SJung-uk Kim buf->nmax = n_alloc;
260*7e382390SJung-uk Kim }
261*7e382390SJung-uk Kim
262*7e382390SJung-uk Kim memcpy ((char *) buf->elts + (size_t) buf->nelts * buf->elt_size, ptr,
263*7e382390SJung-uk Kim (size_t) n_elem * buf->elt_size);
264*7e382390SJung-uk Kim buf->nelts += n_elem;
265*7e382390SJung-uk Kim
266*7e382390SJung-uk Kim return buf;
267*7e382390SJung-uk Kim }
268*7e382390SJung-uk Kim
269*7e382390SJung-uk Kim /* vim:set tabstop=8 softtabstop=4 shiftwidth=4: */
270