2 * Copyright (c) 1997-2005 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
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.
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.
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
42 static getarg_strings preserve
;
43 static getarg_strings seq
;
46 preserve_type(const char *p
)
49 for (i
= 0; i
< preserve
.num_strings
; i
++)
50 if (strcmp(preserve
.strings
[i
], p
) == 0)
56 seq_type(const char *p
)
59 for (i
= 0; i
< seq
.num_strings
; i
++)
60 if (strcmp(seq
.strings
[i
], p
) == 0)
67 int rfc1510_bitstring
;
72 struct getargs args
[] = {
73 { "template", 0, arg_flag
, &template_flag
},
74 { "encode-rfc1510-bit-string", 0, arg_flag
, &rfc1510_bitstring
},
75 { "decode-dce-ber", 0, arg_flag
, &support_ber
},
76 { "support-ber", 0, arg_flag
, &support_ber
},
77 { "preserve-binary", 0, arg_strings
, &preserve
},
78 { "sequence", 0, arg_strings
, &seq
},
79 { "one-code-file", 0, arg_flag
, &one_code_file
},
80 { "option-file", 0, arg_string
, &option_file
},
81 { "version", 0, arg_flag
, &version_flag
},
82 { "help", 0, arg_flag
, &help_flag
}
84 int num_args
= sizeof(args
) / sizeof(args
[0]);
89 arg_printusage(args
, num_args
, NULL
, "[asn1-file [name]]");
96 main(int argc
, char **argv
)
100 const char *name
= NULL
;
105 setprogname(argv
[0]);
106 if(getarg(args
, num_args
, argc
, argv
, &optidx
))
114 if (argc
== optidx
) {
120 yyin
= fopen (file
, "r");
122 err (1, "open %s", file
);
123 if (argc
== optidx
+ 1) {
125 name
= estrdup(file
);
126 p
= strrchr(name
, '.');
130 name
= argv
[optidx
+ 1];
134 * Parse extra options file
140 opt
= fopen(option_file
, "r");
146 arg
= calloc(2, sizeof(arg
[0]));
151 arg
[0] = option_file
;
155 while (fgets(buf
, sizeof(buf
), opt
) != NULL
) {
156 buf
[strcspn(buf
, "\n\r")] = '\0';
158 arg
= realloc(arg
, (len
+ 2) * sizeof(arg
[0]));
163 arg
[len
] = strdup(buf
);
164 if (arg
[len
] == NULL
) {
174 if(getarg(args
, num_args
, len
, arg
, &optidx
))
178 fprintf(stderr
, "extra args");
184 init_generate (file
, name
);
187 generate_header_of_codefile(name
);
191 if(ret
!= 0 || error_flag
!= 0)
201 for (i
= 1; i
< len
; i
++)