libt2n: (gerd) really fix default arguments (#1427)
[libt2n] / codegen / main.cpp
1 /*
2     Copyright (C) 2006-2008
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
20 #include <libxml++/libxml++.h>
21 #include <cassert>
22 #include <iostream>
23 #include <set>
24 #include <fstream>
25 #include <list>
26 #include <stdexcept>
27 #include <string>
28 #include <boost/lexical_cast.hpp>
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33
34 //! map group to class name
35 std::string groupClass(const std::string &group)
36 {
37     return std::string("cmd_group_")+group;
38 }
39
40 //! convert string to upper case
41 std::string toupper(std::string s)
42 {
43     for (unsigned i=0; i<s.length(); ++i) s[i]=toupper(s[i]);
44     return s;
45 }
46
47 //! replace all characters f by r in string s
48 std::string replace(std::string s, char f, char r)
49 {
50     for (unsigned i=0; i<s.length(); ++i) if (s[i]==f) s[i]=r;
51     return s;
52 }
53
54 //! strip prefix from string s
55 /*!
56   \return string s without prefix or an empty string on error
57  */
58 std::string strip(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
65 //! get child element by id
66 /*!
67   \return pointer to element having id or null on error
68   \todo find libxmlpp pendant
69 */
70 const 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         {
82             const xmlpp::Element* match = get_element_by_id(element, id);
83             if (match) return match;
84         }
85     }
86     return NULL;
87 }
88
89 std::string get_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
97 //! get namespace by id
98 /*!
99   \return namespace name or empty string on error
100 */
101 std::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     // [RP:20071024]: use "demangled" attribute instead of "name" to cover nested namespaces:
106     if ((!element)||(!element->get_attribute("demangled"))) return error;
107     return element->get_attribute("demangled")->get_value();
108 }
109
110 //! procedure marked for export?
111 bool is_marked(const std::string &attrs)
112 {
113     // todo: improve this
114     std::string to_match("gccxml(libt2n-");
115     std::string::size_type p(attrs.find(to_match));
116     return (p!=std::string::npos);
117 }
118
119 struct 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);}
124     std::string noref() const {return noref_name.empty() ? name : noref_name;}
125     bool isVoid() const {return name=="void";}
126 };
127
128 std::ostream &operator<<(std::ostream &o, const type_info &t)
129 {
130     o << t.name;
131     return o;
132 }
133
134 struct parse_error : public std::runtime_error
135 {
136     parse_error(const std::string &file, unsigned line, const std::string &msg)
137             : std::runtime_error(file+":"+boost::lexical_cast<std::string>(line)+": error: "+msg)
138     {}
139 };
140
141 //! get type by id
142 /*!
143   \return type name or empty string on error
144 */
145 type_info get_type(const xmlpp::Element* root, const std::string &id)
146 {
147     type_info error;
148     const xmlpp::Element* element(get_element_by_id(root, id));
149     if (!element) return error;
150
151     // TODO: not yet complete
152     // if we recurse - when do we stop?
153     // if it is a typedef? yes? (hmm if the typedef is in the file parsed this will not work)
154
155     // TODO: const and reference types handling is a ugly hack
156
157     std::string tag(element->get_name());
158     if (tag=="ReferenceType")
159     {
160         assert(element->get_attribute("type"));
161         type_info ret(get_type(root, element->get_attribute("type")->get_value()));
162         if (ret==error) return error;
163         // at the moment we only support const &
164         // todo: nice error message!
165         if ((ret.noref_name=strip(ret.name,"const ")).empty()) return error;
166         ret.name=ret.name+"&";
167         return ret;
168     }
169     else if (tag=="CvQualifiedType")
170     {
171         assert(element->get_attribute("type"));
172         type_info ret(get_type(root, element->get_attribute("type")->get_value()));
173         if (ret==error) return error;
174         ret.name=std::string("const ")+ret.name;
175         return ret;
176     }
177     else if (tag=="PointerType")
178     {
179         // todo: nearly the same as reference type handling
180         assert(element->get_attribute("type"));
181         type_info ret(get_type(root, element->get_attribute("type")->get_value()));
182         if (ret==error) return error;
183         // at the moment we only support const &
184         // todo: nice error message!
185         if ((ret.noref_name=strip(ret.name,"const ")).empty()) return error;
186         ret.name=ret.name+"*";
187         return ret;
188     }
189
190     assert(element->get_attribute("name"));
191     type_info ret;
192     if (element->get_attribute("context"))
193     {
194         ret.name=get_namespace(root, element->get_attribute("context")->get_value());
195         if (ret.name!="::")
196             ret.name+="::";
197         else
198             // do not explicitely add ::
199             ret.name="";
200     }
201     ret.name+=element->get_attribute("name")->get_value();
202     return ret;
203 }
204
205 struct Arg
206 {
207     std::string name;
208     type_info type;
209     std::string defaultArg;
210 };
211
212 struct t2n_procedure
213 {
214     typedef std::list<Arg> Args;
215
216     type_info ret_type;
217     std::string name;
218     std::string mangled;
219     Args  args;
220
221     std::string ret_classname() const
222     {
223         return name+mangled+"_res";
224     }
225     std::string cmd_classname() const
226     {
227         return name+mangled+"_cmd";
228     }
229     bool hasReturn() const {return !ret_type.isVoid();}
230 };
231
232 std::ostream &operator<<(std::ostream &o, const t2n_procedure::Args &args)
233 {
234     for (t2n_procedure::Args::const_iterator it=args.begin();it!=args.end();++it)
235     {
236         if (it!=args.begin()) o << ", ";
237         o << it->type << " " << it->name;
238
239         if (!it->defaultArg.empty())
240             o << "=" << it->defaultArg;
241     }
242     return o;
243 }
244
245 std::ostream &operator<<(std::ostream &o, const t2n_procedure &f)
246 {
247     o << f.ret_type << " " << f.name << "(" << f.args << ")";
248     return o;
249 }
250
251 std::pair<std::string, unsigned>
252 get_file_and_line(const xmlpp::Element* root, const xmlpp::Element* element)
253 {
254     return std::pair<std::string, unsigned>(get_file(root, element->get_attribute("file")->get_value()),
255                                             boost::lexical_cast<unsigned>(element->get_attribute("line")->get_value())-1);
256 }
257
258 std::string get_file_and_line_as_string(const xmlpp::Element* root, const xmlpp::Element* element)
259 {
260     std::pair<std::string, unsigned> fl(get_file_and_line(root,element));
261     return std::string(fl.first)+":"+boost::lexical_cast<std::string>(fl.second);
262 }
263
264 class Parser
265 {
266 public:
267     Parser(const std::string &fname) : m_fname(fname) {}
268
269     std::list<t2n_procedure> get_procedures()
270     {
271         xmlpp::DomParser parser;
272         //    parser.set_validate();
273         parser.set_substitute_entities(); //We just want the text to be resolved/unescaped automatically.
274         parser.parse_file(m_fname);
275         if (parser)
276         {
277             //Walk the tree:
278             const xmlpp::Node* pNode = parser.get_document()->get_root_node(); //deleted by DomParser.
279             const xmlpp::Element* root = dynamic_cast<const xmlpp::Element*>(pNode);
280             assert(root);
281             visit_node(root);
282         }
283         return m_procedures;
284     }
285 protected:
286     std::string m_fname;
287     std::list<t2n_procedure> m_procedures;
288
289     void parse_function(const xmlpp::Element* root, const xmlpp::Node* node)
290     {
291         const xmlpp::Element* element = dynamic_cast<const xmlpp::Element*>(node);
292         if (!element) return;
293
294         const xmlpp::Attribute* attributes = element->get_attribute("attributes");
295         const xmlpp::Attribute* name = element->get_attribute("name");
296         const xmlpp::Attribute* mangled = element->get_attribute("mangled");
297         const xmlpp::Attribute* returns = element->get_attribute("returns");
298         if ((!attributes)||(!name)||(!mangled)||(!returns)) return;
299
300         // check wether the procedure is marked (TODO: improve)
301         // attributes are speparated by spaces?
302
303         t2n_procedure f;
304         if (!is_marked(attributes->get_value())) return;
305
306         // we need the return type
307         f.ret_type=get_type(root, returns->get_value());
308         f.name=name->get_value();
309         f.mangled=mangled->get_value();
310
311         xmlpp::Node::NodeList list = node->get_children("Argument");
312         for (xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter)
313         {
314             const xmlpp::Element* arg = dynamic_cast<const xmlpp::Element*>(*iter);
315             if ( arg )
316             {
317                 struct Arg a;
318
319                 assert(arg->get_name() == "Argument");
320
321                 assert(arg->get_attribute("name"));
322                 a.name=arg->get_attribute("name")->get_value();
323
324                 assert(arg->get_attribute("type"));
325                 a.type=get_type(root, arg->get_attribute("type")->get_value());
326
327                 // this would be the nice way of solving the problem of default arguments
328                 // but currently the output of gccxml is unreliable (e.g. namespace only
329                 // sometimes available)
330                 // if(arg->get_attribute("default"))
331                 //    a.defaultArg=arg->get_attribute("default")->get_value();
332
333                 // so we need to get the def. arg. via attribute
334                 // which is previously set by the macro LIBT2N_DEFAULT_ARG(type,value)
335                 if(arg->get_attribute("attributes"))
336                 {
337                     std::string attr=arg->get_attribute("attributes")->get_value();
338                     const std::string look_for = "gccxml(libt2n-default-arg,";
339
340                     if (attr.compare(0,look_for.size(),look_for) == 0)
341                         a.defaultArg=attr.substr(look_for.size(),attr.size()-look_for.size()-1);
342                 }
343
344                 // todo: ugly - could be any other error
345                 if (a.type.name.empty())
346                 {
347                     assert(element->get_attribute("file"));
348                     assert(element->get_attribute("line"));
349                     std::pair<std::string, unsigned> file_and_line(get_file_and_line(root, element));
350                     throw parse_error(file_and_line.first,
351                                       file_and_line.second,
352                                       std::string("type of parameter '")+a.name+"' not (yet?) supported");
353                 }
354
355                 f.args.push_back(a);
356             }
357         }
358         std::cerr << get_file_and_line_as_string(root, element) << ":\texport procedure: " << f << std::endl;
359         m_procedures.push_back(f);
360     }
361
362     void visit_node(const xmlpp::Element* root, const xmlpp::Node* node = NULL, unsigned int indentation = 0)
363     {
364         if (!node) node=root;
365
366         const xmlpp::ContentNode* nodeContent = dynamic_cast<const xmlpp::ContentNode*>(node);
367         const xmlpp::TextNode* nodeText = dynamic_cast<const xmlpp::TextNode*>(node);
368         const xmlpp::CommentNode* nodeComment = dynamic_cast<const xmlpp::CommentNode*>(node);
369
370         if (nodeText && nodeText->is_white_space()) //Let's ignore the indenting - you don't always want to do this.
371             return;
372
373         std::string nodename = node->get_name();
374
375         if (!nodeText && !nodeComment && !nodename.empty()) //Let's not say "name: text".
376         {
377             if (node->get_name() == "Function") parse_function(root, node);
378         }
379         if (!nodeContent)
380         {
381             //Recurse through child nodes:
382             xmlpp::Node::NodeList list = node->get_children();
383             for (xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter)
384             {
385                 visit_node(root, *iter, indentation + 2); //recursive
386             }
387         }
388     }
389 };
390
391 void output_common_hpp(std::ostream &o, const std::string &group, const std::list<t2n_procedure> &procs)
392 {
393     o << "class " << groupClass(group) << " : public libt2n::command\n"
394     << "{\n"
395     << "private:\n"
396     << " friend class boost::serialization::access;\n"
397     << " template<class Archive>\n"
398     << " void serialize(Archive & ar, const unsigned int /* version */)\n"
399     << " {ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(libt2n::command);}\n"
400     << "};\n";
401
402     for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it)
403     {
404         o << "class " << it->ret_classname() << " : public libt2n::result\n"
405         << "{\n"
406         << "private:\n";
407         if (it->hasReturn())
408             o << " " << it->ret_type << " res;\n";
409         o << " friend class boost::serialization::access;\n"
410         << " template<class Archive>\n"
411         << " void serialize(Archive & ar, const unsigned int /* version */)\n"
412         << " {\n"
413         << "  ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(libt2n::result);\n";
414         if (it->hasReturn())
415             o << "  ar & BOOST_SERIALIZATION_NVP(res);\n";
416         o << " }\n"
417         << "public:\n"
418         << " " << it->ret_classname() << "() {}\n";
419         if (it->hasReturn())
420         {
421             o << " " << it->ret_classname() << "(const " << it->ret_type << " &_res) : res(_res) {}\n"
422             << " " << it->ret_type << " get_data() { return res; }\n";
423         }
424         o << "};\n";
425     }
426     for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it)
427     {
428         o << "class " << it->cmd_classname() << " : public " << groupClass(group) << "\n"
429         << "{\n"
430         << "private:\n";
431         for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait)
432         {
433             o << " " << ait->type.noref() << " " << ait->name << ";\n";
434         }
435         o << " friend class boost::serialization::access;\n"
436         << " template<class Archive>\n"
437         << " void serialize(Archive & ar, const unsigned int /* version */)\n"
438         << " {\n"
439         << "  ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(" << groupClass(group) << ");\n";
440         for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait)
441         {
442             o << "  ar & BOOST_SERIALIZATION_NVP(" << ait->name << ");\n";
443         }
444
445         // default constructor
446         o << " }\n"
447         << "\n"
448         << "public:\n"
449         << " " << it->cmd_classname() << "() {}\n";
450
451         // constructor taking all arguments
452         if (!it->args.empty())
453         {
454             o << " " << it->cmd_classname() << "(";
455             for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait)
456             {
457                 if (ait!=it->args.begin()) o << ", ";
458                 o << ait->type << " _" << ait->name;
459             }
460             o << ") : ";
461             for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait)
462             {
463                 if (ait!=it->args.begin()) o << ", ";
464                 // pointers are const pointers and must be dereferenced
465                 o << ait->name << "(" << ((ait->type.name.find_first_of('*')!=std::string::npos) ? "*" : "" ) << "_" << ait->name << ")";
466             }
467             o << " {}\n";
468         }
469         o << " libt2n::result* operator()();\n"
470         << "};\n";
471     }
472 }
473
474 void output_common_cpp(std::ostream &o, const std::string &group, const std::list<t2n_procedure> &procs, const std::string &common_hpp)
475 {
476     o << "#include \"" << common_hpp << "\"\n"
477     << "#include <boost/serialization/export.hpp>\n"
478     << "\n"
479     << "/* register types with boost serialization */\n";
480     o << "BOOST_CLASS_EXPORT(" << groupClass(group) << ")\n";
481     for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it)
482     {
483         o << "BOOST_CLASS_EXPORT("<<it->ret_classname()<<")\n"
484         << "BOOST_CLASS_EXPORT("<<it->cmd_classname()<<")\n";
485     }
486 }
487
488 void output_client_hpp(std::ostream &o, const std::string &group, const std::list<t2n_procedure> &procs)
489 {
490     o << "#include <command_client.hxx>\n";
491
492     o << "class " << groupClass(group) << "_client : public libt2n::command_client\n"
493     << "{\n"
494     << "public:\n"
495     << groupClass(group) << "_client(libt2n::client_connection &_c,\n"
496     << " long long _command_timeout_usec=command_timeout_usec_default,\n"
497     << " long long _hello_timeout_usec=hello_timeout_usec_default)\n"
498     << " : libt2n::command_client(_c,_command_timeout_usec,_hello_timeout_usec)\n"
499     << " {}\n";
500     for (std::list<t2n_procedure>::const_iterator pit=procs.begin();pit!=procs.end();++pit)
501     {
502         o << " " << *pit << ";\n";
503     }
504     o << "};\n";
505 }
506
507 void 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)
508 {
509     o << "#include \"" << client_hpp << "\"\n"
510     << "#include \"" << common_hpp << "\"\n"
511     << "// fake\n";
512     for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it)
513     {
514         o << "libt2n::result* " << it->cmd_classname() << "::operator()() { return NULL; }\n";
515     }
516
517     for (std::list<t2n_procedure>::const_iterator pit=procs.begin();pit!=procs.end();++pit)
518     {
519         o << pit->ret_type << " " << groupClass(group) << "_client::" << pit->name << "(";
520
521         // we need to do this by hand here because we don't want default arguments within the cpp
522         for (t2n_procedure::Args::const_iterator xit=pit->args.begin();xit!=pit->args.end();++xit)
523         {
524             if (xit!=pit->args.begin())
525                 o << ", ";
526             o << xit->type << " " << xit->name;
527         }
528
529         o << ")\n"
530         << "{\n"
531         << " libt2n::result_container rc;\n"
532         << " send_command(new " << pit->cmd_classname() << "(";
533         for (t2n_procedure::Args::const_iterator ait=pit->args.begin();ait!=pit->args.end();++ait)
534         {
535             if (ait!=pit->args.begin()) o << ", ";
536             o << ait->name;
537         }
538         o << "), rc);\n"
539         << " " << pit->ret_classname() << "* res=dynamic_cast<" << pit->ret_classname() << "*>(rc.get_result());\n"
540         << " if (!res) throw libt2n::t2n_communication_error(\"result object of wrong type\");\n";
541         if (pit->hasReturn())
542             o << " return res->get_data();\n";
543         o << "}\n";
544     }
545
546     // include in this compilation unit to ensure the compilation unit is used
547     // see also:
548     // http://www.google.de/search?q=g%2B%2B+static+initializer+in+static+library
549     o << "#include \"" << common_cpp << "\"\n";
550 }
551
552 void output_server_hpp(std::ostream &o, const std::string & /* group */, const std::list<t2n_procedure> &procs, const std::string &common_hpp)
553 {
554     o << "#include \"" << common_hpp << "\"\n";
555
556     // output function declarations
557     for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it)
558         o << *it << ";\n";
559 }
560
561 void 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)
562 {
563     o << "#include \"" << common_hpp << "\"\n";
564
565     for (std::list<t2n_procedure>::const_iterator it=procs.begin();it!=procs.end();++it)
566     {
567         o << *it << ";\n";
568         o << "libt2n::result* " << it->cmd_classname() << "::operator()() { ";
569
570         if (it->hasReturn())
571             o << "return new " << it->ret_classname() << "(";
572
573         // output function name and args
574         o << it->name << "(";
575         for (t2n_procedure::Args::const_iterator ait=it->args.begin();ait!=it->args.end();++ait)
576         {
577             if (ait!=it->args.begin()) o << ", ";
578             // get pointer
579             if (ait->type.name.find_first_of('*')!=std::string::npos)
580                 o << '&';
581             o << ait->name;
582         }
583
584         if (it->hasReturn())
585             o << "));";
586         else
587             o << "); return new " << it->ret_classname() << "();";
588
589         o << " }\n";
590     }
591     o << "#include \"" << common_cpp << "\"\n";
592 }
593
594 struct header_file : public std::ofstream
595 {
596     header_file(const char* fname) : std::ofstream(fname)
597     {
598         std::cerr << "create header: '" << fname << "'" << std::endl;
599         std::string macro(replace(toupper(fname),'.','_'));
600         *this << "// automatically generated code (generated by libt2n-codegen " << VERSION << ") - do not edit\n" << std::endl;
601         *this << "#ifndef " << macro << "\n"
602         << "#define " << macro << "\n";
603     }
604     ~header_file()
605     {
606         *this << "#endif" << std::endl;
607     }
608 };
609
610 struct cpp_file : public std::ofstream
611 {
612     cpp_file(const char* fname) : std::ofstream(fname)
613     {
614         std::cerr << "create cpp: '" << fname << "'" << std::endl;
615         *this << "// automatically generated code - do not edit\n" << std::endl;
616     }
617 };
618
619 int
620 main(int argc, char* argv[])
621 {
622     // todo: maybe use getopt
623     if ((argc>1)&&(std::string(argv[1])=="--version"))
624     {
625         std::cerr << VERSION << std::endl;
626         return 0;
627     }
628     if (argc < 3)
629     {
630         std::cerr << "Usage: " << argv[0] << "default-group gccxml-file1 gccxml-file2 ... " << std::endl;
631         return 1;
632     }
633
634     try
635     {
636         std::string group(argv[1]);
637         std::list<std::string> xmlfiles;
638         for (int i=2;i<argc;++i)
639             xmlfiles.push_back(argv[i]);
640
641         std::string prefix=group+"_";
642         std::list<t2n_procedure> procedures;
643         for (std::list<std::string>::iterator it=xmlfiles.begin();it!=xmlfiles.end();++it)
644         {
645             std::cerr << "Parse " << *it << std::endl;
646             Parser parser(*it);
647             const std::list<t2n_procedure> &p(parser.get_procedures());
648             std::copy(p.begin(), p.end(), std::back_inserter(procedures));
649         }
650
651         std::cerr << "All procedures:" << std::endl;
652         for (std::list<t2n_procedure>::const_iterator it=procedures.begin();it!=procedures.end();++it)
653             std::cerr << *it << ";" << std::endl;
654
655         std::string common_hpp_fname(prefix+"common.hxx");
656         std::string common_cpp_fname(prefix+"common.cpp");
657         std::string client_hpp_fname(prefix+"client.hxx");
658         std::string client_cpp_fname(prefix+"client.cpp");
659         std::string server_hpp_fname(prefix+"server.hxx");
660         std::string server_cpp_fname(prefix+"server.cpp");
661
662         header_file common_hpp(common_hpp_fname.c_str());
663         common_hpp << "// boost serialization is picky about order of include files => we have to include this one first\n"
664         << "#include \"codegen-stubhead.hxx\"\n"
665         << "#include \"" << group << ".hxx\"\n";
666
667         output_common_hpp(common_hpp, group, procedures);
668
669         cpp_file common_cpp(common_cpp_fname.c_str());
670         output_common_cpp(common_cpp, group, procedures, common_hpp_fname);
671
672         header_file client_hpp(client_hpp_fname.c_str());
673         client_hpp << "// boost serialization is picky about order of include files => we have to include this one first\n"
674         << "#include \"codegen-stubhead.hxx\"\n"
675         << "#include \"" << group << ".hxx\"\n";
676         output_client_hpp(client_hpp, group, procedures);
677
678         cpp_file client_cpp(client_cpp_fname.c_str());
679         output_client_cpp(client_cpp, group, procedures, common_hpp_fname, common_cpp_fname, client_hpp_fname);
680
681         header_file server_hpp(server_hpp_fname.c_str());
682         output_server_hpp(server_hpp, group, procedures, common_hpp_fname);
683
684         cpp_file server_cpp(server_cpp_fname.c_str());
685         output_server_cpp(server_cpp, group, procedures, common_hpp_fname, common_cpp_fname);
686     }
687     catch (const parse_error &e)
688     {
689         std::cerr << e.what() << std::endl;
690         return EXIT_FAILURE;
691     }
692     return EXIT_SUCCESS;
693 }