
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1176 ec53bebd-3082-4978-b11e-865c3cabbd6b
92 lines
2.3 KiB
Awk
92 lines
2.3 KiB
Awk
#
|
|
# $Id$
|
|
#
|
|
|
|
$1 == "error_table" {
|
|
name = $2
|
|
base = 0
|
|
for(i = 1; i <= 4; i++){
|
|
base = base * 64 + index("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_", substr(name, i, 1))
|
|
}
|
|
base *= 256
|
|
if(base >= 2147483648){ # 0x80000000
|
|
base = -(4294967295 - base + 1) # 0xffffffff
|
|
}
|
|
sub("\\..*$", "", name)
|
|
# for normal awk:
|
|
# split(name, foo, "\\.")
|
|
# name = foo[1]
|
|
c_file = name "_err.c"
|
|
h_file = name "_err.h"
|
|
number = 0
|
|
print "/* Generated from " FILENAME " */" > c_file
|
|
print "#include <krb5_locl.h>" > c_file
|
|
# print "#include \"" h_file "\"\n" > c_file
|
|
print "" > c_file
|
|
print "static const char *text[] = {" > c_file
|
|
|
|
print "/* Generated from " FILENAME " */" > h_file
|
|
# print "#include <krb5.h>" > h_file
|
|
print "" > h_file
|
|
print "void initialize_" name "_error_table(struct error_list**);" > h_file
|
|
print "" > h_file
|
|
print "enum " name "_error_number{" > h_file
|
|
print "\tERROR_TABLE_BASE_" name " = " base "," > h_file
|
|
next
|
|
}
|
|
|
|
function end_file(c_file, h_file){
|
|
print "\tNULL" > c_file
|
|
print "};" > c_file
|
|
print "" > c_file
|
|
print "static struct error_table et = { text, " base ", " number " };" > c_file
|
|
print "static struct error_list " name "_link = { 0, 0 };" > c_file
|
|
|
|
print "void initialize_" name "_error_table (struct error_list **list) {" > c_file
|
|
print "\tif (!" name "_link.table) {" > c_file
|
|
print "\t\t" name "_link.next = *list;" > c_file
|
|
print "\t\t" name "_link.table = &et;" > c_file
|
|
print "\t\t*list = &" name "_link;" > c_file
|
|
print "\t}" > c_file
|
|
print "}" > c_file
|
|
close(c_file)
|
|
print "\t" name "_num_errors = " number > h_file
|
|
print "};" > h_file
|
|
close(h_file)
|
|
}
|
|
|
|
function print_line(name, string, value) {
|
|
printf("\t%s = %d,\n", name, value + base) > h_file
|
|
printf("\t/* %3d */ %s,\n", value, string) > c_file
|
|
}
|
|
|
|
$1 == "index" {
|
|
newnumber = $2
|
|
for(; number < newnumber; number++)
|
|
print_line(toupper(name)"_ERROR_" number,
|
|
"\"Reserved error number " number "\"", number)
|
|
next
|
|
}
|
|
$1 == "prefix" {
|
|
prefix = $2
|
|
if(prefix != "")
|
|
prefix = prefix "_"
|
|
next
|
|
}
|
|
|
|
$1 == "error_code" {
|
|
code = $0
|
|
sub("error_code[ \t]+", "", code)
|
|
sub(",.*", "", code)
|
|
code = prefix code
|
|
string = $0
|
|
sub("[^,]*,", "", string)
|
|
sub("[ \t]*", "", string)
|
|
print_line(code, string, number)
|
|
number++;
|
|
next
|
|
}
|
|
END {
|
|
end_file(c_file, h_file)
|
|
}
|