summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/maemoqtversion.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-05-25 11:23:25 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2011-05-26 13:31:05 +0200
commit64ba06e22164c4b2f6e80135dd44acac8963cd2d (patch)
treef75a03dc3fc11f40ed1b3b043e95b20cd1e48c15 /src/plugins/remotelinux/maemoqtversion.cpp
parentfce956895b4151678f0cb1bc2b0886d0e70bfec9 (diff)
downloadqt-creator-64ba06e22164c4b2f6e80135dd44acac8963cd2d.tar.gz
Maemo: Create dedicated plugin.
No change in functionality for now. More support for generic remote Linux support is planned to be added. The changes in decreasing order of magnitude: 1) Move contents of qt4projectmanager/qt-maemo to new "RemoteLinux" plugin. 2) Make some classes in qt4nodes public for now. More decoupling in that area will follow. 3) Fix some minor problems uncovered by the move. Change-Id: I51d0c7977c10019eb6080cd6620bc28ecebad3c4 Reviewed-on: http://codereview.qt.nokia.com/106 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/maemoqtversion.cpp')
-rw-r--r--src/plugins/remotelinux/maemoqtversion.cpp174
1 files changed, 174 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/maemoqtversion.cpp b/src/plugins/remotelinux/maemoqtversion.cpp
new file mode 100644
index 0000000000..2ef5cdae35
--- /dev/null
+++ b/src/plugins/remotelinux/maemoqtversion.cpp
@@ -0,0 +1,174 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (info@qt.nokia.com)
+**
+**
+** GNU Lesser General Public License Usage
+**
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** Other Usage
+**
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at info@qt.nokia.com.
+**
+**************************************************************************/
+
+#include "maemoglobal.h"
+#include "maemoqtversion.h"
+
+#include <qt4projectmanager/qt4projectmanagerconstants.h>
+
+#include <qtsupport/qtsupportconstants.h>
+
+#include <QtCore/QCoreApplication>
+#include <QtCore/QFile>
+#include <QtCore/QDir>
+
+using namespace Qt4ProjectManager;
+
+namespace RemoteLinux {
+namespace Internal {
+
+MaemoQtVersion::MaemoQtVersion() : QtSupport::BaseQtVersion()
+{
+
+}
+
+MaemoQtVersion::MaemoQtVersion(const QString &path, bool isAutodetected, const QString &autodetectionSource)
+ : QtSupport::BaseQtVersion(path, isAutodetected, autodetectionSource),
+ m_osVersion(MaemoGlobal::version(path)),
+ m_isvalidVersion(MaemoGlobal::isValidMaemoQtVersion(path, m_osVersion))
+{
+
+}
+
+MaemoQtVersion::~MaemoQtVersion()
+{
+
+}
+
+void MaemoQtVersion::fromMap(const QVariantMap &map)
+{
+ QtSupport::BaseQtVersion::fromMap(map);
+ QString path = qmakeCommand();
+ m_osVersion = MaemoGlobal::version(path);
+ m_isvalidVersion = MaemoGlobal::isValidMaemoQtVersion(path, m_osVersion);
+}
+
+QString MaemoQtVersion::type() const
+{
+ return QtSupport::Constants::MAEMOQT;
+}
+
+MaemoQtVersion *MaemoQtVersion::clone() const
+{
+ return new MaemoQtVersion(*this);
+}
+
+QString MaemoQtVersion::systemRoot() const
+{
+ if (m_systemRoot.isNull()) {
+ QFile file(QDir::cleanPath(MaemoGlobal::targetRoot(qmakeCommand()))
+ + QLatin1String("/information"));
+ if (file.exists() && file.open(QIODevice::ReadOnly | QIODevice::Text)) {
+ QTextStream stream(&file);
+ while (!stream.atEnd()) {
+ const QString &line = stream.readLine().trimmed();
+ const QStringList &list = line.split(QLatin1Char(' '));
+ if (list.count() <= 1)
+ continue;
+ if (list.at(0) == QLatin1String("sysroot")) {
+ m_systemRoot = MaemoGlobal::maddeRoot(qmakeCommand())
+ + QLatin1String("/sysroots/") + list.at(1);
+ }
+ }
+ }
+ }
+ return m_systemRoot;
+}
+
+QList<ProjectExplorer::Abi> MaemoQtVersion::qtAbis() const
+{
+ QList<ProjectExplorer::Abi> result;
+ if (!m_isvalidVersion)
+ return result;
+ if (m_osVersion == MaemoDeviceConfig::Maemo5) {
+ result.append(ProjectExplorer::Abi(ProjectExplorer::Abi::ArmArchitecture, ProjectExplorer::Abi::LinuxOS,
+ ProjectExplorer::Abi::MaemoLinuxFlavor, ProjectExplorer::Abi::ElfFormat,
+ 32));
+ } else if (m_osVersion == MaemoDeviceConfig::Maemo6) {
+ result.append(ProjectExplorer::Abi(ProjectExplorer::Abi::ArmArchitecture, ProjectExplorer::Abi::LinuxOS,
+ ProjectExplorer::Abi::HarmattanLinuxFlavor,
+ ProjectExplorer::Abi::ElfFormat,
+ 32));
+ } else if (m_osVersion == MaemoDeviceConfig::Meego) {
+ result.append(ProjectExplorer::Abi(ProjectExplorer::Abi::ArmArchitecture, ProjectExplorer::Abi::LinuxOS,
+ ProjectExplorer::Abi::MeegoLinuxFlavor,
+ ProjectExplorer::Abi::ElfFormat, 32));
+ }
+ return result;
+}
+
+bool MaemoQtVersion::supportsTargetId(const QString &id) const
+{
+ return supportedTargetIds().contains(id);
+}
+
+QSet<QString> MaemoQtVersion::supportedTargetIds() const
+{
+ QSet<QString> result;
+ if (!m_isvalidVersion)
+ return result;
+ if (m_osVersion == MaemoDeviceConfig::Maemo5) {
+ result.insert(QLatin1String(Constants::MAEMO5_DEVICE_TARGET_ID));
+ } else if (m_osVersion == MaemoDeviceConfig::Maemo6) {
+ result.insert(QLatin1String(Constants::HARMATTAN_DEVICE_TARGET_ID));
+ } else if (m_osVersion == MaemoDeviceConfig::Meego) {
+ result.insert(QLatin1String(Constants::MEEGO_DEVICE_TARGET_ID));
+ }
+ return result;
+}
+
+QString MaemoQtVersion::description() const
+{
+ if (m_osVersion == MaemoDeviceConfig::Maemo5)
+ return QCoreApplication::translate("QtVersion", "Maemo", "Qt Version is meant for Maemo5");
+ else if (m_osVersion == MaemoDeviceConfig::Maemo6)
+ return QCoreApplication::translate("QtVersion", "Harmattan ", "Qt Version is meant for Harmattan");
+ else if (m_osVersion == MaemoDeviceConfig::Meego)
+ return QCoreApplication::translate("QtVersion", "Meego", "Qt Version is meant for Meego");
+ return QString();
+}
+
+bool MaemoQtVersion::supportsShadowBuilds() const
+{
+#ifdef Q_OS_WIN
+ return false;
+#endif
+ return true;
+}
+
+MaemoDeviceConfig::OsVersion MaemoQtVersion::osVersion() const
+{
+ return m_osVersion;
+}
+
+} // namespace Internal
+} // namespace RemoteLinux