diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:18:55 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:18:55 (GMT) |
commit | e5fcad302d86d316390c6b0f62759a067313e8a9 (patch) | |
tree | c2afbf6f1066b6ce261f14341cf6d310e5595bc1 /tools/configure/tools.cpp | |
download | Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.zip Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.gz Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.bz2 |
Long live Qt 4.5!
Diffstat (limited to 'tools/configure/tools.cpp')
-rw-r--r-- | tools/configure/tools.cpp | 172 |
1 files changed, 172 insertions, 0 deletions
diff --git a/tools/configure/tools.cpp b/tools/configure/tools.cpp new file mode 100644 index 0000000..ae1ecda --- /dev/null +++ b/tools/configure/tools.cpp @@ -0,0 +1,172 @@ +#include "tools.h" + +#include <QDir> +#include <QFile> +#include <QByteArray> + + +// std stuff ------------------------------------ +#include <iostream> +#include <windows.h> +#include <conio.h> +#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<QString,QString> &dictionary, QMap<QString,QString> &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." <<partNumber<< endl; + free(buffer); + return; + } + + char products = licenseParts[0][0]; + char platforms = licenseParts[1][0]; + char* licenseSchema = licenseParts[2]; + char licenseFeatures = licenseParts[3][0]; + + // Determine edition --------------------------------------------------------------------------- + QString licenseType; + if (strcmp(licenseSchema,"F4M") == 0) { + licenseType = "Commercial"; + if (products == 'F') { + dictionary["EDITION"] = "Universal"; + dictionary["QT_EDITION"] = "QT_EDITION_UNIVERSAL"; + } else if (products == 'B') { + dictionary["EDITION"] = "FullFramework"; + dictionary["QT_EDITION"] = "QT_EDITION_DESKTOP"; + } else { + dictionary["EDITION"] = "GUIFramework"; + dictionary["QT_EDITION"] = "QT_EDITION_DESKTOPLIGHT"; + } + } else if (strcmp(licenseSchema,"Z4M") == 0 || strcmp(licenseSchema,"R4M") == 0 || strcmp(licenseSchema,"Q4M") == 0) { + if (products == 'B') { + dictionary["EDITION"] = "Evaluation"; + dictionary["QT_EDITION"] = "QT_EDITION_EVALUATION"; + } + } + + // Determine license extension ----------------------------------------------------------------- + if (QFile::exists(dictionary["QT_SOURCE_TREE"] + "/.LICENSE")) { + // Generic, no-suffix license + dictionary["LICENSE_EXTENSION"] = QString(); + } else if (platforms == 'X') { + dictionary["LICENSE_EXTENSION"] = "-ALLOS"; + } else if (/*Windows CE */platforms == '6' || /*Embedded */ platforms == '8' || /*Embedded + Windows CE*/platforms == 'K' || /*Windows + Windows CE*/ platforms == 'H') { + dictionary["LICENSE_EXTENSION"] = "-EMBEDDED"; + } else if (/*Windows*/ platforms == 'R' || /*Mac+X11+Windows*/ platforms == 'F') { + dictionary["LICENSE_EXTENSION"] = "-DESKTOP"; + } else if (dictionary["EDITION"] == "Evaluation") { + dictionary["LICENSE_EXTENSION"] = "-EVALUATION"; + } + if (licenseType.isEmpty() + || dictionary["EDITION"].isEmpty() + || dictionary["QT_EDITION"].isEmpty()) { + cout << "License file does not contain proper license key." << endl; + dictionary["DONE"] = "error"; + return; + } + + // verify that we are licensed to use Qt for Windows + if (dictionary["PLATFORM NAME"].contains("Windows CE")) { + // verify that we are licensed to use Qt for Windows AND Qt for Windows CE + if (platforms != 'H') { + cout << "You are not licensed for the " << dictionary["PLATFORM NAME"] << " platform." << endl << endl; + cout << "Please contact sales@trolltech.com to upgrade your license" << endl; + cout << "to include the " << dictionary["PLATFORM NAME"] << " platform, or install the" << endl; + cout << "Qt Open Source Edition if you intend to develop free software." << endl; + dictionary["DONE"] = "error"; + return; + } + } else { + if (!( platforms == 'R' || ( platforms == '6' )|| platforms == '8' )) { + cout << "You are not licensed for the " << dictionary["PLATFORM NAME"] << " platform." << endl << endl; + cout << "Please contact sales@trolltech.com to upgrade your license" << endl; + cout << "to include the " << dictionary["PLATFORM NAME"] << " platform, or install the" << endl; + cout << "Qt Open Source Edition if you intend to develop free software." << endl; + dictionary["DONE"] = "error"; + return; + } + } + + // copy one of .LICENSE-*(-US) to LICENSE + QString toLicenseFile = dictionary["QT_SOURCE_TREE"] + "/LICENSE"; + QString fromLicenseFile = dictionary["QT_SOURCE_TREE"] + "/.LICENSE" + dictionary["LICENSE_EXTENSION"]; + if (licenseFeatures == 'G') //US + fromLicenseFile += "-US"; + + if (licenseFeatures == '5') //Floating + dictionary["METERED LICENSE"] = "true"; + + if (!CopyFileA(QDir::toNativeSeparators(fromLicenseFile).toLocal8Bit(), + QDir::toNativeSeparators(toLicenseFile).toLocal8Bit(), FALSE)) { + cout << "Failed to copy license file (" << fromLicenseFile << ")"; + dictionary["DONE"] = "error"; + return; + } + dictionary["LICENSE FILE"] = toLicenseFile; + free(buffer); +} + |