added support for pointer to const
[libt2n] / codegen / main.cpp
CommitLineData
0e627fe2
JT
1/*
2 Copyright (C) 2006
3 intra2net.com
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
19
e50cc1d6
JT
20#include <libxml++/libxml++.h>
21#include <cassert>
22#include <iostream>
060fbd87
JT
23#include <set>
24#include <fstream>
9d3993e5 25#include <list>
6be7b70f
JT
26#include <stdexcept>
27#include <boost/lexical_cast.hpp>
3907d211
JT
28#ifdef HAVE_CONFIG_H
29#include "config.h"
30#endif
e50cc1d6 31
2f0896ce
JT
32
33//! map group to class name
34std::string
35groupClass(const std::string &group) {
36 return std::string("cmd_group_")+group;
37}
38
52b6f93a 39//! convert string to upper case
e035276b
JT
40std::string
41toupper(std::string s) {
42 for (unsigned i=0; i<s.length(); ++i) s[i]=toupper(s[i]);
43 return s;
44}
45
52b6f93a 46//! replace all characters f by r in string s
e035276b
JT
47std::string
48replace(std::string s, char f, char r) {
49 for (unsigned i=0; i<s.length(); ++i) if (s[i]==f) s[i]=r;
50 return s;
51}
52
52b6f93a
JT
53//! strip prefix from string s
54/*!
55 \return string s without prefix or an empty string on error
56 */
e035276b
JT
57std::string
58strip(std::string s, std::string prefix)
59{
60 std::string error;
61 if ( (prefix.length()>s.length() ) || ( std::string(s,0,prefix.length())!=prefix ) ) return error;
62 return std::string(s, prefix.length(), s.length()-prefix.length());
63}
64
e50cc1d6
JT
65//! get child element by id
66/*!
67 \return pointer to element having id or null on error
68 \todo find libxmlpp pendant
69*/
70const xmlpp::Element* get_element_by_id(const xmlpp::Element* element, const std::string &id)
71{
72 const xmlpp::Attribute* cid = element->get_attribute("id");
73 if ( cid && ( cid->get_value() == id)) return element;
74
75 //Recurse through child nodes:
76 xmlpp::Node::NodeList list = element->get_children();
77 for(xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter)
78 {
79 const xmlpp::Element* element = dynamic_cast<const xmlpp::Element*>(*iter);
80 if (element) {
81 const xmlpp::Element* match = get_element_by_id(element, id);
82 if (match) return match;
83 }
84 }
85 return NULL;
86}
87
6be7b70f
JT
88std::string
89get_file(const xmlpp::Element* root, const std::string &file_id)
90{
91 std::string error;
92 const xmlpp::Element* e=get_element_by_id(root, file_id);
93 if ((!e)||(!e->get_attribute("name"))) return error;
94 return e->get_attribute("name")->get_value();
95}
96
e50cc1d6
JT
97//! get namespace by id
98/*!
99 \return namespace name or empty string on error
100*/
101std::string get_namespace(const xmlpp::Element* root, const std::string &id)
102{
103 std::string error;
104 const xmlpp::Element* element(get_element_by_id(root, id));
105 if ((!element)||(!element->get_attribute("name"))) return error;
106 return element->get_attribute("name")->get_value();
107}
108
ef7b2923
JT
109//! procedure marked for export?
110bool
111is_marked(const std::string &attrs)
d340d435
JT
112{
113 // todo: improve this
d340d435
JT
114 std::string to_match("gccxml(libt2n-");
115 std::string::size_type p(attrs.find(to_match));
ef7b2923 116 return (p!=std::string::npos);
d340d435
JT
117}
118
e035276b
JT
119struct type_info
120{
121 std::string name;
122 std::string noref_name;
123 bool operator==(const type_info& o) {return (name==o.name) && (noref_name == o.noref_name);}
9d3993e5 124 std::string noref() const {return noref_name.empty() ? name : noref_name;}
e035276b
JT
125};
126
127std::ostream &operator<<(std::ostream &o, const type_info &t) {
128 o << t.name;
129 return o;
130}
131
6be7b70f
JT
132struct parse_error : public std::runtime_error
133{
134 parse_error(const std::string &file, unsigned line, const std::string &msg)
135 : std::runtime_error(file+":"+boost::lexical_cast<std::string>(line)+": error: "+msg)
136 {}
137};
138
e50cc1d6
JT
139//! get type by id
140/*!
141 \return type name or empty string on error
142*/
e035276b 143type_info get_type(const xmlpp::Element* root, const std::string &id)
e50cc1d6 144{
e035276b 145 type_info error;
e50cc1d6
JT
146 const xmlpp::Element* element(get_element_by_id(root, id));
147 if (!element) return error;
148
149 // TODO: not yet complete
150 // if we recurse - when do we stop?
151 // if it is a typedef? yes? (hmm if the typedef is in the file parsed this will not work)
060fbd87 152
9d3993e5 153 // TODO: const and reference types handling is a ugly hack
060fbd87 154
e50cc1d6
JT
155 std::string tag(element->get_name());
156 if (tag=="ReferenceType") {
157 assert(element->get_attribute("type"));
e035276b 158 type_info ret(get_type(root, element->get_attribute("type")->get_value()));
e50cc1d6 159 if (ret==error) return error;
e035276b
JT
160 // at the moment we only support const &
161 // todo: nice error message!
162 if ((ret.noref_name=strip(ret.name,"const ")).empty()) return error;
163 ret.name=ret.name+"&";
164 return ret;
e50cc1d6
JT
165 }else if (tag=="CvQualifiedType") {
166 assert(element->get_attribute("type"));
e035276b 167 type_info ret(get_type(root, element->get_attribute("type")->get_value()));
e50cc1d6 168 if (ret==error) return error;
e035276b
JT
169 ret.name=std::string("const ")+ret.name;
170 return ret;
6be7b70f 171 }else if (tag=="PointerType") {
2fad99db
JT
172 // todo: nearly the same as reference type handling
173 assert(element->get_attribute("type"));
174 type_info ret(get_type(root, element->get_attribute("type")->get_value()));
175 if (ret==error) return error;
176 // at the moment we only support const &
177 // todo: nice error message!
178 if ((ret.noref_name=strip(ret.name,"const ")).empty()) return error;
179 ret.name=ret.name+"*";
180 return ret;
e50cc1d6
JT
181 }
182
183 assert(element->get_attribute("name"));
e035276b 184 type_info ret;
fb5c13c6
JT
185 if (element->get_attribute("context")) {
186 ret.name=get_namespace(root, element->get_attribute("context")->get_value());
187 if (ret.name!="::")
188 ret.name+="::";
189 else
190 // do not explicitely add ::
191 ret.name="";
192 }
9d3993e5 193 ret.name+=element->get_attribute("name")->get_value();
e035276b 194 return ret;
e50cc1d6
JT
195}
196
060fbd87
JT
197struct t2n_procedure
198{
9d3993e5 199 typedef std::list<std::pair<std::string, type_info> > Args;
e50cc1d6 200
e035276b 201 type_info ret_type;
060fbd87 202 std::string name;
52b6f93a 203 std::string mangled;
060fbd87 204 Args args;
e50cc1d6 205
060fbd87 206 std::string ret_classname() const {
52b6f93a 207 return name+mangled+"_res";
060fbd87
JT
208 }
209 std::string cmd_classname() const {
52b6f93a 210 return name+mangled+"_cmd";
060fbd87
JT
211 }
212};
e50cc1d6 213
060fbd87
JT
214std::ostream &operator<<(std::ostream &o, const t2n_procedure::Args &args) {
215 for (t2n_procedure::Args::const_iterator it=args.begin();it!=args.end();++it) {
216 if (it!=args.begin()) o << ", ";
217 o << it->second << " " << it->first;
218 }
219 return o;
220}
e50cc1d6 221
060fbd87
JT
222std::ostream &operator<<(std::ostream &o, const t2n_procedure &f) {
223 o << f.ret_type << " " << f.name << "(" << f.args << ")";
224 return o;
225}
e50cc1d6 226
060fbd87
JT
227class Parser
228{
229public:
d340d435 230 Parser(const std::string &fname) : m_fname(fname) {}
e50cc1d6 231
060fbd87
JT
232 std::list<t2n_procedure> get_procedures() {
233 xmlpp::DomParser parser;
234 // parser.set_validate();
235 parser.set_substitute_entities(); //We just want the text to be resolved/unescaped automatically.
236 parser.parse_file(m_fname);
237 if(parser)
238 {
239 //Walk the tree:
240 const xmlpp::Node* pNode = parser.get_document()->get_root_node(); //deleted by DomParser.
241 const xmlpp::Element* root = dynamic_cast<const xmlpp::Element*>(pNode);
242 assert(root);
243 visit_node(root);
e50cc1d6 244 }
060fbd87 245 return m_procedures;
e50cc1d6 246 }
060fbd87
JT
247protected:
248 std::string m_fname;
249 std::list<t2n_procedure> m_procedures;
250
251 void parse_function(const xmlpp::Element* root, const xmlpp::Node* node) {
252 const xmlpp::Element* element = dynamic_cast<const xmlpp::Element*>(node);
253 if (!element) return;
254
255 const xmlpp::Attribute* attributes = element->get_attribute("attributes");
256 const xmlpp::Attribute* name = element->get_attribute("name");
52b6f93a 257 const xmlpp::Attribute* mangled = element->get_attribute("mangled");
060fbd87 258 const xmlpp::Attribute* returns = element->get_attribute("returns");
52b6f93a 259 if ((!attributes)||(!name)||(!mangled)||(!returns)) return;
060fbd87
JT
260
261 // check wether the procedure is marked (TODO: improve)
262 // attributes are speparated by spaces?
060fbd87 263
060fbd87 264 t2n_procedure f;
ef7b2923 265 if (!is_marked(attributes->get_value())) return;
e50cc1d6 266
060fbd87
JT
267 // we need the return type
268 f.ret_type=get_type(root, returns->get_value());
269 f.name=name->get_value();
52b6f93a 270 f.mangled=mangled->get_value();
060fbd87
JT
271
272 xmlpp::Node::NodeList list = node->get_children("Argument");
273 for(xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter)
274 {
275 const xmlpp::Element* arg = dynamic_cast<const xmlpp::Element*>(*iter);
276 if ( arg ) {
277 assert(arg->get_name() == "Argument");
278 assert(arg->get_attribute("name"));
279 assert(arg->get_attribute("type"));
9d3993e5 280 f.args.push_back(std::pair<std::string, type_info>(arg->get_attribute("name")->get_value(), get_type(root, arg->get_attribute("type")->get_value())));
6be7b70f
JT
281 // todo: ugly - could be any other error
282 if (f.args.back().second.name.empty()) {
283 assert(element->get_attribute("file"));
284 assert(element->get_attribute("line"));
285 throw parse_error(get_file(root, element->get_attribute("file")->get_value()),
286 boost::lexical_cast<unsigned>(element->get_attribute("line")->get_value())-1,
287 std::string("type of parameter `")+f.args.back().first+"' not (yet?) supported");
288 }
060fbd87
JT
289 }
290 }
9d3993e5 291 std::cerr << "Found function: " << f << std::endl;
060fbd87 292 m_procedures.push_back(f);
e50cc1d6 293 }
e50cc1d6 294
060fbd87
JT
295 void visit_node(const xmlpp::Element* root, const xmlpp::Node* node = NULL, unsigned int indentation = 0)
296 {
297 if (!node) node=root;
060fbd87
JT
298
299 const xmlpp::ContentNode* nodeContent = dynamic_cast<const xmlpp::ContentNode*>(node);
300 const xmlpp::TextNode* nodeText = dynamic_cast<const xmlpp::TextNode*>(node);
301 const xmlpp::CommentNode* nodeComment = dynamic_cast<const xmlpp::CommentNode*>(node);
e50cc1d6 302
060fbd87
JT
303 if(nodeText && nodeText->is_white_space()) //Let's ignore the indenting - you don't always want to do this.
304 return;
e50cc1d6 305
060fbd87 306 std::string nodename = node->get_name();
e50cc1d6 307
060fbd87
JT
308 if(!nodeText && !nodeComment && !nodename.empty()) //Let's not say "name: text".
309 {
52b6f93a 310 if (node->get_name() == "Function") parse_function(root, node);
060fbd87 311 }
060fbd87
JT
312 if(!nodeContent)
313 {
314 //Recurse through child nodes:
315 xmlpp::Node::NodeList list = node->get_children();
316 for(xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter)
317 {
318 visit_node(root, *iter, indentation + 2); //recursive
319 }
320 }
e50cc1d6 321 }
060fbd87
JT
322};
323
d340d435 324void output_common_hpp(std::ostream &o, const std::string &group, const std::list<t2n_procedure> &procs) {
2f0896ce 325 o << "class " << groupClass(group) << " : public libt2n::command\n"
d340d435
JT
326 << "{\n"
327 << "private:\n"
328 << " friend class boost::serialization::access;\n"
329 << " template<class Archive>\n"
330 << " void serialize(Archive & ar, const unsigned int /* version */)\n"
331 << " {ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(libt2n::command);}\n"
332 << "};\n";
060fbd87 333
d340d435
JT
334 for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it) {
335 o << "class " << it->ret_classname() << " : public libt2n::result\n"
336 << "{\n"
337 << "private:\n"
338 << " " << it->ret_type << " res;\n"
339 << " friend class boost::serialization::access;\n"
340 << " template<class Archive>\n"
341 << " void serialize(Archive & ar, const unsigned int /* version */)\n"
342 << " {\n"
343 << " ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(libt2n::result);\n"
344 << " ar & BOOST_SERIALIZATION_NVP(res);\n"
345 << " }\n"
346 << "public:\n"
347 << " " << it->ret_classname() << "() {}\n"
348 << " " << it->ret_classname() << "(const " << it->ret_type << " &_res) : res(_res) {}\n"
349 << " " << it->ret_type << " get_data() { return res; }\n"
350 << "};\n";
351 }
352 for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it) {
2f0896ce 353 o << "class " << it->cmd_classname() << " : public " << groupClass(group) << "\n"
d340d435
JT
354 << "{\n"
355 << "private:\n";
356 for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait) {
357 o << " " << ait->second.noref() << " " << ait->first << ";\n";
358 }
359 o << " friend class boost::serialization::access;\n"
360 << " template<class Archive>\n"
361 << " void serialize(Archive & ar, const unsigned int /* version */)\n"
362 << " {\n"
2f0896ce 363 << " ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(" << groupClass(group) << ");\n";
d340d435
JT
364 for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait) {
365 o << " ar & BOOST_SERIALIZATION_NVP(" << ait->first << ");\n";
366 }
367
368 // default constructor
369 o << " }\n"
370 << "\n"
371 << "public:\n"
372 << " " << it->cmd_classname() << "() {}\n";
373
374 // constructor taking all arguments
375 o << " " << it->cmd_classname() << "(";
376 for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait) {
377 if (ait!=it->args.begin()) o << ", ";
378 o << ait->second << " _" << ait->first;
379 }
380 o << ") : ";
381 for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait) {
382 if (ait!=it->args.begin()) o << ", ";
2fad99db
JT
383 // pointers are const pointers and must be dereferenced
384 o << ait->first << "(" << ((ait->second.name.find_first_of('*')!=std::string::npos) ? "*" : "" ) << "_" << ait->first << ")";
d340d435
JT
385 }
386 o << " {}\n"
387 << " libt2n::result* operator()();\n"
388 << "};\n";
389 }
060fbd87
JT
390}
391
d340d435 392void output_common_cpp(std::ostream &o, const std::string &group, const std::list<t2n_procedure> &procs, const std::string &common_hpp) {
060fbd87 393 o << "#include \"" << common_hpp << "\"\n"
e035276b 394 << "#include <boost/serialization/export.hpp>\n"
060fbd87
JT
395 << "\n"
396 << "/* register types with boost serialization */\n";
2f0896ce 397 o << "BOOST_CLASS_EXPORT(" << groupClass(group) << ")\n";
060fbd87
JT
398 for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it) {
399 o << "BOOST_CLASS_EXPORT("<<it->ret_classname()<<")\n"
400 << "BOOST_CLASS_EXPORT("<<it->cmd_classname()<<")\n";
e50cc1d6 401 }
060fbd87 402}
e50cc1d6 403
d340d435 404void output_client_hpp(std::ostream &o, const std::string &group, const std::list<t2n_procedure> &procs) {
060fbd87
JT
405 o << "#include <command_client.hxx>\n";
406
2f0896ce 407 o << "class " << groupClass(group) << "_client : public libt2n::command_client\n"
d340d435
JT
408 << "{\n"
409 << "public:\n"
2f0896ce 410 << groupClass(group) << "_client(libt2n::client_connection &_c,\n"
d340d435
JT
411 << " long long _command_timeout_usec=command_timeout_usec_default,\n"
412 << " long long _hello_timeout_usec=hello_timeout_usec_default)\n"
413 << " : libt2n::command_client(_c,_command_timeout_usec,_hello_timeout_usec)\n"
414 << " {}\n";
415 for (std::list<t2n_procedure>::const_iterator pit=procs.begin();pit!=procs.end();++pit) {
416 o << " " << *pit << ";\n";
060fbd87 417 }
d340d435 418 o << "};\n";
060fbd87 419}
e50cc1d6 420
d340d435 421void output_client_cpp(std::ostream &o, const std::string &group, const std::list<t2n_procedure> &procs, const std::string &common_hpp, const std::string &common_cpp, const std::string &client_hpp) {
060fbd87
JT
422 o << "#include \"" << client_hpp << "\"\n"
423 << "#include \"" << common_hpp << "\"\n"
424 << "// fake\n";
425 for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it) {
426 o << "libt2n::result* " << it->cmd_classname() << "::operator()() { return NULL; }\n";
427 }
428
d340d435 429 for (std::list<t2n_procedure>::const_iterator pit=procs.begin();pit!=procs.end();++pit) {
2f0896ce 430 o << pit->ret_type << " " << groupClass(group) << "_client::" << pit->name << "(" << pit->args << ")\n"
d340d435
JT
431 << "{\n"
432 << " libt2n::result_container rc;\n"
433 << " send_command(new " << pit->cmd_classname() << "(";
434 for (t2n_procedure::Args::const_iterator ait=pit->args.begin();ait!=pit->args.end();++ait) {
435 if (ait!=pit->args.begin()) o << ", ";
436 o << ait->first;
437 }
438 o << "), rc);\n"
439 << " " << pit->ret_classname() << "* res=dynamic_cast<" << pit->ret_classname() << "*>(rc.get_result());\n"
440 << " if (!res) throw libt2n::t2n_communication_error(\"result object of wrong type\");\n"
441 << " return res->get_data();\n"
442 << "}\n";
e50cc1d6 443 }
060fbd87
JT
444
445 // include in this compilation unit to ensure the compilation unit is used
446 // see also:
447 // http://www.google.de/search?q=g%2B%2B+static+initializer+in+static+library
448 o << "#include \"" << common_cpp << "\"\n";
449}
450
d340d435 451void output_server_hpp(std::ostream &o, const std::string & /* group */, const std::list<t2n_procedure> &procs, const std::string &common_hpp) {
a96ab628
JT
452 o << "#include \"" << common_hpp << "\"\n";
453
454 // output function declarations
455 for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it)
456 o << *it << ";\n";
457}
458
d340d435 459void output_server_cpp(std::ostream &o, const std::string &group, const std::list<t2n_procedure> &procs, const std::string &common_hpp, const std::string &common_cpp) {
060fbd87
JT
460 o << "#include \"" << common_hpp << "\"\n";
461
462 for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it) {
463 o << *it << ";\n";
464 o << "libt2n::result* " << it->cmd_classname() << "::operator()() { return new " << it->ret_classname() << "(" << it->name << "(";
465 for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait) {
466 if (ait!=it->args.begin()) o << ", ";
2fad99db
JT
467 // get pointer
468 if (ait->second.name.find_first_of('*')!=std::string::npos)
469 o << '&';
060fbd87 470 o << ait->first;
e50cc1d6 471 }
060fbd87 472 o << ")); }\n";
e50cc1d6 473 }
060fbd87
JT
474 o << "#include \"" << common_cpp << "\"\n";
475}
476
060fbd87
JT
477struct header_file : public std::ofstream
478{
479 header_file(const char* fname) : std::ofstream(fname) {
480 std::cerr << "create header: '" << fname << "'" << std::endl;
481 std::string macro(replace(toupper(fname),'.','_'));
3907d211 482 *this << "// automatically generated code (generated by libt2n-codegen " << VERSION << ") - do not edit\n" << std::endl;
060fbd87
JT
483 *this << "#ifndef " << macro << "\n"
484 << "#define " << macro << "\n";
485 }
486 ~header_file() {
487 *this << "#endif" << std::endl;
488 }
489};
490
491struct cpp_file : public std::ofstream
492{
493 cpp_file(const char* fname) : std::ofstream(fname) {
494 std::cerr << "create cpp: '" << fname << "'" << std::endl;
495 *this << "// automatically generated code - do not edit\n" << std::endl;
496 }
497};
498
499int
500main(int argc, char* argv[])
e50cc1d6 501{
3907d211
JT
502 // todo: maybe use getopt
503 if ((argc>1)&&(std::string(argv[1])=="--version")) {
504 std::cerr << VERSION << std::endl;
505 return 0;
506 }
507 if (argc < 3)
508 {
509 std::cerr << "Usage: " << argv[0] << "default-group gccxml-file1 gccxml-file2 ... " << std::endl;
510 return 1;
511 }
060fbd87 512
3907d211 513 try{
85106017 514 std::string group(argv[1]);
0cfa3fb2 515 std::list<std::string> xmlfiles;
85106017 516 for (int i=2;i<argc;++i)
0cfa3fb2
JT
517 xmlfiles.push_back(argv[i]);
518
a96ab628 519 std::string prefix=group+"_";
0cfa3fb2
JT
520 std::list<t2n_procedure> procedures;
521 for (std::list<std::string>::iterator it=xmlfiles.begin();it!=xmlfiles.end();++it) {
d340d435
JT
522 std::cerr << "Parse " << *it << std::endl;
523 Parser parser(*it);
524 const std::list<t2n_procedure> &p(parser.get_procedures());
525 std::copy(p.begin(), p.end(), std::back_inserter(procedures));
0cfa3fb2 526 }
6be7b70f
JT
527
528 std::cerr << "Procedures:" << std::endl;
529 for (std::list<t2n_procedure>::const_iterator it=procedures.begin();it!=procedures.end();++it)
530 std::cerr << *it << ";" << std::endl;
531
6be7b70f
JT
532 std::string common_hpp_fname(prefix+"common.hxx");
533 std::string common_cpp_fname(prefix+"common.cpp");
534 std::string client_hpp_fname(prefix+"client.hxx");
535 std::string client_cpp_fname(prefix+"client.cpp");
a96ab628 536 std::string server_hpp_fname(prefix+"server.hxx");
6be7b70f
JT
537 std::string server_cpp_fname(prefix+"server.cpp");
538
539 header_file common_hpp(common_hpp_fname.c_str());
540 common_hpp << "// boost serialization is picky about order of include files => we have to include this one first\n"
85106017
JT
541 << "#include \"codegen-stubhead.hxx\"\n"
542 << "#include \"" << group << ".hxx\"\n";
543
d340d435 544 output_common_hpp(common_hpp, group, procedures);
6be7b70f 545
25924cae 546 cpp_file common_cpp(common_cpp_fname.c_str());
d340d435 547 output_common_cpp(common_cpp, group, procedures, common_hpp_fname);
6be7b70f 548
25924cae
JT
549 header_file client_hpp(client_hpp_fname.c_str());
550 client_hpp << "// boost serialization is picky about order of include files => we have to include this one first\n"
85106017
JT
551 << "#include \"codegen-stubhead.hxx\"\n"
552 << "#include \"" << group << ".hxx\"\n";
d340d435 553 output_client_hpp(client_hpp, group, procedures);
6be7b70f 554
25924cae 555 cpp_file client_cpp(client_cpp_fname.c_str());
d340d435 556 output_client_cpp(client_cpp, group, procedures, common_hpp_fname, common_cpp_fname, client_hpp_fname);
6be7b70f 557
25924cae 558 header_file server_hpp(server_hpp_fname.c_str());
d340d435 559 output_server_hpp(server_hpp, group, procedures, common_hpp_fname);
a96ab628 560
25924cae 561 cpp_file server_cpp(server_cpp_fname.c_str());
d340d435 562 output_server_cpp(server_cpp, group, procedures, common_hpp_fname, common_cpp_fname);
6be7b70f 563 }catch(const parse_error &e){
25924cae
JT
564 std::cerr << e.what() << std::endl;
565 return EXIT_FAILURE;
6be7b70f
JT
566 }
567 return EXIT_SUCCESS;
e50cc1d6 568}