#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) { 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().replace( "\"", QString() ).toUpper(); QString value = (*it++).trimmed().replace( "\"", QString() ); 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"]; const char * clicenseKey = licenseKey.toLatin1(); //We check the licence #ifndef _WIN32_WCE char *buffer = strdup(clicenseKey); #else char *buffer = (char*) malloc(strlen(clicenseKey) + 1); strcpy(buffer, clicenseKey); #endif static const char * const SEP = "-"; char *licenseParts[NUMBER_OF_PARTS]; int partNumber = 0; for (char *part = strtok(buffer, 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." <