/*************************************************************************** ** ** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB) ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the utilities of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** As a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #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); } } }