core: fix interfaces with since= attributes

This commit is contained in:
Vaxry 2024-05-03 17:37:58 +01:00
parent c8c2151c60
commit 3940d97f16
1 changed files with 10 additions and 6 deletions

View File

@ -20,11 +20,13 @@ struct SRequestArgument {
struct SRequest { struct SRequest {
std::vector<SRequestArgument> args; std::vector<SRequestArgument> args;
std::string name; std::string name;
std::string since;
}; };
struct SEvent { struct SEvent {
std::vector<SRequestArgument> args; std::vector<SRequestArgument> args;
std::string name; std::string name;
std::string since;
}; };
struct SInterface { struct SInterface {
@ -45,8 +47,8 @@ struct {
std::vector<SEnum> enums; std::vector<SEnum> enums;
} XMLDATA; } XMLDATA;
std::string argsToShort(std::vector<SRequestArgument>& args) { std::string argsToShort(std::vector<SRequestArgument>& args, const std::string& since) {
std::string shortt = ""; std::string shortt = since;
for (auto& a : args) { for (auto& a : args) {
if (a.wlType == "int") if (a.wlType == "int")
shortt += "i"; shortt += "i";
@ -161,7 +163,8 @@ void parseXML(pugi::xml_document& doc) {
for (auto& rq : iface.children("request")) { for (auto& rq : iface.children("request")) {
SRequest srq; SRequest srq;
srq.name = rq.attribute("name").as_string(); srq.name = rq.attribute("name").as_string();
srq.since = rq.attribute("since").as_string();
for (auto& arg : rq.children("arg")) { for (auto& arg : rq.children("arg")) {
SRequestArgument sargm; SRequestArgument sargm;
@ -180,7 +183,8 @@ void parseXML(pugi::xml_document& doc) {
for (auto& ev : iface.children("event")) { for (auto& ev : iface.children("event")) {
SEvent sev; SEvent sev;
sev.name = ev.attribute("name").as_string(); sev.name = ev.attribute("name").as_string();
sev.since = ev.attribute("since").as_string();
for (auto& arg : ev.children("arg")) { for (auto& arg : ev.children("arg")) {
SRequestArgument sargm; SRequestArgument sargm;
@ -599,7 +603,7 @@ static const wl_message {}[] = {{
// create type table // create type table
const auto TYPE_TABLE_NAME = camelize(std::string{"_"} + "C_" + IFACE_NAME + "_" + rq.name + "_types"); const auto TYPE_TABLE_NAME = camelize(std::string{"_"} + "C_" + IFACE_NAME + "_" + rq.name + "_types");
SOURCE += std::format(" {{ \"{}\", \"{}\", {}}},\n", rq.name, argsToShort(rq.args), rq.args.empty() ? "dummyTypes + 0" : TYPE_TABLE_NAME + " + 0"); SOURCE += std::format(" {{ \"{}\", \"{}\", {}}},\n", rq.name, argsToShort(rq.args, rq.since), rq.args.empty() ? "dummyTypes + 0" : TYPE_TABLE_NAME + " + 0");
} }
SOURCE += "};\n"; SOURCE += "};\n";
@ -614,7 +618,7 @@ static const wl_message {}[] = {{
// create type table // create type table
const auto TYPE_TABLE_NAME = camelize(std::string{"_"} + "C_" + IFACE_NAME + "_" + ev.name + "_types"); const auto TYPE_TABLE_NAME = camelize(std::string{"_"} + "C_" + IFACE_NAME + "_" + ev.name + "_types");
SOURCE += std::format(" {{ \"{}\", \"{}\", {}}},\n", ev.name, argsToShort(ev.args), ev.args.empty() ? "dummyTypes + 0" : TYPE_TABLE_NAME + " + 0"); SOURCE += std::format(" {{ \"{}\", \"{}\", {}}},\n", ev.name, argsToShort(ev.args, ev.since), ev.args.empty() ? "dummyTypes + 0" : TYPE_TABLE_NAME + " + 0");
} }
SOURCE += "};\n"; SOURCE += "};\n";