Use gpgme interface for error handling to avoid linking with gpg-error.
[gpgme.git] / src / mkstatus
1 #!/bin/sh
2 # mkstatus - Extract error strings from rungpg.h
3 #            and create a lookup table
4 #       Copyright (C) 2000 Werner Koch (dd9jn)
5 #       Copyright (C) 2001 g10 Code GmbH
6 #
7 # This file is part of GPGME.
8 #
9 # GPGME is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU Lesser General Public License as
11 # published by the Free Software Foundation; either version 2.1 of the
12 # License, or (at your option) any later version.
13 #
14 # GPGME is distributed in the hope that it will be useful, but WITHOUT
15 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
17 # Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with this program; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
22
23 # resetting collate is important, so that the bsearch works properly
24 LC_ALL=C
25 LC_COLLATE=C
26 export LC_ALL LC_COLLATE
27
28 cat <<EOF
29 /* Generated automatically by mkstatus */
30 /* Do not edit! */
31
32 struct status_table_s {
33     const char *name;
34     gpgme_status_code_t code;
35 };
36
37 static struct status_table_s status_table[] =
38 {
39 EOF
40
41 awk '
42 okay == 0 && /GPGME_STATUS_ENTER/        { okay = 1 }
43 okay == 2 && /_GPGME_STATUS_FIRST_EXTRA/ { okay = 1; next }
44 okay != 1                                { next }
45 /}/                                      { okay = 2 }
46 /_GPGME_STATUS_LAST_EXTRA/               { exit 0 }
47 /GPGME_STATUS_[A-Za-z_]*/ { sub (/,/, "", $1); printf "  { \"%s\", %s },\n", substr($1,14), $1 }
48 ' | sort
49
50 cat <<EOF
51   {NULL, 0}
52 };
53
54 EOF