X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=codegen%2Fmain.cpp;h=85c56ebee340afb096f15333c482081a8cd4fa4f;hp=ee70fb19d0dafc4f19dc4888fba34febb7389450;hb=85106017e48b4dfdec213dc2ff83486edfa7ea10;hpb=a3b94a2c3f0e0c9b18674def2e2dd0b02cdfdb41 diff --git a/codegen/main.cpp b/codegen/main.cpp index ee70fb1..85c56eb 100644 --- a/codegen/main.cpp +++ b/codegen/main.cpp @@ -496,62 +496,21 @@ struct cpp_file : public std::ofstream } }; -std::list -get_includes(const std::string &fname) -{ - // grep "#include" fname - std::ifstream in(fname.c_str()); - std::string line; - std::list ret; - while (std::getline(in,line)) { - if (line.find("#include")!=std::string::npos) - ret.push_back(line); - } - return ret; -} - -void -paste_includes(std::ostream &o, std::list &i) -{ - o << std::endl - << "// copied includes begin" << std::endl; - for (std::list::const_iterator it=i.begin(); it!=i.end(); ++it) - o << *it << std::endl; - o << "// copied includes end" << std::endl - << std::endl; -} - -struct RemoveGenerated -{ - RemoveGenerated(const std::string &_prefix) : prefix(_prefix) {} - bool operator()(const std::string &s) const { - return (s.find(prefix+"common.hxx")!=std::string::npos); - } - const std::string &prefix; -}; - int main(int argc, char* argv[]) { - if (argc < 4) { - std::cerr << "Usage: " << argv[0] << " export-file default-group gccxml-file1 gccxml-file2 ... " << std::endl; + if (argc < 3) { + std::cerr << "Usage: " << argv[0] << "default-group gccxml-file1 gccxml-file2 ... " << std::endl; return 1; } try{ - std::string exportfile(argv[1]); - std::string group(argv[2]); + std::string group(argv[1]); std::list xmlfiles; - for (unsigned i=3;i includes(get_includes(exportfile)); - remove_if(includes.begin(), includes.end(), RemoveGenerated(prefix)); - includes.erase(remove_if(includes.begin(), includes.end(), RemoveGenerated(prefix)), includes.end()); - - //paste_includes(std::cerr, includes); - std::list procedures; for (std::list::iterator it=xmlfiles.begin();it!=xmlfiles.end();++it) { Parser parser(*it, group); @@ -577,9 +536,9 @@ main(int argc, char* argv[]) header_file common_hpp(common_hpp_fname.c_str()); common_hpp << "// boost serialization is picky about order of include files => we have to include this one first\n" - << "#include \"codegen-stubhead.hxx\"\n"; - paste_includes(common_hpp, includes); - + << "#include \"codegen-stubhead.hxx\"\n" + << "#include \"" << group << ".hxx\"\n"; + output_common_hpp(common_hpp, procedures); cpp_file common_cpp(common_cpp_fname.c_str()); @@ -587,8 +546,8 @@ main(int argc, char* argv[]) header_file client_hpp(client_hpp_fname.c_str()); client_hpp << "// boost serialization is picky about order of include files => we have to include this one first\n" - << "#include \"codegen-stubhead.hxx\"\n"; - paste_includes(client_hpp, includes); + << "#include \"codegen-stubhead.hxx\"\n" + << "#include \"" << group << ".hxx\"\n"; output_client_hpp(client_hpp, procedures); cpp_file client_cpp(client_cpp_fname.c_str());