1 /* $NetBSD: buf.c,v 1.2 2013/04/06 14:27:52 christos Exp $ */
3 /* flex - tool to generate fast lexical analyzers */
5 /* Copyright (c) 1990 The Regents of the University of California. */
6 /* All rights reserved. */
8 /* This code is derived from software contributed to Berkeley by */
11 /* The United States Government has rights in this work pursuant */
12 /* to contract no. DE-AC03-76SF00098 between the United States */
13 /* Department of Energy and the University of California. */
15 /* This file is part of flex. */
17 /* Redistribution and use in source and binary forms, with or without */
18 /* modification, are permitted provided that the following conditions */
21 /* 1. Redistributions of source code must retain the above copyright */
22 /* notice, this list of conditions and the following disclaimer. */
23 /* 2. Redistributions in binary form must reproduce the above copyright */
24 /* notice, this list of conditions and the following disclaimer in the */
25 /* documentation and/or other materials provided with the distribution. */
27 /* Neither the name of the University nor the names of its contributors */
28 /* may be used to endorse or promote products derived from this software */
29 /* without specific prior written permission. */
31 /* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
32 /* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
33 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
38 /* Take note: The buffer object is sometimes used as a String buffer (one
39 * continuous string), and sometimes used as a list of strings, usually line by
42 * The type is specified in buf_init by the elt_size. If the elt_size is
43 * sizeof(char), then the buffer should be treated as string buffer. If the
44 * elt_size is sizeof(char*), then the buffer should be treated as a list of
47 * Certain functions are only appropriate for one type or the other.
51 struct Buf userdef_buf
; /**< for user #definitions triggered by cmd-line. */
52 struct Buf defs_buf
; /**< for #define's autogenerated. List of strings. */
53 struct Buf yydmap_buf
; /**< string buffer to hold yydmap elements */
54 struct Buf m4defs_buf
; /**< m4 definitions. List of strings. */
55 struct Buf top_buf
; /**< contains %top code. String buffer. */
57 struct Buf
*buf_print_strings(struct Buf
* buf
, FILE* out
)
64 for (i
=0; i
< buf
->nelts
; i
++){
65 const char * s
= ((char**)buf
->elts
)[i
];
67 fprintf(out
, "%s", s
);
72 /* Append a "%s" formatted string to a string buffer */
73 struct Buf
*buf_prints (struct Buf
*buf
, const char *fmt
, const char *s
)
78 t
= flex_alloc (tsz
= strlen (fmt
) + strlen (s
) + 1);
80 flexfatal (_("Allocation of buffer to print string failed"));
81 snprintf (t
, tsz
, fmt
, s
);
82 buf
= buf_strappend (buf
, t
);
87 /** Append a line directive to the string buffer.
88 * @param buf A string buffer.
89 * @param filename file name
90 * @param lineno line number
93 struct Buf
*buf_linedir (struct Buf
*buf
, const char* filename
, int lineno
)
98 t
= flex_alloc (strlen ("#line \"\"\n") + /* constant parts */
99 2 * strlen (filename
) + /* filename with possibly all backslashes escaped */
100 (int) (1 + log10 (abs (lineno
))) + /* line number */
103 flexfatal (_("Allocation of buffer for line directive failed"));
104 for (dst
= t
+ sprintf (t
, "#line %d \"", lineno
), src
= filename
; *src
; *dst
++ = *src
++)
105 if (*src
== '\\') /* escape backslashes */
110 buf
= buf_strappend (buf
, t
);
116 /** Append the contents of @a src to @a dest.
117 * @param @a dest the destination buffer
118 * @param @a dest the source buffer
121 struct Buf
*buf_concat(struct Buf
* dest
, const struct Buf
* src
)
123 buf_append(dest
, src
->elts
, src
->nelts
);
128 /* Appends n characters in str to buf. */
129 struct Buf
*buf_strnappend (buf
, str
, n
)
134 buf_append (buf
, str
, n
+ 1);
136 /* "undo" the '\0' character that buf_append() already copied. */
142 /* Appends characters in str to buf. */
143 struct Buf
*buf_strappend (buf
, str
)
147 return buf_strnappend (buf
, str
, strlen (str
));
150 /* appends "#define str def\n" */
151 struct Buf
*buf_strdefine (buf
, str
, def
)
156 buf_strappend (buf
, "#define ");
157 buf_strappend (buf
, " ");
158 buf_strappend (buf
, str
);
159 buf_strappend (buf
, " ");
160 buf_strappend (buf
, def
);
161 buf_strappend (buf
, "\n");
165 /** Pushes "m4_define( [[def]], [[val]])m4_dnl" to end of buffer.
166 * @param buf A buffer as a list of strings.
167 * @param def The m4 symbol to define.
168 * @param val The definition; may be NULL.
171 struct Buf
*buf_m4_define (struct Buf
*buf
, const char* def
, const char* val
)
173 const char * fmt
= "m4_define( [[%s]], [[%s]])m4_dnl\n";
178 str
= (char*)flex_alloc(strsz
= strlen(fmt
) + strlen(def
) + strlen(val
) + 2);
180 flexfatal (_("Allocation of buffer for m4 def failed"));
182 snprintf(str
, strsz
, fmt
, def
, val
);
183 buf_append(buf
, &str
, 1);
187 /** Pushes "m4_undefine([[def]])m4_dnl" to end of buffer.
188 * @param buf A buffer as a list of strings.
189 * @param def The m4 symbol to undefine.
192 struct Buf
*buf_m4_undefine (struct Buf
*buf
, const char* def
)
194 const char * fmt
= "m4_undefine( [[%s]])m4_dnl\n";
198 str
= (char*)flex_alloc(strsz
= strlen(fmt
) + strlen(def
) + 2);
200 flexfatal (_("Allocation of buffer for m4 undef failed"));
202 snprintf(str
, strsz
, fmt
, def
);
203 buf_append(buf
, &str
, 1);
207 /* create buf with 0 elements, each of size elem_size. */
208 void buf_init (buf
, elem_size
)
212 buf
->elts
= (void *) 0;
214 buf
->elt_size
= elem_size
;
219 void buf_destroy (buf
)
222 if (buf
&& buf
->elts
)
223 flex_free (buf
->elts
);
224 buf
->elts
= (void *) 0;
228 /* appends ptr[] to buf, grow if necessary.
229 * n_elem is number of elements in ptr[], NOT bytes.
231 * We grow by mod(512) boundaries.
234 struct Buf
*buf_append (buf
, ptr
, n_elem
)
241 if (!ptr
|| n_elem
== 0)
244 /* May need to alloc more. */
245 if (n_elem
+ buf
->nelts
> buf
->nmax
) {
247 /* exact amount needed... */
248 n_alloc
= (n_elem
+ buf
->nelts
) * buf
->elt_size
;
250 /* ...plus some extra */
251 if (((n_alloc
* buf
->elt_size
) % 512) != 0
252 && buf
->elt_size
< 512)
255 ((n_alloc
* buf
->elt_size
) % 512)) /
260 allocate_array (n_alloc
, buf
->elt_size
);
263 reallocate_array (buf
->elts
, n_alloc
,
269 memcpy ((char *) buf
->elts
+ buf
->nelts
* buf
->elt_size
, ptr
,
270 n_elem
* buf
->elt_size
);
271 buf
->nelts
+= n_elem
;
276 /* vim:set tabstop=8 softtabstop=4 shiftwidth=4: */