123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- # Copyright 2010, 2011, 2012, 2013, 2014, 2015
- # Free Software Foundation, Inc.
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 3 of the License,
- # or (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- #######################################################
- # From gawk manual
- # ord.awk --- do ord and chr
- # Global identifiers:
- # _ord_: numerical values indexed by characters
- # _ord_init: function to initialize _ord_
- BEGIN { _ord_init() }
- function _ord_init( low, high, i, t)
- {
- low = sprintf("%c", 7) # BEL is ascii 7
- if (low == "\a") { # regular ascii
- low = 0
- high = 127
- } else if (sprintf("%c", 128 + 7) == "\a") {
- # ascii, mark parity
- low = 128
- high = 255
- } else { # ebcdic(!)
- low = 0
- high = 255
- }
- for (i = low; i <= high; i++) {
- t = sprintf("%c", i)
- _ord_[t] = i
- }
- }
- function ord(str, c)
- {
- # only first character is of interest
- c = substr(str, 1, 1)
- return _ord_[c]
- }
- #######################################################
- BEGIN {
- bs_escapes["\\n"] = "\n"
- bs_escapes["\\f"] = "\f"
- bs_escapes["\\t"] = "\t"
- bs_escapes["\\\\"] = "\\"
- bs_escapes["\\\""] = "\""
- bs_escapes["\\x20"] = " "
- for (v in bs_escapes) {
- inv_bs_escapes[bs_escapes[v]] = v
- }
- print "/* This file automatically generated by command_data.awk */"
- print
- print "/* Useful aliases */"
- print "#define CM_hex_09 CM_TAB"
- print "#define CM_hex_0a CM_NEWLINE"
- print "#define CM_hex_20 CM_SPACE"
- print "#define CM_hex_21 CM_EXCLAMATION_MARK"
- print "#define CM_hex_22 CM_POUND_SIGN"
- print "#define CM_hex_27 CM_APOSTROPHE"
- print "#define CM_hex_2a CM_ASTERISK"
- print "#define CM_hex_2c CM_COMMA"
- print "#define CM_hex_2d CM_HYPHEN"
- print "#define CM_hex_2e CM_FULL_STOP"
- print "#define CM_hex_2f CM_SLASH"
- print "#define CM_hex_3a CM_COLON"
- print "#define CM_hex_3d CM_EQUALS"
- print "#define CM_hex_3f CM_QUESTION_MARK"
- print "#define CM_hex_40 CM_AT_SIGN"
- print "#define CM_hex_5c CM_BACKSLASH"
- print "#define CM_hex_5e CM_CIRCUMFLEX"
- print "#define CM_hex_60 CM_BACKQUOTE"
- print "#define CM_hex_7b CM_OPEN_BRACE"
- print "#define CM_hex_7c CM_VERTICAL_BAR"
- print "#define CM_hex_7d CM_CLOSE_BRACE"
- print "#define CM_hex_7e CM_TILDE"
- print
- print "enum command_id {"
- print "CM_NONE,"
- print
- }
- !/^$/ && !/^#/ {
- if ($1 in bs_escapes) {
- c = bs_escapes[$1]
- } else {
- c = $1
- }
- commands[c] = $2
- data[c] = $3
- }
- END {
- print "COMMAND builtin_command_data[] = {" >"command_data.c"
- print "0, 0, 0," >"command_data.c"
- # We want the output sorted so we can use bsearch
- PROCINFO["sorted_in"]="@ind_str_asc"
- for (c in commands) {
- # Single character commands with unusual names
- if (c ~ /^[^[:alpha:]]$/) {
- if (c in inv_bs_escapes) {
- c2 = inv_bs_escapes[c]
- } else
- c2 = c
- printf "CM_hex_%02x,\n", ord(c)
- } else {
- c2 = c
- print "CM_" c ","
- }
- if (commands[c] != "") {
- flags = "CF_" commands[c]
- gsub (/,/, " | CF_", flags)
- } else {
- flags = "0"
- }
- if (data[c] != "") {
- command_data = data[c]
- } else {
- command_data = "0"
- }
- print "\"" c2 "\", " flags ", " command_data "," > "command_data.c"
- }
- print "};" >"command_data.c"
- print "};"
- }
|