r9680: Update Heimdal to current lorikeet-heimdal (which was itself updated
[ira/wip.git] / source4 / heimdal / lib / asn1 / main.c
1 /*
2  * Copyright (c) 1997-2005 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden). 
4  * All rights reserved. 
5  *
6  * Redistribution and use in source and binary forms, with or without 
7  * modification, are permitted provided that the following conditions 
8  * are met: 
9  *
10  * 1. Redistributions of source code must retain the above copyright 
11  *    notice, this list of conditions and the following disclaimer. 
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright 
14  *    notice, this list of conditions and the following disclaimer in the 
15  *    documentation and/or other materials provided with the distribution. 
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors 
18  *    may be used to endorse or promote products derived from this software 
19  *    without specific prior written permission. 
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
31  * SUCH DAMAGE. 
32  */
33
34 #include "gen_locl.h"
35 #include <getarg.h>
36 #include "lex.h"
37
38 RCSID("$Id: main.c,v 1.15 2005/08/23 10:50:12 lha Exp $");
39
40 extern FILE *yyin;
41
42 static getarg_strings preserve;
43
44 int
45 preserve_type(const char *p)
46 {
47     int i;
48     for (i = 0; i < preserve.num_strings; i++)
49         if (strcmp(preserve.strings[i], p) == 0)
50             return 1;
51     return 0;
52 }
53
54 int dce_fix;
55 int rfc1510_bitstring;
56 int version_flag;
57 int help_flag;
58 struct getargs args[] = {
59     { "encode-rfc1510-bit-string", 0, arg_flag, &rfc1510_bitstring },
60     { "decode-dce-ber", 0, arg_flag, &dce_fix },
61     { "preserve-binary", 0, arg_strings, &preserve },
62     { "version", 0, arg_flag, &version_flag },
63     { "help", 0, arg_flag, &help_flag }
64 };
65 int num_args = sizeof(args) / sizeof(args[0]);
66
67 static void
68 usage(int code)
69 {
70     arg_printusage(args, num_args, NULL, "[asn1-file [name]]");
71     exit(code);
72 }
73
74 int error_flag;
75
76 int
77 main(int argc, char **argv)
78 {
79     int ret;
80     const char *file;
81     const char *name = NULL;
82     int optidx = 0;
83
84     setprogname(argv[0]);
85     if(getarg(args, num_args, argc, argv, &optidx))
86         usage(1);
87     if(help_flag)
88         usage(0);
89     if(version_flag) {
90         print_version(NULL);
91         exit(0);
92     }
93     if (argc == optidx) {
94         file = "stdin";
95         name = "stdin";
96         yyin = stdin;
97     } else {
98         file = argv[optidx];
99         yyin = fopen (file, "r");
100         if (yyin == NULL)
101             err (1, "open %s", file);
102         if (argc == optidx + 1) {
103             char *p;
104             name = estrdup(file);
105             p = strrchr(name, '.');
106             if (p)
107                 *p = '\0';
108         } else
109             name = argv[optidx + 1];
110     }
111
112     init_generate (file, name);
113     initsym ();
114     ret = yyparse ();
115     if(ret != 0 || error_flag != 0)
116         exit(1);
117     close_generate ();
118     return 0;
119 }