1 /* 2 * Copyright (c) 1997 - 1999 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 36 RCSID("$Id: gen_free.c,v 1.7 1999/12/02 17:05:02 joda Exp $"); 37 38 static void 39 free_primitive (const char *typename, const char *name) 40 { 41 fprintf (codefile, "free_%s(%s);\n", typename, name); 42 } 43 44 static void 45 free_type (const char *name, const Type *t) 46 { 47 switch (t->type) { 48 case TType: 49 #if 0 50 free_type (name, t->symbol->type); 51 #endif 52 fprintf (codefile, "free_%s(%s);\n", t->symbol->gen_name, name); 53 break; 54 case TInteger: 55 break; 56 case TOctetString: 57 free_primitive ("octet_string", name); 58 break; 59 case TBitString: { 60 break; 61 } 62 case TSequence: { 63 Member *m; 64 int tag = -1; 65 66 if (t->members == NULL) 67 break; 68 69 for (m = t->members; m && tag != m->val; m = m->next) { 70 char *s; 71 72 asprintf (&s, "%s(%s)->%s", 73 m->optional ? "" : "&", name, m->gen_name); 74 if(m->optional) 75 fprintf(codefile, "if(%s) {\n", s); 76 free_type (s, m->type); 77 if(m->optional) 78 fprintf(codefile, 79 "free(%s);\n" 80 "}\n",s); 81 if (tag == -1) 82 tag = m->val; 83 free (s); 84 } 85 break; 86 } 87 case TSequenceOf: { 88 char *n; 89 90 fprintf (codefile, "while((%s)->len){\n", name); 91 asprintf (&n, "&(%s)->val[(%s)->len-1]", name, name); 92 free_type(n, t->subtype); 93 fprintf(codefile, 94 "(%s)->len--;\n" 95 "}\n", 96 name); 97 fprintf(codefile, 98 "free((%s)->val);\n", name); 99 free(n); 100 break; 101 } 102 case TGeneralizedTime: 103 break; 104 case TGeneralString: 105 free_primitive ("general_string", name); 106 break; 107 case TApplication: 108 free_type (name, t->subtype); 109 break; 110 default : 111 abort (); 112 } 113 } 114 115 void 116 generate_type_free (const Symbol *s) 117 { 118 fprintf (headerfile, 119 "void free_%s (%s *);\n", 120 s->gen_name, s->gen_name); 121 122 fprintf (codefile, "void\n" 123 "free_%s(%s *data)\n" 124 "{\n", 125 s->gen_name, s->gen_name); 126 127 free_type ("data", s->type); 128 fprintf (codefile, "}\n\n"); 129 } 130 131