d76a43a2a9d4a671f984fd0ffee7ef2bcbd9291f
[openafs.git] / src / finale / translate_et.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #include <afs/param.h>
12
13 #include <roken.h>
14
15 #include <afs/com_err.h>
16 #include <rx/rxkad.h>
17 #include <afs/kautils.h>
18 #include <afs/cellconfig.h>
19 #include <afs/cmd.h>
20 #include <afs/vlserver.h>
21 #include <afs/pterror.h>
22 #include <afs/bnode.h>
23 #include <afs/volser.h>
24 #include <ubik.h>
25
26 #define ERRCODE_RANGE 8         /* from error_table.h */
27
28 #include "AFS_component_version_number.c"
29
30 int
31 main(int argc, char *argv[])
32 {
33     int i;
34     afs_int32 code;
35     afs_int32 offset;
36     char msgbuf[BUFSIZ];
37
38 #ifdef  AFS_AIX32_ENV
39     /*
40      * The following signal action for AIX is necessary so that in case of a
41      * crash (i.e. core is generated) we can include the user's data section
42      * in the core dump. Unfortunately, by default, only a partial core is
43      * generated which, in many cases, isn't too useful.
44      */
45     struct sigaction nsa;
46
47     sigemptyset(&nsa.sa_mask);
48     nsa.sa_handler = SIG_DFL;
49     nsa.sa_flags = SA_FULLDUMP;
50     sigaction(SIGSEGV, &nsa, NULL);
51 #endif
52     initialize_KA_error_table();
53     initialize_RXK_error_table();
54     initialize_KTC_error_table();
55     initialize_ACFG_error_table();
56     initialize_CMD_error_table();
57     initialize_VL_error_table();
58     initialize_PT_error_table();
59     initialize_BZ_error_table();
60     initialize_U_error_table();
61     initialize_VOLS_error_table();
62
63     if (argc < 2) {
64         fprintf(stderr, "Usage is: %s [<code>]+\n", argv[0]);
65         exit(1);
66     }
67
68     for (i = 1; i < argc; i++) {
69         code = atoi(argv[i]);
70         offset = code & ((1 << ERRCODE_RANGE) - 1);
71
72         printf("%d (%s).%d = %s\n", (int)code, afs_error_table_name(code),
73                (int)offset, afs_error_message_localize(code, msgbuf, BUFSIZ));
74     }
75     return 0;
76 }