• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libgpg-error-1.10/src/
1# mkerrcodes.awk
2# Copyright (C) 2004, 2005 g10 Code GmbH
3# 
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License as
6# published by the Free Software Foundation; either version 2 of
7# the License, or (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12# General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17#
18# As a special exception, g10 Code GmbH gives unlimited permission to
19# copy, distribute and modify the C source files that are the output
20# of mkerrcodes.awk.  You need not follow the terms of the GNU General
21# Public License when using or distributing such scripts, even though
22# portions of the text of mkerrcodes.awk appear in them.  The GNU
23# General Public License (GPL) does govern all other use of the material
24# that constitutes the mkerrcodes.awk program.
25#
26# Certain portions of the mkerrcodes.awk source text are designed to be
27# copied (in certain cases, depending on the input) into the output of
28# mkerrcodes.awk.  We call these the "data" portions.  The rest of the
29# mkerrcodes.awk source text consists of comments plus executable code
30# that decides which of the data portions to output in any given case.
31# We call these comments and executable code the "non-data" portions.
32# mkerrcodes.h never copies any of the non-data portions into its output.
33#
34# This special exception to the GPL applies to versions of mkerrcodes.awk
35# released by g10 Code GmbH.  When you make and distribute a modified version
36# of mkerrcodes.awk, you may extend this special exception to the GPL to
37# apply to your modified version as well, *unless* your modified version
38# has the potential to copy into its output some of the text that was the
39# non-data portion of the version that you started with.  (In other words,
40# unless your change moves or copies text from the non-data portions to the
41# data portions.)  If your modification has such potential, you must delete
42# any notice of this special exception to the GPL from your modified version.
43
44# This script outputs an intermediate file that contains the following output:
45# static struct
46#   {
47#     int err;
48#     const char *err_sym;
49#   } err_table[] =
50# {
51#   { 7, "GPG_ERR_E2BIG" },
52#   [...]
53# };
54#
55# The input file is a list of possible system errors, followed by a GPG_ERR_* name:
56#
57# 7 GPG_ERR_E2BIG
58#
59# Comments (starting with # and ending at the end of the line) are removed,
60# as is trailing whitespace.
61
62BEGIN {
63  FS="[ \t]+GPG_ERR_";
64  print "/* Output of mkerrcodes.awk.  DO NOT EDIT.  */";
65  print "";
66  header = 1;
67}
68
69/^#/ { next; }
70
71header {
72  if (! /^[ \t]*$/)
73    {
74      header = 0;
75
76      print "static struct";
77      print "  {";
78      print "    int err;";
79      print "    const char *err_sym;";
80      print "  } err_table[] = ";
81      print "{";
82    }
83  else
84    print;
85}
86
87!header {
88  sub (/\#.+/, "");
89  sub (/[ 	]+$/, ""); # Strip trailing space and tab characters.
90
91  if (/^$/)
92    next;
93
94    print "  { " $1 ", \"GPG_ERR_" $2 "\" },";
95}
96
97END {
98  print "};";
99}
100