| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965 |
- #include "Generator.h"
- Generator* Generator::__instance = NULL;
- // Warning flags.
- static bool __printTemplateWarning = false;
- static bool __printVarargWarning = false;
- static bool __printOperatorWarning = false;
- // Utility functions (local to this file).
- static string trim(const string& str);
- static string stripTypeQualifiers(const string& typeStr, FunctionBinding::Param::Kind& kind);
- static inline bool isWantedFileNormal(const string& s);
- static inline bool isNamespaceFile(const string& s);
- static inline bool isGeneratedBindingFile(const string& s);
- static bool getFileList(string directory, vector<string>& files, bool (*isWantedFile)(const string& s));
- static bool isReservedKeyword(string name);
- Generator* Generator::getInstance()
- {
- if (!__instance)
- __instance = new Generator();
- return __instance;
- }
- void Generator::releaseInstance()
- {
- SAFE_DELETE(__instance);
- }
- string Generator::getUniqueName(string name)
- {
- // Calculate the unique name for the given identifier (class, struct, enum, etc).
- string uniquename = name;
- size_t i = uniquename.find("::");
- while (i != uniquename.npos)
- {
- uniquename.replace(i, 2, SCOPE_REPLACEMENT);
- i = uniquename.find("::");
- }
- return uniquename;
- }
- string Generator::getUniqueNameFromRef(string refId)
- {
- return getUniqueName(getIdentifier(refId));
- }
- vector<string> Generator::getScopePath(string classname, string ns)
- {
- size_t i = classname.find("::");
- vector<string> scopePath;
- while (i != classname.npos)
- {
- string scope = classname.substr(0, i);
- if (scope != ns)
- scopePath.push_back(scope);
- classname = classname.substr(i + 2);
- i = classname.find("::");
- }
- return scopePath;
- }
- string Generator::getIdentifier(string refId)
- {
- if (_refIds.find(refId) != _refIds.end())
- return _refIds[refId];
- return refId;
- }
- string Generator::getClassNameAndNamespace(string classname, string* ns)
- {
- size_t index = classname.find("::");
- if (index != classname.npos)
- {
- string classNS = classname.substr(0, index);
- if (_namespaces.find(classNS) != _namespaces.end())
- {
- if (ns)
- *ns = classNS;
- string tmp = classname.substr(index + 2);
- if (_namespaces[classNS].find(tmp) != _namespaces[classNS].end())
- return classname.substr(index + 2);
- else
- {
- size_t tmpIndex = tmp.find("::");
- if (tmpIndex != tmp.npos)
- {
- tmp = tmp.substr(0, tmpIndex);
- if (_namespaces[classNS].find(tmp) != _namespaces[classNS].end())
- {
- _namespaces[classNS].insert(classname.substr(index + 2));
- return classname.substr(index + 2);
- }
- }
- }
- }
- }
- return classname;
- }
- void Generator::setIdentifier(string refId, string id)
- {
- _refIds[refId] = id;
- }
- bool Generator::isDerived(const ClassBinding& c, string classname)
- {
- for (unsigned int i = 0; i < c.derived.size(); i++)
- {
- // If the derived class is not in the ref ID table, then it
- // is a hidden (protected, private, etc.) class, so don't consider it.
- if (_refIds.find(c.derived[i]) != _refIds.end())
- {
- const string& derivedClassName = getIdentifier(c.derived[i]);
- if (derivedClassName == classname ||
- (_classes.find(derivedClassName) != _classes.end() &&
- isDerived(_classes[derivedClassName], classname)))
- {
- return true;
- }
- }
- }
- return false;
- }
- bool Generator::isRef(string classname)
- {
- // Check if the class is derived from Ref.
- for (unsigned int i = 0; i < _topLevelBaseClasses.size(); i++)
- {
- if (_topLevelBaseClasses[i] == REF_CLASS_NAME)
- {
- return isDerived(_classes[_topLevelBaseClasses[i]], classname);
- }
- }
- return classname == REF_CLASS_NAME;
- }
- string Generator::getCompoundName(XMLElement* node)
- {
- // Get the name of the namespace, class, struct, or file that we are processing.
- XMLElement* nameElement = node->FirstChildElement("compoundname");
- if (!nameElement)
- {
- GP_ERROR("Missing 'compoundname' child node of 'compounddef' node for XML document '%s'.", _file);
- return "";
- }
- const char* text = nameElement->GetText();
- if (!text)
- {
- GP_ERROR("The 'compoundname' node is empty for XML document '%s'.", _file);
- return "";
- }
- return string(text);
- }
- void Generator::run(string inDir, string outDir, string* bindingNS)
- {
- // Set the output directory.
- _outDir = outDir;
- // Get a list of all .cpp and .h files in the output directory so
- // we can delete them before generating new bindings.
- vector<string> oldBindingsFiles;
- getFileList(outDir, oldBindingsFiles, isGeneratedBindingFile);
- // Delete the old bindings.
- for (unsigned int i = 0; i < oldBindingsFiles.size(); i++)
- {
- remove(oldBindingsFiles[i].c_str());
- }
- // Get a list of the Doxygen XML files that specify a namespace.
- // Note: we must do this before adding the normal files so that
- // when we process the files sequentially, we process the namespaces
- // before the normal files (so that namespaces can be removed
- // properly from class/struct names, etc.)
- vector<string> files;
- getFileList(inDir, files, isNamespaceFile);
- // Add all of the normal Doxygen XML files we want to use to generate Lua bindings.
- if (!getFileList(inDir, files, isWantedFileNormal) || files.empty())
- {
- GP_ERROR("Failed to get a valid list of files to generate bindings from using directory '%s'.", inDir.c_str());
- return;
- }
- // Go through each file and build the data needed to generate the bindings.
- for (vector<string>::iterator iter = files.begin(); iter != files.end(); iter++)
- {
- tinyxml2::XMLDocument doc;
- _file = iter->c_str();
- doc.LoadFile(iter->c_str());
- int ret = doc.ErrorID();
- if (ret != 0)
- {
- GP_ERROR("Failed to load XML document '%s' properly with error ID %d.", iter->c_str(), ret);
- continue;
- }
- XMLElement* rootNode = doc.FirstChildElement("doxygen");
- if (!rootNode)
- {
- GP_ERROR("Missing root 'doxygen' node for XML document '%s'.", iter->c_str());
- continue;
- }
- XMLElement* node = rootNode->FirstChildElement("compounddef");
- if (!node)
- {
- GP_ERROR("Missing 'compounddef' node for XML document '%s'.", iter->c_str());
- continue;
- }
- const char* kind = node->Attribute("kind");
- if (kind && strcmp(kind, "namespace") == 0)
- {
- string name = getCompoundName(node);
- cout << "Parsing namespace " << name << "...\n";
- getNamespace(node, name);
- }
- else if ( (kind && (strcmp(kind, "class") == 0 || strcmp(kind, "struct") == 0) ) && strcmp(node->Attribute("prot"), "public") == 0)
- {
- string name = getCompoundName(node);
- cout << "Parsing class/struct " << name << "...\n";
- getClass(node, name);
- }
- else if (kind && strcmp(kind, "file") == 0)
- {
- string name = getCompoundName(node);
- cout << "Parsing file " << name << "...\n";
- if (name.find(".h") != name.npos)
- {
- getFunctions(node);
- getEnums(node, name);
- }
- else if (name.find(".cpp") != name.npos)
- {
- getIncludes(node, name);
- }
- }
- }
- // Resolve all inheritance.
- resolveInheritance();
- // Resolve all unrecognized parameter and return value types.
- resolveTypes();
- // Resolve all inherited include files.
- resolveInheritedIncludes();
- // Generate the script bindings.
- generateBindings(bindingNS);
- // Print out all warnings (unsupported types, function name-Lua keyword clashes, etc.)
- if (__warnings.size() > 0)
- {
- cout << "\nWarnings:\n";
- for (set<string>::iterator iter = __warnings.begin(); iter!= __warnings.end(); iter++)
- {
- GP_WARN("%s", iter->c_str());
- }
- }
- // Print warnings for the use of unsupported C++ features.
- if (__printTemplateWarning)
- GP_WARN("Detected the use of template parameters; this feature of C++ is not supported.");
- if (__printVarargWarning)
- GP_WARN("Detected the use of variable argument lists; this feature of C++ is not supported.");
- if (__printOperatorWarning)
- GP_WARN("Detected the use of operator overloading; this feature of C++ is not supported.");
- }
- Generator::Generator()
- {
- }
- Generator::~Generator()
- {
- }
- void Generator::getFunctions(XMLElement* fileNode, string ns)
- {
- // Process all public, non-static functions and variables that are defined in this file.
- XMLElement* node = NULL;
- const char* kind = NULL;
- const char* isStatic = NULL;
- for (node = fileNode->FirstChildElement("sectiondef"); node != NULL; node = node->NextSiblingElement("sectiondef"))
- {
- kind = node->Attribute("kind");
- if (kind && strcmp(kind, "func") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- isStatic = e->Attribute("static");
- if (e->FirstChildElement("templateparamlist"))
- {
- __printTemplateWarning = true;
- }
- else if (getScriptFlag(e) != "ignore" &&
- (!isStatic || strcmp(isStatic, "yes") != 0))
- {
- FunctionBinding b;
- b.type = FunctionBinding::GLOBAL_FUNCTION;
- b.name = getName(e);
- if (!isReservedKeyword(b.name))
- {
- // Ignore operators.
- if (b.name.find("operator") != 0)
- {
- b.returnParam = getParam(e);
- getParams(e, b);
- getCreateFlag(e, b);
- _functions[b.getFunctionName()].push_back(b);
- // Add the function to the set of namespace members if it is part of a namespace.
- if (ns.size() > 0)
- _namespaces[ns].insert(b.name);
- }
- else
- {
- __printOperatorWarning = true;
- }
- }
- else
- {
- __warnings.insert(string("Function name '") + b.name + string("' is a reserved Lua keyword; binding '") + b.getFunctionName() + string("' was not generated."));
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- else if (kind && strcmp(kind, "var") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- isStatic = e->Attribute("static");
- if (getScriptFlag(e) != "ignore" &&
- (!isStatic || strcmp(isStatic, "yes") != 0))
- {
- FunctionBinding b;
- if (getIsConstType(e))
- b.type = FunctionBinding::GLOBAL_CONSTANT;
- else
- b.type = FunctionBinding::GLOBAL_VARIABLE;
- b.name = getName(e);
- if (!isReservedKeyword(b.name))
- {
- b.returnParam = getParam(e, true);
- _functions[b.getFunctionName()].push_back(b);
-
- // Add the variable to the set of namespace members if it is part of a namespace.
- if (ns.size() > 0)
- _namespaces[ns].insert(b.name);
- }
- else
- {
- __warnings.insert(string("Function name '") + b.name + string("' is a reserved Lua keyword; binding '") + b.getFunctionName() + string("' was not generated."));
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- }
- }
- void Generator::getNamespace(XMLElement* nsNode, const string& name)
- {
- // Skip the 'std' namespace.
- if (name == "std")
- return;
- // Create the set of all classes that are a part of this namespace.
- XMLElement* e = nsNode->FirstChildElement("innerclass");
- while (e)
- {
- string classname = e->GetText();
- size_t i = classname.find("::");
- if (i != classname.npos)
- classname = classname.substr(i + 2);
- _namespaces[name].insert(classname);
- e = e->NextSiblingElement("innerclass");
- }
- // Parse all functions that are directly in this namespace.
- getFunctions(nsNode, name);
- // Parse all enums that are directly in this namespace.
- getEnums(nsNode, name);
- // Parse all typedefs.
- getTypedefs(nsNode, name);
- }
- void Generator::getClass(XMLElement* classNode, const string& name)
- {
- // Get the ref id for the class.
- string refId = classNode->Attribute("id");
- // Create the class binding object that we will store the function bindings in (name -> binding).
- ClassBinding classBinding(name, refId);
- // Store the mapping between the ref id and the class's fully qualified name.
- Generator::getInstance()->setIdentifier(refId, classBinding.classname);
- // Check if we should ignore this class.
- if (getScriptFlag(classNode) == "ignore")
- return;
- // Get the include header for the original class declaration.
- XMLElement* includeElement = classNode->FirstChildElement("includes");
- if (includeElement)
- {
- const char* text = includeElement->GetText();
- if (!text)
- {
- GP_ERROR("The 'includes' node is empty (a class must have an include file) for XML document '%s'.", _file);
- return;
- }
- classBinding.include = text;
- }
- else
- {
- // See if we are an inner class. If so, attempt to get the include from the root parent class.
- size_t index = classBinding.classname.find("::");
- if (index != classBinding.classname.npos)
- {
- string parentClassName = classBinding.classname.substr(0, index);
- if (_classes.find(parentClassName) != _classes.end())
- classBinding.include = _classes[parentClassName].include;
- }
- }
- // Track whether the class has any pure virtual functions.
- bool hasPureVirtual = false;
- // Process all public members that are defined in this class.
- XMLElement* node = NULL;
- const char* kind = NULL;
- for (node = classNode->FirstChildElement("sectiondef"); node != NULL; node = node->NextSiblingElement("sectiondef"))
- {
- kind = node->Attribute("kind");
- if (!kind)
- {
- GP_ERROR("Section definition is missing required 'kind' attribute in XML document '%s'.", _file);
- return;
- }
- // Process public static functions.
- if (strcmp(kind, "public-static-func") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (e->FirstChildElement("templateparamlist"))
- {
- __printTemplateWarning = true;
- }
- else if (getScriptFlag(e) != "ignore")
- {
- FunctionBinding b(classBinding.classname, classBinding.uniquename);
- b.type = FunctionBinding::STATIC_FUNCTION;
- b.name = getName(e);
- if (!isReservedKeyword(b.name))
- {
- b.returnParam = getParam(e, false, b.classname);
-
- getParams(e, b);
- getCreateFlag(e, b);
- classBinding.bindings[b.getFunctionName()].push_back(b);
- }
- else
- {
- __warnings.insert(string("Function name '") + b.name + string("' is a reserved Lua keyword; binding '") + b.getFunctionName() + string("' was not generated."));
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- // Process public member functions.
- else if (strcmp(kind, "public-func") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (e->FirstChildElement("templateparamlist"))
- {
- __printTemplateWarning = true;
- }
- else if (getScriptFlag(e) != "ignore")
- {
- if (strcmp(e->Attribute("virt"), "pure-virtual") == 0)
- hasPureVirtual = true;
- FunctionBinding b(classBinding.classname, classBinding.uniquename);
- b.type = FunctionBinding::MEMBER_FUNCTION;
- b.name = getName(e);
- if (!isReservedKeyword(b.name))
- {
- // Ignore operators.
- if (b.name.find("operator") != 0)
- {
- b.returnParam = getParam(e, false, b.classname);
- if (b.returnParam.type == FunctionBinding::Param::TYPE_CONSTRUCTOR)
- {
- b.returnParam.info = refId;
- b.own = true;
- }
- getParams(e, b);
- getCreateFlag(e, b);
- classBinding.bindings[b.getFunctionName()].push_back(b);
- }
- else
- {
- __printOperatorWarning = true;
- }
- }
- else
- {
- __warnings.insert(string("Function name '") + b.name + string("' is a reserved Lua keyword; binding '") + b.getFunctionName() + string("' was not generated."));
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- // Process public static variables.
- else if (strcmp(kind, "public-static-attrib") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (getScriptFlag(e) != "ignore")
- {
- FunctionBinding b(classBinding.classname, classBinding.uniquename);
- if (getIsConstType(e))
- b.type = FunctionBinding::STATIC_CONSTANT;
- else
- b.type = FunctionBinding::STATIC_VARIABLE;
- b.name = getName(e);
- if (!isReservedKeyword(b.name))
- {
- b.returnParam = getParam(e, true, b.classname);
- classBinding.bindings[b.getFunctionName()].push_back(b);
- }
- else
- {
- __warnings.insert(string("Function name '") + b.name + string("' is a reserved Lua keyword; binding '") + b.getFunctionName() + string("' was not generated."));
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- // Process public member variables.
- else if (strcmp(kind, "public-attrib") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (e->FirstChildElement("templateparamlist"))
- {
- __printTemplateWarning = true;
- }
- else if (getScriptFlag(e) != "ignore")
- {
- FunctionBinding b(classBinding.classname, classBinding.uniquename);
- if (getIsConstType(e))
- b.type = FunctionBinding::MEMBER_CONSTANT;
- else
- b.type = FunctionBinding::MEMBER_VARIABLE;
- b.name = getName(e);
- if (!isReservedKeyword(b.name))
- {
- b.returnParam = getParam(e, true, b.classname);
- classBinding.bindings[b.getFunctionName()].push_back(b);
- }
- else
- {
- __warnings.insert(string("Function name '") + b.name + string("' is a reserved Lua keyword; binding '") + b.getFunctionName() + string("' was not generated."));
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- else if (strcmp(kind, "protected-func") == 0 ||
- strcmp(kind, "private-func") == 0)
- {
- // Check for inaccessible constructor/destructor
- // and create a list of all other inaccessible functions
- // (we do this so that classes that override a public function
- // and change its scope to protected or private work properly
- // from Lua-i.e. no binding is generated for such functions).
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (strcmp(e->Attribute("virt"), "pure-virtual") == 0)
- hasPureVirtual = true;
- FunctionBinding::Param t = getParam(e);
- if (t.type == FunctionBinding::Param::TYPE_CONSTRUCTOR)
- {
- classBinding.inaccessibleConstructor = true;
- }
- else if (t.type == FunctionBinding::Param::TYPE_DESTRUCTOR)
- {
- classBinding.inaccessibleDestructor = true;
- }
- else
- {
- FunctionBinding b(classBinding.classname, classBinding.uniquename);
- b.type = FunctionBinding::MEMBER_FUNCTION;
- b.name = getName(e);
-
- if (!isReservedKeyword(b.name))
- {
- // Ignore operators.
- if (b.name.find("operator") != 0)
- {
- b.returnParam = getParam(e, false, b.classname);
- if (b.returnParam.type == FunctionBinding::Param::TYPE_CONSTRUCTOR)
- {
- b.returnParam.info = refId;
- b.own = true;
- }
- getParams(e, b);
- getCreateFlag(e, b);
- classBinding.hidden[b.getFunctionName()].push_back(b);
- }
- else
- {
- __printOperatorWarning = true;
- }
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- else if (strcmp(kind, "protected-static-func") == 0 ||
- strcmp(kind, "private-static-func") == 0)
- {
- // Create a list of all other inaccessible functions
- // (we do this so that classes that override a public function
- // and change its scope to protected or private work properly
- // from Lua-i.e. no binding is generated for such functions).
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (e->FirstChildElement("templateparamlist"))
- {
- __printTemplateWarning = true;
- }
- else if (getScriptFlag(e) != "ignore")
- {
- FunctionBinding b(classBinding.classname, classBinding.uniquename);
- b.type = FunctionBinding::STATIC_FUNCTION;
- b.name = getName(e);
- if (!isReservedKeyword(b.name))
- {
- b.returnParam = getParam(e, false, b.classname);
-
- getParams(e, b);
- getCreateFlag(e, b);
- classBinding.hidden[b.getFunctionName()].push_back(b);
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- // Process public enums and typedefs.
- else if (strcmp(kind, "public-type") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (getScriptFlag(e) != "ignore")
- {
- if (strcmp(e->Attribute("kind"), "enum") == 0)
- {
- getEnum(e, classBinding.classname, classBinding.ns, classBinding.include);
- }
- else if (strcmp(e->Attribute("kind"), "typedef") == 0)
- {
- getTypedef(e, classBinding.classname, classBinding.ns);
- }
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- else
- {
- // Ignore other section definitions.
- }
- }
- // If the class has a pure-virtual method, we mark the constructor as inaccessible
- // and remove any constructor bindings that are in the list.
- if (hasPureVirtual)
- {
- classBinding.inaccessibleConstructor = true;
- map<string, vector<FunctionBinding> >::iterator iter = classBinding.bindings.begin();
- for (; iter != classBinding.bindings.end(); iter++)
- {
- if (iter->second[0].returnParam.type == FunctionBinding::Param::TYPE_CONSTRUCTOR)
- {
- classBinding.bindings.erase(iter);
- break;
- }
- }
- }
- // Store the class's derived class(es)' ref id(s) if it has any.
- node = classNode->FirstChildElement("derivedcompoundref");
- while (node)
- {
- classBinding.derived.push_back(node->Attribute("refid"));
- node = node->NextSiblingElement("derivedcompoundref");
- }
- // If the class has no base classes and it has derived classes, add it to the list of top-level classes.
- if (!classNode->FirstChildElement("basecompoundref") && classBinding.derived.size() > 0)
- _topLevelBaseClasses.push_back(classBinding.classname);
- // Insert the class binding into the global table.
- _classes[classBinding.classname] = classBinding;
- }
- void Generator::getEnums(XMLElement* fileNode, string ns)
- {
- XMLElement* node = NULL;
- const char* kind = NULL;
- for (node = fileNode->FirstChildElement("sectiondef"); node != NULL; node = node->NextSiblingElement("sectiondef"))
- {
- kind = node->Attribute("kind");
- if (!kind)
- {
- GP_ERROR("Section definition is missing required 'kind' attribute in XML document '%s'.", _file);
- return;
- }
- // Process the enums.
- if (strcmp(kind, "enum") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (getScriptFlag(e) != "ignore" && strcmp(e->Attribute("kind"), "enum") == 0)
- {
- getEnum(e, "", ns);
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- }
- }
- void Generator::getEnum(XMLElement* e, string classname, string ns, string include)
- {
- // Get the enumeration's name.
- string enumname = classname;
- if (enumname.size() > 0)
- enumname += string("::");
- enumname += getName(e);
- // Get the ref id for the enum.
- string refId = e->Attribute("id");
- // Store the ref id to name mapping.
- Generator::getInstance()->setIdentifier(refId, enumname);
-
- // Add the enum to the enum list if it's not there
- // (we implicitly create it when we set its scope path).
- if (_enums.find(enumname) == _enums.end())
- _enums[enumname].scopePath = Generator::getScopePath(enumname, ns);
- // Set the include file for the enum.
- if (include.size() > 0)
- _enums[enumname].include = include;
- else
- {
- XMLElement* location = e->FirstChildElement("location");
- if (location)
- _enums[enumname].include = location->Attribute("file");
- }
- for (e = e->FirstChildElement("enumvalue"); e; e = e->NextSiblingElement("enumvalue"))
- {
- _enums[enumname].values.push_back(getName(e));
- }
- // Add the enum to the set of namespace members if it is part of a namespace.
- if (ns.size() > 0)
- _namespaces[ns].insert(enumname);
- }
- void Generator::getTypedefs(XMLElement* fileNode, string ns)
- {
- XMLElement* node = NULL;
- const char* kind = NULL;
- for (node = fileNode->FirstChildElement("sectiondef"); node != NULL; node = node->NextSiblingElement("sectiondef"))
- {
- kind = node->Attribute("kind");
- if (!kind)
- {
- GP_ERROR("Section definition is missing required 'kind' attribute in XML document '%s'.", _file);
- return;
- }
- // Process the enums.
- if (strcmp(kind, "typedef") == 0)
- {
- XMLElement* e = node->FirstChildElement("memberdef");
- while (e)
- {
- if (getScriptFlag(e) != "ignore" && strcmp(e->Attribute("kind"), "typedef") == 0)
- {
- getTypedef(e, "", ns);
- }
- e = e->NextSiblingElement("memberdef");
- }
- }
- }
- }
- void Generator::getTypedef(XMLElement* e, string classname, string ns)
- {
- TypedefBinding t;
- // Get the typedef's name.
- string tname = classname;
- if (tname.size() > 0)
- tname += string("::");
- tname += getName(e);
- // Get the typedef's id and store the mapping from ref id to name.
- string refId = e->Attribute("id");
- setIdentifier(refId, tname);
- FunctionBinding::Param p = getParam(e);
- if (p.info.size() > 0)
- t.refId = p.info;
- _typedefs[tname] = t;
- // Add the typedef to the set of namespace members if it is part of a namespace.
- if (ns.size() > 0)
- _namespaces[ns].insert(tname);
- }
- static inline bool getScriptFlagHelper(XMLElement* e, string& flag)
- {
- XMLElement* x = e->FirstChildElement("xmlonly");
- if (x)
- {
- flag = x->GetText();
- return true;
- }
- x = e->FirstChild() ? e->FirstChild()->ToElement() : NULL;
- while (x)
- {
- if (getScriptFlagHelper(x, flag))
- return true;
- x = x->NextSibling() ? x->NextSibling()->ToElement() : NULL;
- }
- return false;
- }
- string Generator::getScriptFlag(XMLElement* e)
- {
- string flag;
- XMLElement* n = e->FirstChildElement("detaileddescription");
- if (n)
- getScriptFlagHelper(n, flag);
-
- return flag;
- }
- void Generator::getCreateFlag(XMLElement* e, FunctionBinding& b)
- {
- if (getScriptFlag(e) == "create")
- b.own = true;
- }
- string Generator::getName(XMLElement* e)
- {
- // Get the name for the binding.
- XMLElement* nameElement = e->FirstChildElement("name");
- if (!nameElement)
- {
- GP_ERROR("Missing 'name' child node in XML document '%s'.", _file);
- return string();
- }
- return nameElement->GetText();
- }
- bool Generator::getIsConstType(XMLElement* e)
- {
- XMLElement* typeElement = e->FirstChildElement("type");
- if (!typeElement)
- {
- GP_ERROR("Missing 'type' node in XML document '%s'.", _file);
- return false;
- }
- XMLNode* textNode = typeElement->FirstChild();
- if (textNode)
- {
- XMLText* text = textNode->ToText();
- if (text)
- {
- string type = text->Value();
- return type.find("const") != type.npos;
- }
- }
- return false;
- }
- FunctionBinding::Param Generator::getParam(XMLElement* e, bool isVariable, string classname)
- {
- // Get the type for the current element (either the return type or a parameter type).
- XMLElement* typeElement = e->FirstChildElement("type");
- if (!typeElement)
- {
- GP_ERROR("Missing 'type' node in XML document '%s'.", _file);
- }
- FunctionBinding::Param p;
- XMLNode* textNode = typeElement->FirstChild();
- if (!textNode)
- {
- // Get the name of the current element to see if it is a destructor.
- string name = getName(e);
- if (name.find("~") == 0)
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_DESTRUCTOR);
- }
- else
- {
- // Assume it's a constructor.
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_CONSTRUCTOR, FunctionBinding::Param::KIND_POINTER, name);
- }
- }
- else
- {
- // Get the type string without const or reference qualifiers (and trim whitespace).
- string refId = "";
- string typeStr = "";
- FunctionBinding::Param::Kind kind;
- {
- // Attempt to process the type as reference (i.e. class, struct, enum, typedef, etc.) type.
- XMLNode* node = textNode;
- while (node)
- {
- if (strcmp(node->Value(), "ref") == 0)
- {
- refId = node->ToElement()->Attribute("refid");
- typeStr += node->ToElement()->GetText();
- }
- else if (node->ToText())
- {
- typeStr += node->ToText()->Value();
- }
- node = node->NextSibling();
- }
- typeStr = stripTypeQualifiers(typeStr, kind);
- }
- if (typeStr == "void")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_VOID, kind);
- }
- else if (typeStr == "bool")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_BOOL, kind);
- }
- else if (typeStr == "char" && kind != FunctionBinding::Param::KIND_POINTER)
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_CHAR, kind);
- }
- else if (typeStr == "short")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_SHORT, kind);
- }
- else if (typeStr == "int")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_INT, kind);
- }
- else if (typeStr == "long")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_LONG, kind);
- }
- else if (typeStr == "unsigned char")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_UCHAR, kind);
- }
- else if (typeStr == "unsigned short")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_USHORT, kind);
- }
- else if (typeStr == "unsigned int")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_UINT, kind);
- }
- else if (typeStr == "unsigned long")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_ULONG, kind);
- }
- else if (typeStr == "float")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_FLOAT, kind);
- }
- else if (typeStr == "double")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_DOUBLE, kind);
- }
- else if (typeStr == "string" || typeStr == "std::string")
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_STRING, kind, "string");
- }
- else if (typeStr == "char" && kind == FunctionBinding::Param::KIND_POINTER)
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_STRING, kind, "char*");
- }
- else if (_enums.find(typeStr) != _enums.end() ||
- (classname.size() > 0 && _enums.find(classname + string("::") + typeStr) != _enums.end()))
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_ENUM, kind, refId);
- }
- else if (typeStr == "...")
- {
- __printVarargWarning = true;
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_VARARGS);
- }
- else
- {
- p = FunctionBinding::Param(FunctionBinding::Param::TYPE_UNRECOGNIZED, kind, (refId.size() > 0) ? refId : typeStr);
- }
- // Check if the type is a pointer declared with square brackets (i.e. float x[4]).
- XMLElement* arrayElement = NULL;
- if ((arrayElement = e->FirstChildElement("array")) != NULL ||
- (isVariable && (arrayElement = e->FirstChildElement("argsstring")) != NULL))
- {
- const char* text = arrayElement->GetText();
- string arrayString = (text ? text : "");
- string::size_type i = arrayString.find("[");
- string::size_type k = arrayString.find("]");
- if (i != arrayString.npos && k != arrayString.npos)
- {
- p.kind = FunctionBinding::Param::KIND_POINTER;
- if (i != k - 1)
- p.info = arrayString.substr(i + 1, k - (i + 1));
- }
- }
- }
- // Get the default value for the parameter if it has one.
- XMLElement* defaultValueElement = e->FirstChildElement("defval");
- if (defaultValueElement)
- {
- p.hasDefaultValue = true;
- }
- return p;
- }
- void Generator::getParams(XMLElement* e, FunctionBinding& b)
- {
- XMLElement* param = e->FirstChildElement("param");
- while (param)
- {
- FunctionBinding::Param p = getParam(param, false, b.classname);
- if (p.type != FunctionBinding::Param::TYPE_VARARGS)
- b.paramTypes.push_back(p);
- param = param->NextSiblingElement("param");
- }
- }
- void Generator::resolveMembers(const ClassBinding& c)
- {
- vector<ClassBinding*> derived;
- // Go through the derived classes' bindings and update them.
- ClassBinding* cb = NULL;
- map<string, vector<FunctionBinding> >::const_iterator iter;
- for (unsigned int i = 0; i < c.derived.size(); i++)
- {
- // If the class is not in the map of classes, then
- // it was marked to be ignored, so skip over it.
- string derivedClassName = getIdentifier(c.derived[i]);
- if (_classes.find(derivedClassName) == _classes.end())
- continue;
- cb = &_classes[derivedClassName];
- // Go through this class' bindings and add them to the current
- // derived class if they are not already there (excluding constructors and destructors).
- for (iter = c.bindings.begin(); iter != c.bindings.end(); iter++)
- {
- FunctionBinding b(cb->classname, cb->uniquename);
- b.type = iter->second[0].type;
- b.name = iter->second[0].name;
- map<string, vector<FunctionBinding> >::iterator findIter = cb->bindings.find(b.getFunctionName());
- map<string, vector<FunctionBinding> >::iterator hiddenIter = cb->hidden.find(b.getFunctionName());
- if (findIter == cb->bindings.end() && hiddenIter == cb->hidden.end())
- {
- for (unsigned int i = 0, iCount = iter->second.size(); i < iCount; i++)
- {
- if (iter->second[i].returnParam.type != FunctionBinding::Param::TYPE_CONSTRUCTOR &&
- iter->second[i].returnParam.type != FunctionBinding::Param::TYPE_DESTRUCTOR)
- {
- // Copy the binding, but set its function name to
- // empty so that it is regenerated correctly.
- b = iter->second[i];
- b.functionName = "";
- b.classname = cb->classname;
- b.uniquename = cb->uniquename;
- cb->bindings[b.getFunctionName()].push_back(b);
- }
- }
- }
- else
- {
- bool addBinding;
- for (unsigned int i = 0, iCount = iter->second.size(); i < iCount; i++)
- {
- string name = iter->second[i].name;
- addBinding = true;
- if (findIter != cb->bindings.end())
- {
- for (unsigned int j = 0, jCount = findIter->second.size(); j < jCount; j++)
- {
- if (FunctionBinding::signaturesMatch(iter->second[i], findIter->second[j]))
- {
- addBinding = false;
- break;
- }
- }
- // To call the base function, we have to qualify the call since
- // the derived class has a function with the same name and different parameters.
- if (addBinding)
- name = iter->second[i].classname + string("::") + iter->second[i].name;
- }
- if (hiddenIter != cb->hidden.end())
- {
- for (unsigned int j = 0, jCount = hiddenIter->second.size(); j < jCount; j++)
- {
- if (FunctionBinding::signaturesMatch(iter->second[i], hiddenIter->second[j]))
- {
- addBinding = false;
- break;
- }
- }
- }
- if (addBinding)
- {
- FunctionBinding b = iter->second[i];
- b.name = name;
- b.functionName = findIter->first;
- b.classname = cb->classname;
- b.uniquename = getUniqueName(cb->classname);
- if (findIter != cb->bindings.end())
- findIter->second.push_back(b);
- else
- cb->bindings[b.getFunctionName()].push_back(b);
- }
- }
- }
- }
- derived.push_back(cb);
- }
- // Go through the derived classes' bindings and resolve the members for their derived classes.
- for (unsigned int i = 0; i < derived.size(); i++)
- {
- resolveMembers(*derived[i]);
- }
- }
- void Generator::resolveInheritance()
- {
- // Go through the class inheritance tree and update each class's bindings list
- // to include the bindings from the base class that haven't been overridden.
- for (unsigned int i = 0; i < _topLevelBaseClasses.size(); i++)
- {
- resolveMembers(_classes[_topLevelBaseClasses[i]]);
- }
- }
- void Generator::resolveIncludes(const ClassBinding& c)
- {
- vector<ClassBinding*> derived;
- // Go through the derived classes' bindings and update them.
- ClassBinding* cb = NULL;
- map<string, vector<FunctionBinding> >::const_iterator iter;
- for (unsigned int i = 0; i < c.derived.size(); i++)
- {
- // If the class is not in the map of classes, then
- // it was marked to be ignored, so skip over it.
- string derivedClassName = getIdentifier(c.derived[i]);
- if (_classes.find(derivedClassName) == _classes.end())
- continue;
- cb = &_classes[derivedClassName];
- // Add all include files (uniquely) from the base class to the derived class.
- map<string, set<string> >::iterator baseIncludes = _includes.find(c.include);
- if (baseIncludes != _includes.end() && baseIncludes->second.size() > 0)
- {
- set<string>::iterator iter = baseIncludes->second.begin();
- set<string>& derivedIncludes = _includes[cb->include];
- for (; iter != baseIncludes->second.end(); iter++)
- {
- derivedIncludes.insert(*iter);
- }
- }
-
- derived.push_back(cb);
- }
- // Go through the derived classes' bindings and resolve the members for their derived classes.
- for (unsigned int i = 0; i < derived.size(); i++)
- {
- resolveIncludes(*derived[i]);
- }
- }
- void Generator::resolveInheritedIncludes()
- {
- // Go through the class inheritance tree and update each class's
- // list of includes to include the includes from the base class
- for (unsigned int i = 0; i < _topLevelBaseClasses.size(); i++)
- {
- resolveIncludes(_classes[_topLevelBaseClasses[i]]);
- }
- }
- void Generator::resolveType(FunctionBinding::Param* param, string functionName, string header)
- {
- string name = getIdentifier(param->info);
- if (param->type == FunctionBinding::Param::TYPE_UNRECOGNIZED)
- {
- map<string, TypedefBinding>::iterator typedefIter = _typedefs.find(name);
- if (typedefIter != _typedefs.end() && typedefIter->second.refId.size() > 0)
- {
- param->type = FunctionBinding::Param::TYPE_OBJECT;
- param->info = typedefIter->second.refId;
- }
- else
- {
- map<string, ClassBinding>::iterator classIter = _classes.find(name);
- if (classIter != _classes.end())
- {
- param->type = FunctionBinding::Param::TYPE_OBJECT;
- }
- else
- {
- map<string, EnumBinding>::iterator enumIter = _enums.find(name);
- if (enumIter != _enums.end())
- {
- param->type = FunctionBinding::Param::TYPE_ENUM;
- }
- else
- {
- __warnings.insert(string("Unrecognized C++ type: ") + functionName + string(" -- ") + (name.size() > 0 ? name : param->info));
- }
- }
- }
- }
- // Ensure that the header for the Lua enum conversion
- // functions is included in the file containing the
- // generated binding that this param/return value is part of.
- if (param->type == FunctionBinding::Param::TYPE_ENUM)
- {
- string enumHeader = string("lua_") + getUniqueName(name) + string(".h");
- if (_includes.find(header) != _includes.end())
- {
- set<string>& includes = _includes[header];
- if (includes.find(enumHeader) == includes.end())
- includes.insert(enumHeader);
- }
- else
- {
- _includes[header].insert(enumHeader);
- }
- }
- }
- void Generator::resolveTypes()
- {
- // Go through all member functions and attempt to resolve unrecognized types.
- for (map<string, ClassBinding>::iterator iter = _classes.begin(); iter != _classes.end(); iter++)
- {
- map<string, vector<FunctionBinding> >::iterator functionNameIter = iter->second.bindings.begin();
- for (; functionNameIter != iter->second.bindings.end(); functionNameIter++)
- {
- vector<FunctionBinding>::iterator functionIter = functionNameIter->second.begin();
- for (; functionIter != functionNameIter->second.end(); functionIter++)
- {
- resolveType(&functionIter->returnParam, iter->first + string("::") + functionIter->name, iter->second.include);
- vector<FunctionBinding::Param>::iterator paramIter = functionIter->paramTypes.begin();
- for (; paramIter != functionIter->paramTypes.end(); paramIter++)
- {
- resolveType(&(*paramIter), iter->first + string("::") + functionIter->name, iter->second.include);
- }
- }
- }
- }
- // Go through all non-member functions and attempt to resolve unrecognized types.
- string globalHeader = string("lua_") + string(LUA_GLOBAL_FILENAME) + string(".h");
- for (map<string, vector<FunctionBinding> >::iterator iter = _functions.begin(); iter != _functions.end(); iter++)
- {
- vector<FunctionBinding>::iterator functionIter = iter->second.begin();
- for (; functionIter != iter->second.end(); functionIter++)
- {
- resolveType(&functionIter->returnParam, functionIter->name, globalHeader);
- vector<FunctionBinding::Param>::iterator paramIter = functionIter->paramTypes.begin();
- for (; paramIter != functionIter->paramTypes.end(); paramIter++)
- {
- resolveType(&(*paramIter), functionIter->name, globalHeader);
- }
- }
- }
- }
- void Generator::generateBindings(string* bindingNS)
- {
- bool generatingGameplay = false;
- if (bindingNS && (*bindingNS == "gameplay"))
- generatingGameplay = true;
- string luaAllHStr = _outDir + string(LUA_ALL_BINDINGS_FILENAME) + string(".h");
- ofstream luaAllH(luaAllHStr.c_str());
- string includeGuard = string(LUA_ALL_BINDINGS_FILENAME) + string("_H_");
- transform(includeGuard.begin(), includeGuard.end(), includeGuard.begin(), ::toupper);
- luaAllH << "#ifndef " << includeGuard << "\n";
- luaAllH << "#define " << includeGuard << "\n\n";
-
- string luaAllCppStr = _outDir + string(LUA_ALL_BINDINGS_FILENAME) + string(".cpp");
- ofstream luaAllCpp(luaAllCppStr.c_str());
- luaAllCpp << "#include \"Base.h\"\n";
- luaAllCpp << "#include \"" << string(LUA_ALL_BINDINGS_FILENAME) << ".h\"\n\n";
- if (bindingNS)
- {
- luaAllCpp << "namespace " << *bindingNS << "\n";
- luaAllCpp << "{\n\n";
- }
- luaAllCpp << "void lua_RegisterAllBindings()\n";
- luaAllCpp << "{\n";
- // Write out all the class bindings.
- if (_classes.size() > 0)
- {
- map<string, ClassBinding>::iterator iter = _classes.begin();
- for (; iter != _classes.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->second.classname) == _namespaces["gameplay"].end()))
- {
- cout << "Generating bindings for '" << iter->first << "'...\n";
- iter->second.write(_outDir, _includes[iter->second.include], bindingNS);
- luaAllH << "#include \"lua_" << iter->second.uniquename << ".h\"\n";
- luaAllCpp << " luaRegister_" << iter->second.uniquename << "();\n";
- }
- }
- }
- // Go through all the classes and if they have any derived classes, add them to the list of base classes.
- vector<string> baseClasses;
- for (map<string, ClassBinding>::iterator iter = _classes.begin(); iter != _classes.end(); iter++)
- {
- if (iter->second.derived.size() > 0)
- baseClasses.push_back(iter->first);
- }
- // Write out all the enum files.
- if (_enums.size() > 0)
- {
- // Write out the enum conversion function declarations.
- for (map<string, EnumBinding>::iterator iter = _enums.begin(); iter != _enums.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->first) == _namespaces["gameplay"].end()))
- {
- cout << "Generating bindings for '" << iter->first << "'...\n";
- // Header.
- string enumHStr = _outDir + string("lua_") + getUniqueName(iter->first) + string(".h");
- ofstream enumH(enumHStr.c_str());
- includeGuard = string("lua_") + getUniqueName(iter->first) + string("_H_");
- transform(includeGuard.begin(), includeGuard.end(), includeGuard.begin(), ::toupper);
- enumH << "#ifndef " << includeGuard << "\n";
- enumH << "#define " << includeGuard << "\n\n";
- enumH << "#include \"" << iter->second.include << "\"\n\n";
- if (bindingNS)
- {
- enumH << "namespace " << *bindingNS << "\n";
- enumH << "{\n\n";
- }
- enumH << "// Lua bindings for enum conversion functions for " << iter->first << ".\n";
- enumH << iter->first << " lua_enumFromString_" << getUniqueName(iter->first) << "(const char* s);\n";
- enumH << "const char* lua_stringFromEnum_" << getUniqueName(iter->first) << "(" << iter->first << " e);\n\n";
- if (bindingNS)
- {
- enumH << "}\n\n";
- }
- enumH << "#endif\n";
- enumH.close();
- // Implementation.
- string enumCppStr = _outDir + string("lua_") + getUniqueName(iter->first) + string(".cpp");
- ofstream enumCpp(enumCppStr.c_str());
- enumCpp << "#include \"Base.h\"\n";
- enumCpp << "#include \"lua_" << getUniqueName(iter->first) << ".h\"\n\n";
- if (bindingNS)
- {
- enumCpp << "namespace " << *bindingNS << "\n";
- enumCpp << "{\n\n";
- }
- enumCpp << "static const char* enumStringEmpty = \"\";\n\n";
- // Build the scope string if applicable.
- string scope;
- if (iter->second.scopePath.size() > 0)
- {
- for (unsigned int i = 0; i < iter->second.scopePath.size(); i++)
- {
- scope += iter->second.scopePath[i] + string("::");
- }
- }
- // Write out the string constants that correspond to the enumeration values.
- for (unsigned int i = 0; i < iter->second.values.size(); i++)
- {
- enumCpp << "static const char* luaEnumString_" << getUniqueName(iter->first) << "_";
- enumCpp << iter->second.values[i] << " = \"" << iter->second.values[i] << "\";\n";
- }
- enumCpp << "\n";
- enumCpp << iter->first << " lua_enumFromString_" << getUniqueName(iter->first) << "(const char* s)\n";
- enumCpp << "{\n";
-
- for (unsigned int i = 0; i < iter->second.values.size(); i++)
- {
- enumCpp << " ";
-
- enumCpp << "if (strcmp(s, luaEnumString_" << getUniqueName(iter->first) << "_" << iter->second.values[i] << ") == 0)\n";
- enumCpp << " return ";
- if (scope.size() > 0)
- enumCpp << scope;
- enumCpp << iter->second.values[i] << ";\n";
- if (i == iter->second.values.size() - 1)
- {
- enumCpp << " GP_ERROR(\"Invalid enumeration value '%s' for enumeration " << iter->first << ".\", s);\n";
- enumCpp << " return ";
- if (scope.size() > 0)
- enumCpp << scope;
- enumCpp << iter->second.values[0] << ";\n";
- }
- }
- enumCpp << "}\n\n";
- enumCpp << "const char* lua_stringFromEnum_" << getUniqueName(iter->first) << "(" << iter->first << " e)\n";
- enumCpp << "{\n";
- // Write out the enum-to-string conversion code.
- for (unsigned int i = 0; i < iter->second.values.size(); i++)
- {
- enumCpp << " ";
-
- enumCpp << "if (e == ";
- if (scope.size() > 0)
- enumCpp << scope;
- enumCpp << iter->second.values[i] << ")\n";
- enumCpp << " return luaEnumString_" << getUniqueName(iter->first) << "_" << iter->second.values[i] << ";\n";
- if (i == iter->second.values.size() - 1)
- {
- enumCpp << " GP_ERROR(\"Invalid enumeration value '%d' for enumeration " << iter->first << ".\", e);\n";
- enumCpp << " return enumStringEmpty;\n";
- }
- }
- enumCpp << "}\n\n";
- if (bindingNS)
- {
- enumCpp << "}\n\n";
- }
- enumCpp.close();
- }
- }
- }
- // Write out the global bindings file.
- cout << "Generating global bindings...\n";
- if (baseClasses.size() > 0 || _functions.size() > 0 || _enums.size() > 0)
- {
- // Calculate if there are global function bindings to write out.
- bool generateGlobalFunctionBindings = false;
- if (_functions.size() > 0)
- {
- for (map<string, vector<FunctionBinding> >::iterator iter = _functions.begin(); iter != _functions.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->second[0].name) == _namespaces["gameplay"].end()))
- {
- generateGlobalFunctionBindings = true;
- break;
- }
- }
- }
- // Calculate if there are enum bindings to write out.
- bool generateEnumBindings = false;
- if (_enums.size() > 0)
- {
- for (map<string, EnumBinding>::iterator iter = _enums.begin(); iter != _enums.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->first) == _namespaces["gameplay"].end()))
- {
- generateEnumBindings = true;
- break;
- }
- }
- }
- // Write out the header file.
- {
- string path = _outDir + string(LUA_GLOBAL_FILENAME) + string(".h");
- ofstream global(path.c_str());
- includeGuard = string(LUA_GLOBAL_FILENAME) + string("_H_");
- transform(includeGuard.begin(), includeGuard.end(), includeGuard.begin(), ::toupper);
- global << "#ifndef " << includeGuard << "\n";
- global << "#define " << includeGuard << "\n\n";
- // Write out the needed includes for the global enumeration function.
- for (map<string, EnumBinding>::iterator iter = _enums.begin(); iter != _enums.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->first) == _namespaces["gameplay"].end()))
- global << "#include \"lua_" << getUniqueName(iter->first) << ".h\"\n";
- }
- global << "\n";
- luaAllH << "#include \"" << string(LUA_GLOBAL_FILENAME) << ".h\"\n";
- luaAllCpp << " luaRegister_" << LUA_GLOBAL_FILENAME << "();\n";
- if (bindingNS)
- {
- global << "namespace " << *bindingNS << "\n";
- global << "{\n\n";
- }
- if (generateGlobalFunctionBindings)
- {
- global << "// Lua bindings for global functions.\n";
- // Write out the binding function declarations.
- for (map<string, vector<FunctionBinding> >::iterator iter = _functions.begin(); iter != _functions.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->second[0].name) == _namespaces["gameplay"].end()))
- global << "int " << iter->second[0].getFunctionName() << "(lua_State* state);\n";
- }
- global << "\n";
- }
- if (generateEnumBindings)
- {
- global << "// Global enum to string conversion function (used to pass enums to Lua from C++).\n";
- global << "const char* lua_stringFromEnumGlobal(std::string& enumname, unsigned int value);\n\n";
- }
-
- // Write out the signature of the function used to register the global functions with Lua.
- global << "void luaRegister_" << LUA_GLOBAL_FILENAME << "();\n\n";
- if (bindingNS)
- global << "}\n\n";
- global << "#endif\n";
- global.close();
- }
- // Write out the implementation.
- {
- string path = _outDir + string(LUA_GLOBAL_FILENAME) + string(".cpp");
- ofstream global(path.c_str());
- global << "#include \"ScriptController.h\"\n";
- global << "#include \"" << LUA_GLOBAL_FILENAME << ".h\"\n";
- map<string, set<string> >::iterator iter = _includes.find(string(LUA_GLOBAL_FILENAME) + string(".h"));
- if (iter != _includes.end())
- {
- set<string>::iterator includeIter = iter->second.begin();
- for (; includeIter != iter->second.end(); includeIter++)
- {
- global << "#include \"" << *includeIter << "\"\n";
- }
- }
- global << "\n";
- if (bindingNS)
- {
- global << "namespace " << *bindingNS << "\n";
- global << "{\n\n";
- }
- // Write out the function used to register all global bindings with Lua.
- global << "void luaRegister_" << LUA_GLOBAL_FILENAME << "()\n";
- global << "{\n";
-
- if (generateGlobalFunctionBindings)
- {
- // Bind the non-member functions.
- for (map<string, vector<FunctionBinding> >::iterator iter = _functions.begin(); iter != _functions.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->second[0].name) == _namespaces["gameplay"].end()))
- global << " ScriptUtil::registerFunction(\"" << iter->second[0].name << "\", " << iter->second[0].getFunctionName() << ");\n";
- }
- }
- // Generate the hierarchy map.
- if (baseClasses.size() > 0)
- {
- for (unsigned int i = 0, count = baseClasses.size(); i < count; i++)
- {
- set<string> derived;
- getAllDerived(derived, baseClasses[i]);
- for (set<string>::iterator iter = derived.begin(); iter != derived.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(*iter) == _namespaces["gameplay"].end()))
- global << " ScriptUtil::setGlobalHierarchyPair(\"" << baseClasses[i] << "\", \"" << *iter << "\");\n";
- }
- }
- }
- // Register all enums.
- if (generateEnumBindings)
- {
- global << " ScriptUtil::addStringFromEnumConversionFunction(&";
- if (bindingNS)
- global << *bindingNS << "::";
- global << "lua_stringFromEnumGlobal);\n";
- for (map<string, EnumBinding>::iterator iter = _enums.begin(); iter != _enums.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->first) == _namespaces["gameplay"].end()))
- {
- global << "\n // Register enumeration " << iter->first << ".\n";
- global << " {\n";
- global << " std::vector<std::string> scopePath;\n";
- for (unsigned int i = 0; i < iter->second.scopePath.size(); i++)
- {
- global << " scopePath.push_back(\"" << iter->second.scopePath[i] << "\");\n";
- }
- vector<string>::iterator enumIter = iter->second.values.begin();
- for (; enumIter != iter->second.values.end(); enumIter++)
- {
- global << " ScriptUtil::registerConstantString(\"" << *enumIter << "\", \"" << *enumIter << "\", scopePath);\n";
- }
- global << " }\n";
- }
- }
- }
- global << "}\n\n";
-
- // Write out the binding functions.
- if (generateGlobalFunctionBindings)
- {
- for (map<string, vector<FunctionBinding> >::iterator iter = _functions.begin(); iter != _functions.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->second[0].name) == _namespaces["gameplay"].end()))
- FunctionBinding::write(global, iter->second);
- }
- }
- // Write out the global enum conversion function (used to pass enums from C++ to Lua).
- if (generateEnumBindings)
- {
- global << "static const char* enumStringEmpty = \"\";\n\n";
- global << "const char* lua_stringFromEnumGlobal(std::string& enumname, unsigned int value)\n";
- global << "{\n";
- for (map<string, EnumBinding>::iterator iter = _enums.begin(); iter != _enums.end(); iter++)
- {
- if (generatingGameplay || (!generatingGameplay && _namespaces["gameplay"].find(iter->first) == _namespaces["gameplay"].end()))
- {
- global << " if (enumname == \"";
- global << iter->first << "\")\n";
- global << " return lua_stringFromEnum_" << getUniqueName(iter->first) << "((" << iter->first << ")value);\n";
- }
- }
- global << "\n";
- global << " GP_ERROR(\"Unrecognized enumeration type '%s'.\", enumname.c_str());\n";
- global << " return enumStringEmpty;\n";
- global << "}\n\n";
- }
- if (bindingNS)
- global << "}\n";
- global.close();
- }
- }
- luaAllCpp << "}\n\n";
- if (bindingNS)
- luaAllCpp << "}\n\n";
- luaAllCpp.close();
- if (bindingNS)
- {
- luaAllH << "\nnamespace " << *bindingNS << "\n";
- luaAllH << "{\n\n";
- }
- luaAllH << "void lua_RegisterAllBindings();\n\n";
- if (bindingNS)
- luaAllH<< "}\n\n";
- luaAllH << "#endif\n";
- luaAllH.close();
- }
- void Generator::getAllDerived(set<string>& derived, string classname)
- {
- for (unsigned int i = 0, count = _classes[classname].derived.size(); i < count; i++)
- {
- // If the derived class is not in the ref ID table, then it
- // is a hidden (protected, private, etc.) class, so don't include it.
- if (_refIds.find(_classes[classname].derived[i]) != _refIds.end())
- {
- string derivedClassName = getIdentifier(_classes[classname].derived[i]);
- derived.insert(derivedClassName);
- getAllDerived(derived, derivedClassName);
- }
- }
- }
- void Generator::getIncludes(XMLElement* e, string filename)
- {
- filename.replace(filename.find(".cpp"), 4, ".h");
- for (e = e->FirstChildElement("includes"); e; e = e->NextSiblingElement("includes"))
- {
- if (e->Attribute("refid"))
- _includes[filename].insert(e->GetText());
- }
- }
- // ----------------------------------------------------------------------------
- // Utility functions
- static string trim(const string& str)
- {
- string s = str;
- while (isspace(s[0]))
- {
- s.erase(s.begin());
- }
- while (isspace(s[s.size() - 1]))
- {
- s.erase(s.begin() + s.size() - 1);
- }
- return s;
- }
- static string stripTypeQualifiers(const string& typeStr, FunctionBinding::Param::Kind& kind)
- {
- string type = typeStr;
- kind = FunctionBinding::Param::KIND_VALUE;
- // Check if the type is a reference.
- string::size_type i = type.find("&");
- if (i != type.npos)
- {
- kind = FunctionBinding::Param::KIND_REFERENCE;
- type.erase(type.begin() + i);
- }
- // Check if the type is a pointer.
- i = type.find("*");
- if (i != type.npos)
- {
- kind = FunctionBinding::Param::KIND_POINTER;
- type.erase(type.begin() + i);
- }
- // Ignore const qualifiers.
- i = type.find("const ");
- if (i != type.npos)
- {
- type.erase(type.begin() + i, type.begin() + i + 6);
- }
- return trim(type);
- }
- static inline bool isWantedFileNormal(const string& s)
- {
- if (s.find(".xml") == s.size() - 4)
- {
- if (s.find("class") == 0 || s.find("struct") == 0 ||
- (s.find("_") == 0 && (s.find("h.xml") != s.npos || s.find("cpp.xml") != s.npos)))
- return true;
- }
- return false;
- }
- static inline bool isNamespaceFile(const string& s)
- {
- if (s.find(".xml") == s.size() - 4)
- {
- if (s.find("namespace") == 0)
- return true;
- }
- return false;
- }
- static inline bool isGeneratedBindingFile(const string& s)
- {
- return ( (s.find(".cpp") == s.size() - 4) || (s.find(".h") == s.size() - 2) );
- }
- static bool getFileList(string directory, vector<string>& files, bool (*isWantedFile)(const string& s))
- {
- #ifdef WIN32
- string path = directory + string("/*");
- // Convert char to wchar.
- basic_string<TCHAR> wPath;
- wPath.assign(path.begin(), path.end());
- WIN32_FIND_DATA FindFileData;
- HANDLE hFind = FindFirstFile(wPath.c_str(), &FindFileData);
- if (hFind == INVALID_HANDLE_VALUE)
- {
- return false;
- }
- do
- {
- // Add to the list if this is not a directory and it passes the test function.
- if ((FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
- {
- // Convert wchar to char.
- basic_string<TCHAR> wfilename(FindFileData.cFileName);
- string filename;
- filename.assign(wfilename.begin(), wfilename.end());
- if (isWantedFile(filename))
- {
- filename = string(directory) + string("/") + filename;
- files.push_back(filename);
- }
- }
- } while (FindNextFile(hFind, &FindFileData) != 0);
- FindClose(hFind);
- return true;
- #else
- string path = directory + string("/.");
- struct dirent* dp;
- DIR* dir = opendir(path.c_str());
- if (!dir)
- {
- return false;
- }
- while ((dp = readdir(dir)) != NULL)
- {
- string filepath(path);
- filepath.append("/");
- filepath.append(dp->d_name);
- struct stat buf;
- if (!stat(filepath.c_str(), &buf))
- {
- // Add to the list if this is not a directory and it passes the test function.
- if (!S_ISDIR(buf.st_mode))
- {
- string filename = dp->d_name;
- if (isWantedFile(filename))
- {
- filename = string(directory) + string("/") + filename;
- files.push_back(filename);
- }
- }
- }
- }
- closedir(dir);
- return true;
- #endif
- }
- bool isReservedKeyword(string name)
- {
- static set<string> keywords;
- if (keywords.size() == 0)
- {
- keywords.insert("and");
- keywords.insert("break");
- keywords.insert("do");
- keywords.insert("else");
- keywords.insert("elseif");
- keywords.insert("end");
- keywords.insert("false");
- keywords.insert("for");
- keywords.insert("function");
- keywords.insert("if");
- keywords.insert("in");
- keywords.insert("local");
- keywords.insert("nil");
- keywords.insert("not");
- keywords.insert("or");
- keywords.insert("repeat");
- keywords.insert("return");
- keywords.insert("then");
- keywords.insert("true");
- keywords.insert("until");
- keywords.insert("while");
- };
- return keywords.find(name) != keywords.end();
- }
- // ----------------------------------------------------------------------------
|