]> rtime.felk.cvut.cz Git - frescor/forb.git/blob - forb-idl/forb-idl-c-stubs.c
Thread synchronization reworked to used syncobj inspired by DTM
[frescor/forb.git] / forb-idl / forb-idl-c-stubs.c
1 #include "config.h"
2
3 #include "forb-idl-c-backend.h"
4
5 #include <string.h>
6
7 static void
8 cs_output_stub (IDL_tree     tree,
9                 OIDL_C_Info *ci,
10                 int         *idx)
11 {
12         FILE     *of = ci->fh;
13         IDL_tree  sub;
14         char     *iface_id;
15         char     *opname;
16         char     *opname_plain;
17         gboolean  has_retval, has_args;
18
19         g_return_if_fail (idx != NULL);
20
21         iface_id = IDL_ns_ident_to_qstring (
22                         IDL_IDENT_TO_NS (IDL_INTERFACE (
23                                 IDL_get_parent_node (tree, IDLN_INTERFACE, NULL)
24                                         ).ident), "_", 0);
25         opname_plain = IDL_IDENT(IDL_OP_DCL (tree).ident).str;
26         opname = IDL_ns_ident_to_qstring (IDL_IDENT_TO_NS (IDL_OP_DCL (tree).ident), "_", 0);
27
28         has_retval = IDL_OP_DCL (tree).op_type_spec != NULL;
29         has_args   = IDL_OP_DCL (tree).parameter_dcls != NULL;
30
31         forb_cbe_op_write_proto (of, tree, "", FALSE);
32
33         fprintf (of, "\n{\n");
34
35         if (has_retval) {
36                 fprintf (of, "  ");
37                 forb_cbe_write_param_typespec (of, tree);
38                 fprintf (of, " " FORB_RETVAL_VAR_NAME ";\n");
39         }
40
41 /*      fprintf(of, "  if (_obj->type != %s_type) {\n" */
42 /*                  "    ev->major = FORB_EX_BAD_OPERATION;\n", iface_id); */
43 /*      if (has_retval) { */
44 /*              fprintf(of, "    return "FORB_RETVAL_VAR_NAME";\n"); */
45 /*      } */
46         fprintf(of, "  if (ev) ev->major = FORB_EX_NONE;\n");
47         fprintf(of, "  if (_obj->implementation) {\n"
48                     "    /* in-proc object */\n");
49         fprintf(of, "    if (!_obj->interface ||\n"
50                     "        strncmp(_obj->interface->name, \"%s\", %d) != 0) {\n"
51                     "      ev->major = FORB_EX_BAD_OPERATION;\n"
52                     "      return %s;\n"
53                     "    }\n", iface_id, strlen(iface_id), has_retval ? FORB_RETVAL_VAR_NAME : "");
54         fprintf(of, "    ");
55         if (has_retval) {
56                 fprintf(of, FORB_RETVAL_VAR_NAME " = ");
57         }
58         fprintf(of, "_%s_impl(_obj)->%s(_obj, ",
59                 iface_id, opname_plain);
60         for (sub = IDL_OP_DCL (tree).parameter_dcls; sub; sub = IDL_LIST (sub).next) {
61                 IDL_tree parm = IDL_LIST (sub).data;
62                 fprintf (of, "%s, ", IDL_IDENT (IDL_PARAM_DCL (parm).simple_declarator).str);
63         }
64         fprintf(of, "ev);\n");
65         
66         fprintf(of, "  } else {\n");
67         fprintf(of, "    /* remote object */\n"
68                     "    CDR_Codec codec;\n"
69                     "    forb_request_t req;\n"
70                     "    CDR_codec_init_static(&codec);\n"
71                     "    ex_on_fail(CDR_buffer_init(&codec, 256, forb_iop_MESSAGE_HEADER_SIZE), FORB_EX_NO_MEMORY);\n");
72         fprintf(of, "    ex_on_fail(forb_request_init(&req, _obj->orb) == 0, FORB_EX_INTERNAL);\n");
73         fprintf(of, "    forb_iop_prepare_request(&req, &codec, \"%s\", _obj, FORB_METHOD_INDEX(%s), ev);\n",
74                 iface_id, opname);
75         fprintf(of, "    if (forb_exception_occured(ev)) goto exception;\n");
76         for (sub = IDL_OP_DCL (tree).parameter_dcls; sub; sub = IDL_LIST (sub).next) {
77                 IDL_tree        parm = IDL_LIST (sub).data;
78                 IDL_ParamRole   role;
79                 role = oidl_attr_to_paramrole(IDL_PARAM_DCL(parm).attr);
80                 if (role == DATA_IN || role == DATA_INOUT) {
81                   char *name = IDL_IDENT(IDL_PARAM_DCL(parm).simple_declarator).str;
82                   fprintf(of, "    ex_on_fail(");
83                   forb_cbe_write_typespec(of, IDL_PARAM_DCL(parm).param_type_spec);
84                   fprintf(of, "_serialize(&codec, %s%s), FORB_EX_IMP_LIMIT);\n",
85                           role == DATA_IN ? "&":"",
86                           name);
87                 }
88         }
89         fprintf(of, "    forb_send_request(&req, ev);\n");
90         fprintf(of, "    if (forb_exception_occured(ev)) goto exception;\n");
91         fprintf(of, "    forb_wait_for_reply(&req, ev);\n");
92         fprintf(of, "    if (forb_exception_occured(ev)) goto exception;\n");
93         if (has_retval) {
94           fprintf(of, "    ");
95           forb_cbe_write_typespec(of, IDL_OP_DCL(tree).op_type_spec);
96           fprintf(of, "_deserialize(req.cdr_reply, &"FORB_RETVAL_VAR_NAME");\n");
97         }
98         for (sub = IDL_OP_DCL (tree).parameter_dcls; sub; sub = IDL_LIST (sub).next) {
99                 IDL_tree        parm = IDL_LIST (sub).data;
100                 IDL_ParamRole   role;
101                 role = oidl_attr_to_paramrole(IDL_PARAM_DCL(parm).attr);
102                 if (role == DATA_OUT || role == DATA_INOUT) {
103                   char *name = IDL_IDENT(IDL_PARAM_DCL(parm).simple_declarator).str;
104                   fprintf(of, "    ");
105                   forb_cbe_write_typespec(of, IDL_PARAM_DCL(parm).param_type_spec);
106                   fprintf(of, "_deserialize(req.cdr_reply, %s);\n", name);
107                 }
108         }
109         fprintf(of, "exception:\n"
110                     "    forb_reply_processed(&req);\n"
111                     "    forb_request_destroy(&req);\n"
112                     "    CDR_codec_release_buffer(&codec);\n");
113         fprintf(of, "  }\n");
114         if (has_retval) {
115                 fprintf(of, "  return " FORB_RETVAL_VAR_NAME ";\n");
116         }
117
118         fprintf (of, "}\n\n");
119
120         g_free (iface_id);
121         g_free (opname);
122
123         (*idx)++;
124 }
125
126 static void
127 cs_output_stubs (IDL_tree     tree,
128                  OIDL_C_Info *ci,
129                  int         *idx)
130 {
131         if (!tree)
132                 return;
133
134         switch (IDL_NODE_TYPE (tree)) {
135         case IDLN_MODULE:
136                 cs_output_stubs (IDL_MODULE (tree).definition_list, ci, idx);
137                 break;
138         case IDLN_LIST: {
139                 IDL_tree sub;
140
141                 for (sub = tree; sub; sub = IDL_LIST (sub).next)
142                         cs_output_stubs (IDL_LIST (sub).data, ci, idx);
143                 break;
144                 }
145         case IDLN_ATTR_DCL: {
146 /*              IDL_tree node; */
147       
148 /*              for (node = IDL_ATTR_DCL (tree).simple_declarations; node; node = IDL_LIST (node).next) { */
149 /*                      OIDL_Attr_Info *ai; */
150
151 /*                      ai = IDL_LIST (node).data->data; */
152         
153 /*                      cs_output_stubs (ai->op1, ci, idx); */
154
155 /*                      if (ai->op2) */
156 /*                              cs_output_stubs (ai->op2, ci, idx); */
157 /*              } */
158                 break;
159                 }
160         case IDLN_INTERFACE: {
161                 int real_idx = 0;
162                 char *id;
163                 /* Do not output skeletons for PIDL interfaces */
164                 if ((tree->declspec & IDLF_DECLSPEC_PIDL) == 0) {
165                   id = IDL_ns_ident_to_qstring (IDL_INTERFACE (tree).ident, "_", 0);
166                   fprintf(ci->fh, "#define _%s_impl(obj) ((struct forb_%s_impl*)(obj)->implementation)\n\n",
167                           id, id);
168                   g_free(id);
169                   cs_output_stubs (IDL_INTERFACE (tree).body, ci, &real_idx);
170                 }
171                 break;
172                 }
173         case IDLN_OP_DCL:
174                 cs_output_stub (tree, ci, idx);
175                 break;
176         default:
177                 break;
178         }
179 }
180
181 void
182 forb_idl_output_c_stubs (IDL_tree       tree,
183                           OIDL_Run_Info *rinfo,
184                           OIDL_C_Info   *ci)
185 {
186         fprintf (ci->fh, OIDL_C_WARNING);
187         fprintf (ci->fh, "#include <string.h>\n");
188 /*      fprintf (ci->fh, "#define FORB2_STUBS_API\n"); */
189         fprintf (ci->fh, "#include <forb/forb-idl.h>\n");
190         fprintf (ci->fh, "#include <forb/forb-internal.h>\n");
191         fprintf (ci->fh, "#include <forb/iop.h>\n");
192         fprintf (ci->fh, "#include \"%s.h\"\n\n", ci->base_name);
193
194         fprintf (ci->fh, "#define ex_on_fail(command, ex) if (!(command)) do { ev->major = (ex); goto exception; } while(0)\n");
195         fprintf (ci->fh, "#define FORB_REQEST_HDR_SIZE (forb_iop_MESSAGE_HEADER_SIZE + forb_iop_REQUEST_HEADER_SIZE)\n\n");
196
197         cs_output_stubs (tree, ci, NULL);
198 }