3 # Copyright (C) 2003 Free Software Foundation, Inc.
4 # Contributed by Neil Booth, May 2003.
6 # This program is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by the
8 # Free Software Foundation; either version 2, or (at your option) any
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 # Usage: opts.sh outfile.c outfile.h file1.opt [file2.opt, ...]
22 # Always operate in the C locale.
26 export LANG LANGUAGE LC_ALL
28 # Set AWK if environment has not already set it.
31 SORT
=sort # Could be /bin/sort or /usr/bin/sort
36 # Must unset, so that RS="" works in gawk 3.0-3.1.1 (possibly earlier too)
37 # Appears to be a gawk bug, RS="" is not an extension
41 BEGIN{ RS=""; FS="\n" }
42 # Ignore comments and blank lines
43 /^[ \t]*(;|$)/ { next }
44 /^[^ \t]/ { gsub ("\n", "\034", $0); print }
45 ' "$@" |
${SORT} |
${AWK} '
46 function switch_flags (flags, result)
50 for (j = 0; j < n_langs; j++) {
51 regex = " " langs[j] " "
52 gsub ( "\\+", "\\+", regex )
54 result = result " | " macros[j]
56 if (flags ~ " Common ") result = result " | CL_COMMON"
57 if (flags ~ " Joined ") result = result " | CL_JOINED"
58 if (flags ~ " JoinedOrMissing ") \
59 result = result " | CL_JOINED | CL_MISSING_OK"
60 if (flags ~ " Separate ") result = result " | CL_SEPARATE"
61 if (flags ~ " RejectNegative ") result = result " | CL_REJECT_NEGATIVE"
62 if (flags ~ " UInteger ") result = result " | CL_UINTEGER"
63 sub( "^0 \\| ", "", result )
73 # Collect the text and flags of each option into an array
75 if ($1 == "Language") {
85 # Dump out an enumeration into a .h file, and an array of options into a
86 # C file. Combine the flags of duplicate options.
88 c_file = "'${C_FILE}'"
89 h_file = "'${H_FILE}'"
92 print "/* This file is auto-generated by opts.sh. */\n" > h_file
93 for (i = 0; i < n_langs; i++) {
94 macros[i] = "CL_" langs[i]
95 gsub( "[^A-Za-z0-9_]", "X", macros[i] )
96 s = substr(" ", length (macros[i]))
97 print "#define " macros[i] s " (1 << " i ")" >> h_file
99 print "\nenum opt_code\n{" >> h_file
101 print "/* This file is auto-generated by opts.sh. */\n" > c_file
102 print "#include \"" h_file "\"" >> c_file
103 print "#include \"opts.h\"\n" >> c_file
104 print "const unsigned int cl_options_count = N_OPTS;\n" >> c_file
105 print "const struct cl_option cl_options[] =\n{" >> c_file
107 for (i = 0; i < n_opts; i++) {
108 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) {
109 flags[i + 1] = flags[i] " " flags[i + 1];
113 enum = "OPT_" opts[i]
114 gsub( "[^A-Za-z0-9]", "_", enum)
115 s = substr(" ", length (opts[i]))
119 printf(" %s,%s/* -%s */\n", enum, s, opts[i]) >> h_file
120 printf(" { \"%s\", %u, %s }%s\n", opts[i], \
121 length(opts[i]), switch_flags(flags[i]), comma) >> c_file
124 print " N_OPTS\n};" >> h_file