]> rtime.felk.cvut.cz Git - frescor/forb.git/blob - forb-idl/forb-idl-c-skels.c
Fixed freeing of memory for sequence parameters
[frescor/forb.git] / forb-idl / forb-idl-c-skels.c
1 #include "config.h"
2
3 #include "forb-idl-c-backend.h"
4
5 #include <string.h>
6
7 typedef struct {
8         OIDL_C_Info *ci;
9         GSList      *oplist;
10         int          curlevel;
11 } CBESkelInterfaceTraverseInfo;
12
13 typedef struct {
14         char     *iface_id;
15         char     *opname;
16         IDL_tree  op;
17         int       idx;
18 } CBESkelOpInfo;
19
20 static void cbe_skel_do_interface(IDL_tree tree, OIDL_Run_Info *rinfo, OIDL_C_Info *ci);
21
22 static void
23 ck_output_poastuff(IDL_tree tree, OIDL_Run_Info *rinfo, OIDL_C_Info *ci)
24 {
25   if( !tree || (tree->declspec & IDLF_DECLSPEC_PIDL)!=0 ) 
26     return;
27
28   switch(IDL_NODE_TYPE(tree)) {
29   case IDLN_MODULE:
30     ck_output_poastuff(IDL_MODULE(tree).definition_list, rinfo, ci);
31     break;
32   case IDLN_LIST:
33     {
34       IDL_tree sub;
35       for(sub = tree; sub; sub = IDL_LIST(sub).next) {
36         ck_output_poastuff(IDL_LIST(sub).data, rinfo, ci);
37       }
38     }
39     break;
40   case IDLN_INTERFACE:
41     cbe_skel_do_interface(tree, rinfo, ci);
42     break;
43   default:
44     break;
45   }
46 }
47
48 /* static gint */
49 /* cbe_skel_compare_op_dcls(CBESkelOpInfo *op1, CBESkelOpInfo *op2) */
50 /* { */
51 /*   return strcmp(op1->opname, op2->opname); */
52 /* } */
53
54 /* static void */
55 /* cbe_skel_free_op_info(CBESkelOpInfo *op) */
56 /* { */
57 /*   g_free(op->opname); */
58 /*   g_free(op->iface_id); */
59 /*   g_free(op); */
60 /* } */
61
62 /* static void */
63 /* cbe_skel_interface_add_relayer (IDL_tree intf, CBESkelInterfaceTraverseInfo *iti) */
64 /* { */
65 /*   CBESkelOpInfo *newopi; */
66 /*   IDL_tree curitem, curdcl, curattr, curattrdcl; */
67 /*   char *iface_id; */
68 /*   int   idx = 0; */
69
70 /*   iface_id = */
71 /*     IDL_ns_ident_to_qstring(IDL_IDENT_TO_NS(IDL_INTERFACE(intf).ident), */
72 /*                          "_", 0); */
73
74 /*   for(curitem = IDL_INTERFACE(intf).body; curitem; */
75 /*       curitem = IDL_LIST(curitem).next) { */
76 /*     curdcl = IDL_LIST(curitem).data; */
77
78 /*     switch(IDL_NODE_TYPE(curdcl)) { */
79 /*     case IDLN_OP_DCL: */
80 /*       newopi = g_new0(CBESkelOpInfo, 1); */
81 /*       newopi->iface_id = g_strdup(iface_id); */
82 /*       newopi->opname = g_strdup(IDL_IDENT(IDL_OP_DCL(curdcl).ident).str); */
83 /*       newopi->idx = idx++; */
84 /*       iti->oplist = g_slist_insert_sorted(iti->oplist, newopi, */
85 /*                                        (GCompareFunc)cbe_skel_compare_op_dcls); */
86 /*       break; */
87 /*     case IDLN_ATTR_DCL: */
88 /*       for(curattr = IDL_ATTR_DCL(curdcl).simple_declarations; */
89 /*        curattr; curattr = IDL_LIST(curattr).next) { */
90 /*      curattrdcl = IDL_LIST(curattr).data; */
91
92 /*      newopi = g_new0(CBESkelOpInfo, 1); */
93 /*      newopi->iface_id = g_strdup(iface_id); */
94 /*      newopi->opname = g_strdup_printf("_get_%s", IDL_IDENT(curattrdcl).str); */
95 /*      newopi->idx = idx++; */
96 /*      iti->oplist = g_slist_insert_sorted(iti->oplist, newopi, */
97 /*                                          (GCompareFunc)cbe_skel_compare_op_dcls); */
98 /*      if(!IDL_ATTR_DCL(curdcl).f_readonly) { */
99 /*        newopi = g_new0(CBESkelOpInfo, 1); */
100 /*        newopi->iface_id = g_strdup(iface_id); */
101 /*        newopi->opname = g_strdup_printf("_set_%s", IDL_IDENT(curattrdcl).str); */
102 /*        newopi->idx = idx++; */
103 /*        iti->oplist = g_slist_insert_sorted(iti->oplist, newopi, */
104 /*                                            (GCompareFunc)cbe_skel_compare_op_dcls); */
105 /*      } */
106 /*       } */
107 /*       break; */
108 /*     default: */
109 /*       break; */
110 /*     } */
111 /*   } */
112
113 /*   g_free(iface_id); */
114 /* } */
115
116 /* static void */
117 /* cbe_skel_interface_print_relayers(const CBESkelInterfaceTraverseInfo *iti) */
118 /* { */
119 /*   CBESkelInterfaceTraverseInfo subiti = *iti; */
120 /*   GSList *curnode; */
121 /*   CBESkelOpInfo *opi; */
122 /*   char curchar; */
123
124 /*   curnode = iti->oplist; */
125 /*   subiti.curlevel = iti->curlevel+1; */
126 /*   fprintf(iti->ci->fh, "switch(opname[%d]) {\n", iti->curlevel); */
127 /*   while(curnode) { */
128 /*     opi = (CBESkelOpInfo *)curnode->data; */
129 /*     if(iti->curlevel > strlen(opi->opname)) { */
130 /*       curnode = g_slist_next(curnode); */
131 /*       continue; */
132 /*     } */
133 /*     curchar = opi->opname[iti->curlevel]; */
134 /*     if(curchar) */
135 /*       fprintf(iti->ci->fh, "case '%c':\n", curchar); */
136 /*     else */
137 /*       fprintf(iti->ci->fh, "case '\\0':\n"); */
138 /*     subiti.oplist = NULL; */
139 /*     while(curnode && ((CBESkelOpInfo *)curnode->data)->opname[iti->curlevel] */
140 /*        == curchar) { */
141 /*       subiti.oplist = g_slist_append(subiti.oplist, curnode->data); */
142 /*       curnode = g_slist_next(curnode); */
143 /*     } */
144
145 /*     if(g_slist_length(subiti.oplist) > 1) { */
146 /*       if(curchar) */
147 /*      cbe_skel_interface_print_relayers(&subiti); */
148 /*       else */
149 /*      g_error("two ops with same name!!!!"); */
150 /*     } else { */
151 /*       if(strlen(opi->opname + iti->curlevel)) */
152 /*      fprintf(iti->ci->fh, "if(strcmp((opname + %d), \"%s\")) break;\n", */
153 /*              iti->curlevel + 1, opi->opname + iti->curlevel+1); */
154 /*       fprintf(iti->ci->fh, "*impl = (gpointer)servant->vepv->%s_epv->%s;\n", */
155 /*            opi->iface_id, opi->opname); */
156 /*       fprintf(iti->ci->fh, "{Forb_IInterface *volatile _t_=&%s__iinterface;*m_data = (gpointer)&_t_->methods._buffer [%d];}\n", */
157 /*            opi->iface_id, opi->idx); */
158 /*       fprintf(iti->ci->fh, "return (ForbSmallSkeleton)_FORB_skel_small_%s_%s;\n", */
159 /*            opi->iface_id, opi->opname); */
160 /*     } */
161 /*     fprintf(iti->ci->fh, "break;\n"); */
162 /*     g_slist_free(subiti.oplist); */
163 /*   } */
164 /*   fprintf(iti->ci->fh, "default: break; \n}\n"); */
165 /* } */
166
167 /* static void */
168 /* cbe_skel_interface_print_relayer(IDL_tree tree, OIDL_Run_Info *rinfo, OIDL_C_Info *ci) */
169 /* { */
170 /*   char *id; */
171 /*   CBESkelInterfaceTraverseInfo iti; */
172
173 /*   id = IDL_ns_ident_to_qstring(IDL_IDENT_TO_NS(IDL_INTERFACE(tree).ident), "_", 0); */
174 /*   fprintf(ci->fh, "static ForbSmallSkeleton get_skel_small_%s(POA_%s *servant,\nconst char *opname," */
175 /*        "gpointer *m_data, gpointer *impl)\n{\n", id, id); */
176
177 /*   iti.ci = ci; */
178 /*   iti.oplist = NULL; */
179 /*   iti.curlevel = 0; */
180
181 /*   IDL_tree_traverse_parents(tree, */
182 /*                          (GFunc)cbe_skel_interface_add_relayer, &iti); */
183
184 /*   cbe_skel_interface_print_relayers(&iti); */
185
186 /*   g_slist_foreach(iti.oplist, (GFunc)cbe_skel_free_op_info, NULL); */
187 /*   g_slist_free(iti.oplist); */
188
189 /*   fprintf(ci->fh, "return NULL;\n"); */
190 /*   fprintf(ci->fh, "}\n\n"); */
191
192 /*   g_free(id); */
193 /* } */
194
195 typedef struct {
196         OIDL_C_Info *ci;
197         const char  *for_id;
198 } CBESkelVEPVMapTraverseInfo;
199
200 /* static void */
201 /* cbe_skel_interface_print_vepvmap_offsets (IDL_tree node, CBESkelVEPVMapTraverseInfo *ti) */
202 /* { */
203 /*      char *id; */
204 /*      id = IDL_ns_ident_to_qstring (IDL_IDENT_TO_NS (IDL_INTERFACE (node).ident), "_", 0); */
205 /*      fprintf (ti->ci->fh, "(CORBA_unsigned_long) %s__classid,\n", id); */
206 /*      fprintf (ti->ci->fh, "FORB_VEPV_OFFSET (POA_%s__vepv, %s_epv),\n", ti->for_id, id); */
207 /*      g_free (id); */
208 /* } */
209
210 /**
211  * If the type specified in @a type_spec is dynamically allocated
212  * (such as string, sequence or object reference), the parameters of
213  * this type must be freed after they are not needed. For input
214  * parameter this is after the implementation is called, for out and
215  * inout return parameters after the returned value is serialized.
216  */
217 static void free_memory_if_needed(IDL_tree type_spec, const char *name, int n, OIDL_C_Info *ci)
218 {
219   type_spec = forb_cbe_get_typespec(type_spec);
220   /* forb_idl_print_node(type_spec, 7); */
221   switch(IDL_NODE_TYPE(type_spec)) {
222   case IDLN_TYPE_STRING:
223   case IDLN_TYPE_WIDE_STRING:
224     fprintf(ci->fh, "    ");
225     fprintf(ci->fh, "forb_free(%s);\n", name);
226     break;
227   case IDLN_TYPE_ARRAY:
228     break;
229   case IDLN_TYPE_SEQUENCE:
230     fprintf(ci->fh, "    ");
231     fprintf(ci->fh, "if (CORBA_sequence_get_release(%s%s)) { forb_free(%s%s_buffer); }\n",
232             n==2?"":"&",name, name, n==2?"->":".");
233     break;
234   case IDLN_NATIVE:
235     fprintf(ci->fh, "    ");
236     fprintf(ci->fh, "%s_free(%s);\n",
237             forb_cbe_get_typespec_str(IDL_NATIVE(type_spec).ident),
238             name);
239     return;
240   case IDLN_INTERFACE:
241     fprintf(ci->fh, "    ");
242     fprintf(ci->fh, "forb_object_release(%s);\n", name);
243     break;
244   default:
245     break;
246   }
247
248 }
249
250 static void ck_output_op_skel(IDL_tree op, char *intf_id, OIDL_Run_Info *rinfo, OIDL_C_Info *ci)
251 {
252         char *id, *id_plain;
253         IDL_tree sub;
254         gboolean  has_retval, has_args;
255
256         has_retval = IDL_OP_DCL (op).op_type_spec != NULL;
257         has_args   = IDL_OP_DCL (op).parameter_dcls != NULL;
258         
259         id = IDL_ns_ident_to_qstring(IDL_IDENT_TO_NS(IDL_OP_DCL(op).ident), "_", 0);
260         id_plain = IDL_IDENT(IDL_OP_DCL(op).ident).str;
261         fprintf(ci->fh, "static void\n"
262                 "forb_skel_%s(CDR_Codec *cin, CDR_Codec *cout, %s _obj, struct forb_env *env)\n"
263                 "{\n",
264                 id, intf_id);
265 /*      fprintf(ci->fh, "  if (_obj->interface != %s_interface) {\n", intf_id); */
266 /*      fprintf(ci->fh, "    env->major = FORB_EX_BAD_OPERATION;\n" */
267 /*                      "    return;\n" */
268 /*                      "  }\n"); */
269         fprintf(ci->fh, "  if (_%s_impl(_obj) && _%s_impl(_obj)->%s) {\n", intf_id, intf_id, id_plain);
270
271         /* Declare variables for parameters */
272         for (sub = IDL_OP_DCL (op).parameter_dcls; sub; sub = IDL_LIST (sub).next) {
273                 IDL_tree        parm = IDL_LIST (sub).data;
274                 IDL_ParamRole   role;
275                 IDL_tree        ts = forb_cbe_get_typespec(parm);
276                 gboolean        isSlice;
277                 int             n;
278                 char            *name = IDL_IDENT(IDL_PARAM_DCL(parm).simple_declarator).str;
279                 role = oidl_attr_to_paramrole(IDL_PARAM_DCL(parm).attr);
280                 n = oidl_param_info (ts, role, &isSlice);
281
282                 fprintf(ci->fh, "    ");
283                 forb_cbe_write_typespec(ci->fh, IDL_PARAM_DCL(parm).param_type_spec);
284                 fprintf(ci->fh, " %s%s;\n", n == 2 ? "*":"", name);
285         }
286         if (has_retval) {
287                 fprintf (ci->fh, "    ");
288                 forb_cbe_write_param_typespec (ci->fh, op);
289                 fprintf (ci->fh, " _forb_ret;\n");
290         }
291
292         /* Deserialize in parameters */
293         for (sub = IDL_OP_DCL (op).parameter_dcls; sub; sub = IDL_LIST (sub).next) {
294                 IDL_tree        parm = IDL_LIST (sub).data;
295                 IDL_ParamRole   role;
296                 role = oidl_attr_to_paramrole(IDL_PARAM_DCL(parm).attr);
297                 if (role == DATA_IN || role == DATA_INOUT) {
298                         char *name = IDL_IDENT(IDL_PARAM_DCL(parm).simple_declarator).str;
299                         fprintf(ci->fh, /* "  r = " */ "    ");
300                         forb_cbe_write_typespec(ci->fh, IDL_PARAM_DCL(parm).param_type_spec);
301                         if (IDL_NODE_TYPE(forb_cbe_get_typespec(parm)) == IDLN_INTERFACE) {
302                           fprintf(ci->fh, "_deserialize(cin, &%s, _obj->orb);\n", name);
303                         } else {
304                           fprintf(ci->fh, "_deserialize(cin, &%s);\n", name);
305                         }
306 /*                      fprintf(ci->fh, "    if (!r) { ev->major = FORB_EX_IMP_LIMIT; goto exception; }\n"); */
307                 }
308         }
309
310         /* Call the implementation */
311         fprintf(ci->fh, "    ");
312         if (has_retval)
313                 fprintf(ci->fh, "_forb_ret = ");
314         fprintf(ci->fh, "_%s_impl(_obj)->%s(_obj, ",
315                 intf_id, id_plain);
316         for (sub = IDL_OP_DCL (op).parameter_dcls; sub; sub = IDL_LIST (sub).next) {
317                 IDL_tree        parm = IDL_LIST (sub).data;
318                 IDL_ParamRole   role;
319                 IDL_tree        ts = forb_cbe_get_typespec(parm);
320                 gboolean        isSlice;
321                 int             n;
322                 char            *name = IDL_IDENT(IDL_PARAM_DCL(parm).simple_declarator).str;
323                 role = oidl_attr_to_paramrole(IDL_PARAM_DCL(parm).attr);
324                 n = oidl_param_info (ts, role, &isSlice);
325
326                 fprintf(ci->fh, "%s%s, ", n?"&":"", name);
327         }
328         fprintf(ci->fh, "env);\n");
329         fprintf(ci->fh,
330                 "    if (forb_exception_occured(env)) goto exception;\n");
331         if (has_retval) {
332           fprintf(ci->fh, "    ");
333           forb_cbe_write_typespec(ci->fh, IDL_OP_DCL(op).op_type_spec);
334           fprintf(ci->fh, "_serialize(cout, &_forb_ret);\n");
335         }
336         for (sub = IDL_OP_DCL (op).parameter_dcls; sub; sub = IDL_LIST (sub).next) {
337                 IDL_tree        parm = IDL_LIST (sub).data;
338                 IDL_ParamRole   role;
339                 IDL_tree        ts = forb_cbe_get_typespec(parm);
340                 gboolean        isSlice;
341                 int             n;
342                 char            *name = IDL_IDENT(IDL_PARAM_DCL(parm).simple_declarator).str;
343                 role = oidl_attr_to_paramrole(IDL_PARAM_DCL(parm).attr);
344                 n = oidl_param_info (ts, role, &isSlice);
345                 if (role == DATA_OUT || role == DATA_INOUT) {
346                   fprintf(ci->fh, "    ");
347                   forb_cbe_write_typespec(ci->fh, IDL_PARAM_DCL(parm).param_type_spec);
348                   fprintf(ci->fh, "_serialize(cout, %s%s);\n", n==2?"":"&", name);
349                 }
350         }
351         fprintf(ci->fh, "exception:;\n");
352
353         /* Free all dynamically allocated parameteres and retvals */
354         if (has_retval) {
355                 free_memory_if_needed(IDL_OP_DCL(op).op_type_spec, "_forb_ret", 0, ci);
356         }
357         for (sub = IDL_OP_DCL (op).parameter_dcls; sub; sub = IDL_LIST (sub).next) {
358                 IDL_tree        parm = IDL_LIST (sub).data;
359                 char *name = IDL_IDENT(IDL_PARAM_DCL(parm).simple_declarator).str;
360                 IDL_ParamRole   role;
361                 IDL_tree        ts = forb_cbe_get_typespec(parm);
362                 gboolean        isSlice;
363                 int             n;
364                 role = oidl_attr_to_paramrole(IDL_PARAM_DCL(parm).attr);
365                 n = oidl_param_info (ts, role, &isSlice);
366                 free_memory_if_needed(IDL_PARAM_DCL(parm).param_type_spec, name, n, ci);
367         }
368
369         fprintf(ci->fh, "  } else {\n");
370         fprintf(ci->fh, "    env->major = FORB_EX_NO_IMPLEMENT;\n");
371         fprintf(ci->fh, "  }\n");
372         fprintf(ci->fh, "}\n\n");
373         g_free(id);
374 }
375
376 static void
377 cbe_skel_do_interface(IDL_tree tree, OIDL_Run_Info *rinfo, OIDL_C_Info *ci)
378 {
379   char *id;
380   IDL_tree pnt;
381   IDL_tree sub;
382   //int i;
383   //CBESkelVEPVMapTraverseInfo ti;
384   int num_methods = 0;
385
386   /* PIDL methods dont have normal skel functions. */
387   for ( pnt=tree; pnt; pnt=IDL_NODE_UP(pnt) ) {
388       if ( pnt->declspec & IDLF_DECLSPEC_PIDL )
389         return;
390   }
391
392   id = IDL_ns_ident_to_qstring(IDL_IDENT_TO_NS(IDL_INTERFACE(tree).ident), "_", 0);
393
394   fprintf(ci->fh, "#define _%s_impl(obj) ((struct forb_%s_impl*)(obj)->implementation)\n\n", id, id);
395   fprintf(ci->fh, "static const struct forb_interface %s_interface;\n\n", id);
396   
397   for(sub = IDL_INTERFACE(tree).body; sub; sub = IDL_LIST(sub).next) {
398     IDL_tree cur = IDL_LIST(sub).data;
399     
400     switch(IDL_NODE_TYPE(cur)) {
401     case IDLN_OP_DCL:
402       ck_output_op_skel(cur, id, rinfo, ci);
403       num_methods++;
404       break;
405     default:
406       break;
407     }
408   }
409
410   fprintf(ci->fh, "static const forb_skel_func %s_skeletons[%d] = {\n",
411           id, num_methods);
412   for(sub = IDL_INTERFACE(tree).body; sub; sub = IDL_LIST(sub).next) {
413     IDL_tree cur = IDL_LIST(sub).data;
414     
415     switch(IDL_NODE_TYPE(cur)) {
416     case IDLN_OP_DCL: {
417       char *op_id;
418       op_id = IDL_ns_ident_to_qstring(IDL_IDENT_TO_NS(IDL_OP_DCL(cur).ident), "_", 0);
419       fprintf(ci->fh, "  forb_skel_%s,\n", op_id);
420       g_free(op_id);
421       break;
422     }
423     default:
424       break;
425     }
426   }
427   fprintf(ci->fh, "};\n\n");
428
429   fprintf(ci->fh, "static const struct forb_interface %s_interface = {\n", id);
430   fprintf(ci->fh, "  .name = \"%s\",\n", id);
431   fprintf(ci->fh, "  .num_methods = %d,\n", num_methods);
432   fprintf(ci->fh, "  .skeletons = %s_skeletons,\n", id);
433   fprintf(ci->fh, "  .type_hash = 0 /* not implemented */\n");
434   fprintf(ci->fh, "};\n\n");
435
436 /*   fprintf(ci->fh, "void forb_register_%s_interface(void)\n" */
437 /*                "{\n" */
438 /*                "  forb_register_interface(&%s_interface);\n" */
439 /*                "}\n\n", id, id); */
440
441   fprintf(ci->fh, "%s forb_%s_new(forb_orb orb, const struct forb_%s_impl *impl,"
442                   "void *instance_data)\n"
443                   "{\n"
444                   "  %s obj = forb_object_new(orb, NULL, 0);\n"
445                   "  if (obj) {\n"
446                   "    obj->instance_data = instance_data;\n"
447                   "    obj->implementation = impl;\n"
448                   "    obj->interface = &%s_interface;\n"
449                   "  }\n"
450                   "  return obj;\n"
451           "}\n\n", id, id, id, id, id);
452   fprintf(ci->fh, "\n");
453   
454
455 /*   cbe_skel_interface_print_relayer(tree, rinfo, ci); */
456
457 /*   fprintf(ci->fh, */
458 /*        "void POA_%s__init(PortableServer_Servant servant,\nCORBA_Environment *env)\n", */
459 /*        id); */
460 /*   fprintf(ci->fh, "{\n"); */
461 /*   fprintf(ci->fh,"  static PortableServer_ClassInfo class_info = {"); */
462
463 /*   fprintf(ci->fh, "NULL, (Forb_small_impl_finder)&get_skel_small_%s, ", id); */
464
465 /*   fprintf(ci->fh,"\"%s\", &%s__classid, NULL, &%s__iinterface};\n", */
466 /*        IDL_IDENT(IDL_INTERFACE(tree).ident).repo_id, id, id); */
467
468 /*   fprintf(ci->fh,"  PortableServer_ServantBase__init (" */
469 /*               "       ((PortableServer_ServantBase *)servant), env);\n"); */
470
471 /*   for(curitem = IDL_INTERFACE(tree).inheritance_spec; curitem; */
472 /*       curitem = IDL_LIST(curitem).next) { */
473 /*     id2 = IDL_ns_ident_to_qstring(IDL_IDENT_TO_NS(IDL_LIST(curitem).data), */
474 /*                                "_", 0); */
475 /*     fprintf(ci->fh, "  POA_%s__init(servant, env);\n", id2); */
476 /*     g_free(id2); */
477 /*   } */
478
479   /* registering after other __inits() makes the classids increment nicely. */
480 /*   fprintf (ci->fh, "   Forb_skel_class_register (&class_info,\n"); */
481 /*   fprintf (ci->fh, "   (PortableServer_ServantBase *)servant, POA_%s__fini,\n", id); */
482 /*   fprintf (ci->fh, "   FORB_VEPV_OFFSET (POA_%s__vepv, %s_epv),\n", id, id); */
483 /*   ti.for_id = id; ti.ci = ci; */
484 /*   IDL_tree_traverse_parents_full (tree, (GFunc) cbe_skel_interface_print_vepvmap_offsets, &ti, FALSE); */
485 /*   fprintf (ci->fh, "   (CORBA_unsigned_long) 0);"); */
486
487 /*   fprintf(ci->fh, "}\n\n"); */
488
489 /*   fprintf(ci->fh, */
490 /*        "void POA_%s__fini(PortableServer_Servant servant,\nCORBA_Environment *env)\n", */
491 /*        id); */
492 /*   fprintf(ci->fh, "{\n"); */
493 /*   if(IDL_INTERFACE(tree).inheritance_spec) */
494 /*     { */
495 /*       for(i = IDL_list_length(IDL_INTERFACE(tree).inheritance_spec) - 1; */
496 /*        i >= 0; i--) { */
497 /*      curitem = IDL_list_nth(IDL_INTERFACE(tree).inheritance_spec, i); */
498 /*      id2 = IDL_ns_ident_to_qstring(IDL_IDENT_TO_NS(IDL_LIST(curitem).data), */
499 /*                                    "_", 0); */
500 /*      /\* XXX fixme - this is going to call ServantBase__fini multiple times *\/ */
501 /*      fprintf(ci->fh, "  POA_%s__fini(servant, env);\n", */
502 /*              id2); */
503 /*      g_free(id2); */
504 /*       } */
505 /*     } */
506 /*   fprintf(ci->fh, "  PortableServer_ServantBase__fini(servant, env);\n"); */
507 /*   fprintf(ci->fh, "}\n\n"); */
508
509   g_free(id);
510 }
511
512 void
513 forb_idl_output_c_skeletons (IDL_tree       tree,
514                               OIDL_Run_Info *rinfo,
515                               OIDL_C_Info   *ci)
516 {
517         fprintf (ci->fh, OIDL_C_WARNING);
518 /*      fprintf (ci->fh, "#include <string.h>\n"); */
519 /*      fprintf (ci->fh, "#define FORB2_STUBS_API\n"); */
520         fprintf (ci->fh, "#include \"%s.h\"\n\n", ci->base_name);
521         fprintf(ci->fh, "#include <forb/cdr.h>\n");
522         fprintf(ci->fh, "#include <forb/forb-internal.h>\n");
523         fprintf(ci->fh, "#include <forb/object.h>\n\n");
524
525         ck_output_poastuff (tree, rinfo, ci);
526 }