indent(1): Support "f" and "F" floating constant suffixes.
[freebsd-src.git] / contrib / flex / misc.c
blobf9cb3775e7ad8a84e1c9382ab7eeef5adb4e1c81
1 /* misc - miscellaneous flex routines */
3 /* Copyright (c) 1990 The Regents of the University of California. */
4 /* All rights reserved. */
6 /* This code is derived from software contributed to Berkeley by */
7 /* Vern Paxson. */
9 /* The United States Government has rights in this work pursuant */
10 /* to contract no. DE-AC03-76SF00098 between the United States */
11 /* Department of Energy and the University of California. */
13 /* This file is part of flex. */
15 /* Redistribution and use in source and binary forms, with or without */
16 /* modification, are permitted provided that the following conditions */
17 /* are met: */
19 /* 1. Redistributions of source code must retain the above copyright */
20 /* notice, this list of conditions and the following disclaimer. */
21 /* 2. Redistributions in binary form must reproduce the above copyright */
22 /* notice, this list of conditions and the following disclaimer in the */
23 /* documentation and/or other materials provided with the distribution. */
25 /* Neither the name of the University nor the names of its contributors */
26 /* may be used to endorse or promote products derived from this software */
27 /* without specific prior written permission. */
29 /* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
30 /* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
31 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
32 /* PURPOSE. */
34 #include "flexdef.h"
35 #include "tables.h"
37 #define CMD_IF_TABLES_SER "%if-tables-serialization"
38 #define CMD_TABLES_YYDMAP "%tables-yydmap"
39 #define CMD_DEFINE_YYTABLES "%define-yytables"
40 #define CMD_IF_CPP_ONLY "%if-c++-only"
41 #define CMD_IF_C_ONLY "%if-c-only"
42 #define CMD_IF_C_OR_CPP "%if-c-or-c++"
43 #define CMD_NOT_FOR_HEADER "%not-for-header"
44 #define CMD_OK_FOR_HEADER "%ok-for-header"
45 #define CMD_PUSH "%push"
46 #define CMD_POP "%pop"
47 #define CMD_IF_REENTRANT "%if-reentrant"
48 #define CMD_IF_NOT_REENTRANT "%if-not-reentrant"
49 #define CMD_IF_BISON_BRIDGE "%if-bison-bridge"
50 #define CMD_IF_NOT_BISON_BRIDGE "%if-not-bison-bridge"
51 #define CMD_ENDIF "%endif"
53 /* we allow the skeleton to push and pop. */
54 struct sko_state {
55 bool dc; /**< do_copy */
57 static struct sko_state *sko_stack=0;
58 static int sko_len=0,sko_sz=0;
59 static void sko_push(bool dc)
61 if(!sko_stack){
62 sko_sz = 1;
63 sko_stack = (struct sko_state*)flex_alloc(sizeof(struct sko_state)*sko_sz);
64 if (!sko_stack)
65 flexfatal(_("allocation of sko_stack failed"));
66 sko_len = 0;
68 if(sko_len >= sko_sz){
69 sko_sz *= 2;
70 sko_stack = (struct sko_state*)flex_realloc(sko_stack,sizeof(struct sko_state)*sko_sz);
73 /* initialize to zero and push */
74 sko_stack[sko_len].dc = dc;
75 sko_len++;
77 static void sko_peek(bool *dc)
79 if(sko_len <= 0)
80 flex_die("peek attempt when sko stack is empty");
81 if(dc)
82 *dc = sko_stack[sko_len-1].dc;
84 static void sko_pop(bool* dc)
86 sko_peek(dc);
87 sko_len--;
88 if(sko_len < 0)
89 flex_die("popped too many times in skeleton.");
92 /* Append "#define defname value\n" to the running buffer. */
93 void action_define (defname, value)
94 const char *defname;
95 int value;
97 char buf[MAXLINE];
98 char *cpy;
100 if ((int) strlen (defname) > MAXLINE / 2) {
101 format_pinpoint_message (_
102 ("name \"%s\" ridiculously long"),
103 defname);
104 return;
107 snprintf (buf, sizeof(buf), "#define %s %d\n", defname, value);
108 add_action (buf);
110 /* track #defines so we can undef them when we're done. */
111 cpy = copy_string (defname);
112 buf_append (&defs_buf, &cpy, 1);
116 #ifdef notdef
117 /** Append "m4_define([[defname]],[[value]])m4_dnl\n" to the running buffer.
118 * @param defname The macro name.
119 * @param value The macro value, can be NULL, which is the same as the empty string.
121 void action_m4_define (const char *defname, const char * value)
123 char buf[MAXLINE];
125 flexfatal ("DO NOT USE THIS FUNCTION!");
127 if ((int) strlen (defname) > MAXLINE / 2) {
128 format_pinpoint_message (_
129 ("name \"%s\" ridiculously long"),
130 defname);
131 return;
134 snprintf (buf, sizeof(buf), "m4_define([[%s]],[[%s]])m4_dnl\n", defname, value?value:"");
135 add_action (buf);
137 #endif
139 /* Append "new_text" to the running buffer. */
140 void add_action (new_text)
141 const char *new_text;
143 int len = strlen (new_text);
145 while (len + action_index >= action_size - 10 /* slop */ ) {
146 int new_size = action_size * 2;
148 if (new_size <= 0)
149 /* Increase just a little, to try to avoid overflow
150 * on 16-bit machines.
152 action_size += action_size / 8;
153 else
154 action_size = new_size;
156 action_array =
157 reallocate_character_array (action_array,
158 action_size);
161 strcpy (&action_array[action_index], new_text);
163 action_index += len;
167 /* allocate_array - allocate memory for an integer array of the given size */
169 void *allocate_array (size, element_size)
170 int size;
171 size_t element_size;
173 void *mem;
174 size_t num_bytes = element_size * size;
176 mem = flex_alloc (num_bytes);
177 if (!mem)
178 flexfatal (_
179 ("memory allocation failed in allocate_array()"));
181 return mem;
185 /* all_lower - true if a string is all lower-case */
187 int all_lower (str)
188 char *str;
190 while (*str) {
191 if (!isascii ((Char) * str) || !islower ((Char) * str))
192 return 0;
193 ++str;
196 return 1;
200 /* all_upper - true if a string is all upper-case */
202 int all_upper (str)
203 char *str;
205 while (*str) {
206 if (!isascii ((Char) * str) || !isupper ((Char) * str))
207 return 0;
208 ++str;
211 return 1;
215 /* intcmp - compares two integers for use by qsort. */
217 int intcmp (const void *a, const void *b)
219 return *(const int *) a - *(const int *) b;
223 /* check_char - checks a character to make sure it's within the range
224 * we're expecting. If not, generates fatal error message
225 * and exits.
228 void check_char (c)
229 int c;
231 if (c >= CSIZE)
232 lerrsf (_("bad character '%s' detected in check_char()"),
233 readable_form (c));
235 if (c >= csize)
236 lerrsf (_
237 ("scanner requires -8 flag to use the character %s"),
238 readable_form (c));
243 /* clower - replace upper-case letter to lower-case */
245 Char clower (c)
246 int c;
248 return (Char) ((isascii (c) && isupper (c)) ? tolower (c) : c);
252 /* copy_string - returns a dynamically allocated copy of a string */
254 char *copy_string (str)
255 const char *str;
257 const char *c1;
258 char *c2;
259 char *copy;
260 unsigned int size;
262 /* find length */
263 for (c1 = str; *c1; ++c1) ;
265 size = (c1 - str + 1) * sizeof (char);
267 copy = (char *) flex_alloc (size);
269 if (copy == NULL)
270 flexfatal (_("dynamic memory failure in copy_string()"));
272 for (c2 = copy; (*c2++ = *str++) != 0;) ;
274 return copy;
278 /* copy_unsigned_string -
279 * returns a dynamically allocated copy of a (potentially) unsigned string
282 Char *copy_unsigned_string (str)
283 Char *str;
285 Char *c;
286 Char *copy;
288 /* find length */
289 for (c = str; *c; ++c) ;
291 copy = allocate_Character_array (c - str + 1);
293 for (c = copy; (*c++ = *str++) != 0;) ;
295 return copy;
299 /* cclcmp - compares two characters for use by qsort with '\0' sorting last. */
301 int cclcmp (const void *a, const void *b)
303 if (!*(const Char *) a)
304 return 1;
305 else
306 if (!*(const Char *) b)
307 return - 1;
308 else
309 return *(const Char *) a - *(const Char *) b;
313 /* dataend - finish up a block of data declarations */
315 void dataend ()
317 /* short circuit any output */
318 if (gentables) {
320 if (datapos > 0)
321 dataflush ();
323 /* add terminator for initialization; { for vi */
324 outn (" } ;\n");
326 dataline = 0;
327 datapos = 0;
331 /* dataflush - flush generated data statements */
333 void dataflush ()
335 /* short circuit any output */
336 if (!gentables)
337 return;
339 outc ('\n');
341 if (++dataline >= NUMDATALINES) {
342 /* Put out a blank line so that the table is grouped into
343 * large blocks that enable the user to find elements easily.
345 outc ('\n');
346 dataline = 0;
349 /* Reset the number of characters written on the current line. */
350 datapos = 0;
354 /* flexerror - report an error message and terminate */
356 void flexerror (msg)
357 const char *msg;
359 fprintf (stderr, "%s: %s\n", program_name, msg);
360 flexend (1);
364 /* flexfatal - report a fatal error message and terminate */
366 void flexfatal (msg)
367 const char *msg;
369 fprintf (stderr, _("%s: fatal internal error, %s\n"),
370 program_name, msg);
371 FLEX_EXIT (1);
375 /* htoi - convert a hexadecimal digit string to an integer value */
377 int htoi (str)
378 Char str[];
380 unsigned int result;
382 (void) sscanf ((char *) str, "%x", &result);
384 return result;
388 /* lerrif - report an error message formatted with one integer argument */
390 void lerrif (msg, arg)
391 const char *msg;
392 int arg;
394 char errmsg[MAXLINE];
396 snprintf (errmsg, sizeof(errmsg), msg, arg);
397 flexerror (errmsg);
401 /* lerrsf - report an error message formatted with one string argument */
403 void lerrsf (msg, arg)
404 const char *msg, arg[];
406 char errmsg[MAXLINE];
408 snprintf (errmsg, sizeof(errmsg)-1, msg, arg);
409 errmsg[sizeof(errmsg)-1] = 0; /* ensure NULL termination */
410 flexerror (errmsg);
414 /* lerrsf_fatal - as lerrsf, but call flexfatal */
416 void lerrsf_fatal (msg, arg)
417 const char *msg, arg[];
419 char errmsg[MAXLINE];
421 snprintf (errmsg, sizeof(errmsg)-1, msg, arg);
422 errmsg[sizeof(errmsg)-1] = 0; /* ensure NULL termination */
423 flexfatal (errmsg);
427 /* line_directive_out - spit out a "#line" statement */
429 void line_directive_out (output_file, do_infile)
430 FILE *output_file;
431 int do_infile;
433 char directive[MAXLINE], filename[MAXLINE];
434 char *s1, *s2, *s3;
435 static const char *line_fmt = "#line %d \"%s\"\n";
437 if (!gen_line_dirs)
438 return;
440 s1 = do_infile ? infilename : "M4_YY_OUTFILE_NAME";
442 if (do_infile && !s1)
443 s1 = "<stdin>";
445 s2 = filename;
446 s3 = &filename[sizeof (filename) - 2];
448 while (s2 < s3 && *s1) {
449 if (*s1 == '\\')
450 /* Escape the '\' */
451 *s2++ = '\\';
453 *s2++ = *s1++;
456 *s2 = '\0';
458 if (do_infile)
459 snprintf (directive, sizeof(directive), line_fmt, linenum, filename);
460 else {
461 snprintf (directive, sizeof(directive), line_fmt, 0, filename);
464 /* If output_file is nil then we should put the directive in
465 * the accumulated actions.
467 if (output_file) {
468 fputs (directive, output_file);
470 else
471 add_action (directive);
475 /* mark_defs1 - mark the current position in the action array as
476 * representing where the user's section 1 definitions end
477 * and the prolog begins
479 void mark_defs1 ()
481 defs1_offset = 0;
482 action_array[action_index++] = '\0';
483 action_offset = prolog_offset = action_index;
484 action_array[action_index] = '\0';
488 /* mark_prolog - mark the current position in the action array as
489 * representing the end of the action prolog
491 void mark_prolog ()
493 action_array[action_index++] = '\0';
494 action_offset = action_index;
495 action_array[action_index] = '\0';
499 /* mk2data - generate a data statement for a two-dimensional array
501 * Generates a data statement initializing the current 2-D array to "value".
503 void mk2data (value)
504 int value;
506 /* short circuit any output */
507 if (!gentables)
508 return;
510 if (datapos >= NUMDATAITEMS) {
511 outc (',');
512 dataflush ();
515 if (datapos == 0)
516 /* Indent. */
517 out (" ");
519 else
520 outc (',');
522 ++datapos;
524 out_dec ("%5d", value);
528 /* mkdata - generate a data statement
530 * Generates a data statement initializing the current array element to
531 * "value".
533 void mkdata (value)
534 int value;
536 /* short circuit any output */
537 if (!gentables)
538 return;
540 if (datapos >= NUMDATAITEMS) {
541 outc (',');
542 dataflush ();
545 if (datapos == 0)
546 /* Indent. */
547 out (" ");
548 else
549 outc (',');
551 ++datapos;
553 out_dec ("%5d", value);
557 /* myctoi - return the integer represented by a string of digits */
559 int myctoi (array)
560 const char *array;
562 int val = 0;
564 (void) sscanf (array, "%d", &val);
566 return val;
570 /* myesc - return character corresponding to escape sequence */
572 Char myesc (array)
573 Char array[];
575 Char c, esc_char;
577 switch (array[1]) {
578 case 'b':
579 return '\b';
580 case 'f':
581 return '\f';
582 case 'n':
583 return '\n';
584 case 'r':
585 return '\r';
586 case 't':
587 return '\t';
589 #if defined (__STDC__)
590 case 'a':
591 return '\a';
592 case 'v':
593 return '\v';
594 #else
595 case 'a':
596 return '\007';
597 case 'v':
598 return '\013';
599 #endif
601 case '0':
602 case '1':
603 case '2':
604 case '3':
605 case '4':
606 case '5':
607 case '6':
608 case '7':
609 { /* \<octal> */
610 int sptr = 1;
612 while (isascii (array[sptr]) &&
613 isdigit (array[sptr]))
614 /* Don't increment inside loop control
615 * because if isdigit() is a macro it might
616 * expand into multiple increments ...
618 ++sptr;
620 c = array[sptr];
621 array[sptr] = '\0';
623 esc_char = otoi (array + 1);
625 array[sptr] = c;
627 return esc_char;
630 case 'x':
631 { /* \x<hex> */
632 int sptr = 2;
634 while (isascii (array[sptr]) &&
635 isxdigit (array[sptr]))
636 /* Don't increment inside loop control
637 * because if isdigit() is a macro it might
638 * expand into multiple increments ...
640 ++sptr;
642 c = array[sptr];
643 array[sptr] = '\0';
645 esc_char = htoi (array + 2);
647 array[sptr] = c;
649 return esc_char;
652 default:
653 return array[1];
658 /* otoi - convert an octal digit string to an integer value */
660 int otoi (str)
661 Char str[];
663 unsigned int result;
665 (void) sscanf ((char *) str, "%o", &result);
666 return result;
670 /* out - various flavors of outputing a (possibly formatted) string for the
671 * generated scanner, keeping track of the line count.
674 void out (str)
675 const char *str;
677 fputs (str, stdout);
680 void out_dec (fmt, n)
681 const char *fmt;
682 int n;
684 fprintf (stdout, fmt, n);
687 void out_dec2 (fmt, n1, n2)
688 const char *fmt;
689 int n1, n2;
691 fprintf (stdout, fmt, n1, n2);
694 void out_hex (fmt, x)
695 const char *fmt;
696 unsigned int x;
698 fprintf (stdout, fmt, x);
701 void out_str (fmt, str)
702 const char *fmt, str[];
704 fprintf (stdout,fmt, str);
707 void out_str3 (fmt, s1, s2, s3)
708 const char *fmt, s1[], s2[], s3[];
710 fprintf (stdout,fmt, s1, s2, s3);
713 void out_str_dec (fmt, str, n)
714 const char *fmt, str[];
715 int n;
717 fprintf (stdout,fmt, str, n);
720 void outc (c)
721 int c;
723 fputc (c, stdout);
726 void outn (str)
727 const char *str;
729 fputs (str,stdout);
730 fputc('\n',stdout);
733 /** Print "m4_define( [[def]], [[val]])m4_dnl\n".
734 * @param def The m4 symbol to define.
735 * @param val The definition; may be NULL.
736 * @return buf
738 void out_m4_define (const char* def, const char* val)
740 const char * fmt = "m4_define( [[%s]], [[%s]])m4_dnl\n";
741 fprintf(stdout, fmt, def, val?val:"");
745 /* readable_form - return the human-readable form of a character
747 * The returned string is in static storage.
750 char *readable_form (c)
751 int c;
753 static char rform[10];
755 if ((c >= 0 && c < 32) || c >= 127) {
756 switch (c) {
757 case '\b':
758 return "\\b";
759 case '\f':
760 return "\\f";
761 case '\n':
762 return "\\n";
763 case '\r':
764 return "\\r";
765 case '\t':
766 return "\\t";
768 #if defined (__STDC__)
769 case '\a':
770 return "\\a";
771 case '\v':
772 return "\\v";
773 #endif
775 default:
776 snprintf (rform, sizeof(rform), "\\%.3o", (unsigned int) c);
777 return rform;
781 else if (c == ' ')
782 return "' '";
784 else {
785 rform[0] = c;
786 rform[1] = '\0';
788 return rform;
793 /* reallocate_array - increase the size of a dynamic array */
795 void *reallocate_array (array, size, element_size)
796 void *array;
797 int size;
798 size_t element_size;
800 void *new_array;
801 size_t num_bytes = element_size * size;
803 new_array = flex_realloc (array, num_bytes);
804 if (!new_array)
805 flexfatal (_("attempt to increase array size failed"));
807 return new_array;
811 /* skelout - write out one section of the skeleton file
813 * Description
814 * Copies skelfile or skel array to stdout until a line beginning with
815 * "%%" or EOF is found.
817 void skelout ()
819 char buf_storage[MAXLINE];
820 char *buf = buf_storage;
821 bool do_copy = true;
823 /* "reset" the state by clearing the buffer and pushing a '1' */
824 if(sko_len > 0)
825 sko_peek(&do_copy);
826 sko_len = 0;
827 sko_push(do_copy=true);
830 /* Loop pulling lines either from the skelfile, if we're using
831 * one, or from the skel[] array.
833 while (skelfile ?
834 (fgets (buf, MAXLINE, skelfile) != NULL) :
835 ((buf = (char *) skel[skel_ind++]) != 0)) {
837 if (skelfile)
838 chomp (buf);
840 /* copy from skel array */
841 if (buf[0] == '%') { /* control line */
842 /* print the control line as a comment. */
843 if (ddebug && buf[1] != '#') {
844 if (buf[strlen (buf) - 1] == '\\')
845 out_str ("/* %s */\\\n", buf);
846 else
847 out_str ("/* %s */\n", buf);
850 /* We've been accused of using cryptic markers in the skel.
851 * So we'll use emacs-style-hyphenated-commands.
852 * We might consider a hash if this if-else-if-else
853 * chain gets too large.
855 #define cmd_match(s) (strncmp(buf,(s),strlen(s))==0)
857 if (buf[1] == '%') {
858 /* %% is a break point for skelout() */
859 return;
861 else if (cmd_match (CMD_PUSH)){
862 sko_push(do_copy);
863 if(ddebug){
864 out_str("/*(state = (%s) */",do_copy?"true":"false");
866 out_str("%s\n", buf[strlen (buf) - 1] =='\\' ? "\\" : "");
868 else if (cmd_match (CMD_POP)){
869 sko_pop(&do_copy);
870 if(ddebug){
871 out_str("/*(state = (%s) */",do_copy?"true":"false");
873 out_str("%s\n", buf[strlen (buf) - 1] =='\\' ? "\\" : "");
875 else if (cmd_match (CMD_IF_REENTRANT)){
876 sko_push(do_copy);
877 do_copy = reentrant && do_copy;
879 else if (cmd_match (CMD_IF_NOT_REENTRANT)){
880 sko_push(do_copy);
881 do_copy = !reentrant && do_copy;
883 else if (cmd_match(CMD_IF_BISON_BRIDGE)){
884 sko_push(do_copy);
885 do_copy = bison_bridge_lval && do_copy;
887 else if (cmd_match(CMD_IF_NOT_BISON_BRIDGE)){
888 sko_push(do_copy);
889 do_copy = !bison_bridge_lval && do_copy;
891 else if (cmd_match (CMD_ENDIF)){
892 sko_pop(&do_copy);
894 else if (cmd_match (CMD_IF_TABLES_SER)) {
895 do_copy = do_copy && tablesext;
897 else if (cmd_match (CMD_TABLES_YYDMAP)) {
898 if (tablesext && yydmap_buf.elts)
899 outn ((char *) (yydmap_buf.elts));
901 else if (cmd_match (CMD_DEFINE_YYTABLES)) {
902 out_str("#define YYTABLES_NAME \"%s\"\n",
903 tablesname?tablesname:"yytables");
905 else if (cmd_match (CMD_IF_CPP_ONLY)) {
906 /* only for C++ */
907 sko_push(do_copy);
908 do_copy = C_plus_plus;
910 else if (cmd_match (CMD_IF_C_ONLY)) {
911 /* %- only for C */
912 sko_push(do_copy);
913 do_copy = !C_plus_plus;
915 else if (cmd_match (CMD_IF_C_OR_CPP)) {
916 /* %* for C and C++ */
917 sko_push(do_copy);
918 do_copy = true;
920 else if (cmd_match (CMD_NOT_FOR_HEADER)) {
921 /* %c begin linkage-only (non-header) code. */
922 OUT_BEGIN_CODE ();
924 else if (cmd_match (CMD_OK_FOR_HEADER)) {
925 /* %e end linkage-only code. */
926 OUT_END_CODE ();
928 else if (buf[1] == '#') {
929 /* %# a comment in the skel. ignore. */
931 else {
932 flexfatal (_("bad line in skeleton file"));
936 else if (do_copy)
937 outn (buf);
938 } /* end while */
942 /* transition_struct_out - output a yy_trans_info structure
944 * outputs the yy_trans_info structure with the two elements, element_v and
945 * element_n. Formats the output with spaces and carriage returns.
948 void transition_struct_out (element_v, element_n)
949 int element_v, element_n;
952 /* short circuit any output */
953 if (!gentables)
954 return;
956 out_dec2 (" {%4d,%4d },", element_v, element_n);
958 datapos += TRANS_STRUCT_PRINT_LENGTH;
960 if (datapos >= 79 - TRANS_STRUCT_PRINT_LENGTH) {
961 outc ('\n');
963 if (++dataline % 10 == 0)
964 outc ('\n');
966 datapos = 0;
971 /* The following is only needed when building flex's parser using certain
972 * broken versions of bison.
974 void *yy_flex_xmalloc (size)
975 int size;
977 void *result = flex_alloc ((size_t) size);
979 if (!result)
980 flexfatal (_
981 ("memory allocation failed in yy_flex_xmalloc()"));
983 return result;
987 /* zero_out - set a region of memory to 0
989 * Sets region_ptr[0] through region_ptr[size_in_bytes - 1] to zero.
992 void zero_out (region_ptr, size_in_bytes)
993 char *region_ptr;
994 size_t size_in_bytes;
996 char *rp, *rp_end;
998 rp = region_ptr;
999 rp_end = region_ptr + size_in_bytes;
1001 while (rp < rp_end)
1002 *rp++ = 0;
1005 /* Remove all '\n' and '\r' characters, if any, from the end of str.
1006 * str can be any null-terminated string, or NULL.
1007 * returns str. */
1008 char *chomp (str)
1009 char *str;
1011 char *p = str;
1013 if (!str || !*str) /* s is null or empty string */
1014 return str;
1016 /* find end of string minus one */
1017 while (*p)
1018 ++p;
1019 --p;
1021 /* eat newlines */
1022 while (p >= str && (*p == '\r' || *p == '\n'))
1023 *p-- = 0;
1024 return str;