/* $Id$ */ %{ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include "symbol.h" #include "lex.h" #include "asn1_locl.h" static Type *new_type (Typetype t); void yyerror (char *); int yylex(); #ifndef HAVE_STRDUP char *strdup(char *); #endif static void append (Member *l, Member *r); %} %union { int constant; char *name; Type *type; Member *member; } %token INTEGER SEQUENCE OF OCTET STRING GeneralizedTime GeneralString %token BIT APPLICATION OPTIONAL EEQUAL TBEGIN END DEFINITIONS %token IDENTIFIER %token CONSTANT %type constant optional2 %type type %type memberdecls memberdecl bitdecls bitdecl %start envelope %% envelope : IDENTIFIER DEFINITIONS EEQUAL TBEGIN specification END {} ; specification : | specification declaration ; declaration : type_decl | constant_decl ; type_decl : IDENTIFIER EEQUAL type { Symbol *s = addsym ($1); s->stype = Stype; s->type = $3; generate_type (s); } ; constant_decl : IDENTIFIER type EEQUAL constant { Symbol *s = addsym ($1); s->stype = SConstant; s->constant = $4; generate_constant (s); } ; type : INTEGER { $$ = new_type(TInteger); } | OCTET STRING { $$ = new_type(TOctetString); } | GeneralString { $$ = new_type(TGeneralString); } | GeneralizedTime { $$ = new_type(TGeneralizedTime); } | SEQUENCE OF type { $$ = new_type(TSequenceOf); $$->subtype = $3; } | SEQUENCE '{' memberdecls '}' { $$ = new_type(TSequence); $$->members = $3; } | BIT STRING '{' bitdecls '}' { $$ = new_type(TBitString); $$->members = $4; } | IDENTIFIER { Symbol *s = addsym($1); $$ = new_type(TType); if(s->stype != Stype) error_message ("%s is not a type\n", $1); else $$->symbol = s; } | '[' APPLICATION constant ']' type { $$ = new_type(TApplication); $$->subtype = $5; $$->application = $3; } ; memberdecls : { $$ = NULL; } | memberdecl { $$ = $1; } | memberdecls ',' memberdecl { $$ = $1; append($$, $3); } ; memberdecl : IDENTIFIER '[' constant ']' type optional2 { $$ = malloc(sizeof(*$$)); $$->name = $1; $$->gen_name = strdup($1); output_name ($$->gen_name); $$->val = $3; $$->optional = $6; $$->type = $5; $$->next = $$->prev = $$; } ; optional2 : { $$ = 0; } | OPTIONAL { $$ = 1; } ; bitdecls : { $$ = NULL; } | bitdecl { $$ = $1; } | bitdecls ',' bitdecl { $$ = $1; append($$, $3); } ; bitdecl : IDENTIFIER '(' constant ')' { $$ = malloc(sizeof(*$$)); $$->name = $1; $$->gen_name = strdup($1); output_name ($$->gen_name); $$->val = $3; $$->optional = 0; $$->type = NULL; $$->prev = $$->next = $$; } ; constant : CONSTANT { $$ = $1; } | IDENTIFIER { Symbol *s = addsym($1); if(s->stype != SConstant) error_message ("%s is not a constant\n", s->name); else $$ = s->constant; } ; %% void yyerror (char *s) { error_message ("%s\n", s); } static Type * new_type (Typetype tt) { Type *t = malloc(sizeof(*t)); t->type = tt; t->application = 0; t->members = NULL; t->subtype = NULL; t->symbol = NULL; return t; } static void append (Member *l, Member *r) { l->prev->next = r; r->prev = l->prev; l->prev = r; r->next = l; }