/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the tools applications of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** 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. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "tools.h" #include #include #include // std stuff ------------------------------------ #include #include #include #define NUMBER_OF_PARTS 7 std::ostream &operator<<(std::ostream &s, const QString &val); // defined in configureapp.cpp using namespace std; void Tools::checkLicense(QMap &dictionary, QMap &licenseInfo, const QString &path) { if (dictionary[ "BUILDNOKIA" ] == "yes") { dictionary["EDITION"] = "DigiaInternalBuild"; dictionary["LICENSE_FILE"] = ""; // No License for nokia developers dictionary["QT_EDITION"] = "QT_EDITION_OPENSOURCE"; return; // No license key checking in internal builds } QString tpLicense = dictionary["QT_SOURCE_TREE"] + "/LICENSE.PREVIEW.OPENSOURCE"; if (QFile::exists(tpLicense)) { dictionary["EDITION"] = "Preview"; dictionary["LICENSE FILE"] = tpLicense; dictionary["QT_EDITION"] = "QT_EDITION_OPENSOURCE"; return; // No license key checking in Tech Preview } tpLicense = dictionary["QT_SOURCE_TREE"] + "/LICENSE.PREVIEW.COMMERCIAL"; if (QFile::exists(tpLicense)) { dictionary["EDITION"] = "Preview"; dictionary["LICENSE FILE"] = tpLicense; dictionary["QT_EDITION"] = "QT_EDITION_DESKTOP"; return; // No license key checking in Tech Preview } // Read in the license file QFile licenseFile(path); if( !path.isEmpty() && licenseFile.open( QFile::ReadOnly ) ) { cout << "Reading license file in....." << qPrintable(path) << endl; QString buffer = licenseFile.readLine(1024); while (!buffer.isEmpty()) { if( buffer[ 0 ] != '#' ) { QStringList components = buffer.split( '=' ); if ( components.size() >= 2 ) { QStringList::Iterator it = components.begin(); QString key = (*it++).trimmed().remove('"').toUpper(); QString value = (*it++).trimmed().remove('"'); licenseInfo[ key ] = value; } } // read next line buffer = licenseFile.readLine(1024); } licenseFile.close(); } else { cout << "License file not found in " << QDir::homePath() << endl; cout << "Please put the Qt license file, '.qt-license' in your home " << "directory and run configure again."; dictionary["DONE"] = "error"; return; } // Verify license info... QString licenseKey = licenseInfo["LICENSEKEYEXT"]; QByteArray clicenseKey = licenseKey.toLatin1(); //We check the license static const char * const SEP = "-"; char *licenseParts[NUMBER_OF_PARTS]; int partNumber = 0; for (char *part = strtok(clicenseKey.data(), SEP); part != 0; part = strtok(0, SEP)) licenseParts[partNumber++] = part; if (partNumber < (NUMBER_OF_PARTS-1)) { dictionary["DONE"] = "error"; cout << "License file does not contain proper license key." <