// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB) // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "xmlspecparser.h" #include #include #include #include #include #include #ifdef SPECPARSER_DEBUG #define qXmlSpecParserDebug qDebug #else #define qXmlSpecParserDebug QT_NO_QDEBUG_MACRO #endif bool XmlSpecParser::parse() { // Open up a stream on the actual OpenGL function spec file QFile file(specFileName()); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { qWarning() << "Failed to open spec file:" << specFileName() << "Aborting"; return false; } QXmlStreamReader stream(&file); // Extract the info that we need parseFunctions(stream); return true; } void XmlSpecParser::parseParam(QXmlStreamReader &stream, Function &func) { Argument arg; arg.type = QString(); while (!stream.isEndDocument()) { stream.readNext(); if (stream.isStartElement()) { QString tag = stream.name().toString(); if (tag == "ptype") { if (stream.readNext() == QXmlStreamReader::Characters) arg.type.append(stream.text().toString()); } else if (tag == "name") { if (stream.readNext() == QXmlStreamReader::Characters) arg.name = stream.text().toString().trimmed(); } } else if (stream.isCharacters()) { arg.type.append(stream.text().toString()); } else if (stream.isEndElement()) { QString tag = stream.name().toString(); if (tag == "param") { // compatibility with old spec QRegularExpression typeRegExp("(const )?(.+)(? funcs = m_extensionFunctions.values("GL_ARB_imaging"); VersionProfile vp; vp.version = versionThreshold; Q_FOREACH (const FunctionProfile& fp, funcs) { vp.profile = fp.profile; m_functions.insert(vp, fp.function); } // now we will prune any duplicates QSet funcset; Q_FOREACH (const Version& v, m_versions) { // check compatibility first VersionProfile vp; vp.version = v; vp.profile = VersionProfile::CompatibilityProfile; Q_FOREACH (const Function& f, m_functions.values(vp)) { // remove duplicate if (funcset.contains(f.name)) m_functions.remove(vp, f); funcset.insert(f.name); } vp.profile = VersionProfile::CoreProfile; Q_FOREACH (const Function& f, m_functions.values(vp)) { // remove duplicate if (funcset.contains(f.name)) m_functions.remove(vp, f); funcset.insert(f.name); } } }