/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/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 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, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "winrtrunfactories.h" #include "winrtrunconfiguration.h" #include "winrtruncontrol.h" #include "winrtconstants.h" #include "winrtdebugsupport.h" #include #include #include #include #include #include using namespace ProjectExplorer; using QmakeProjectManager::QmakeProject; using QmakeProjectManager::QmakeProFileNode; namespace WinRt { namespace Internal { static bool isKitCompatible(Kit *kit) { IDevice::ConstPtr device = DeviceKitInformation::device(kit); if (!device) return false; if (device->type() == Constants::WINRT_DEVICE_TYPE_LOCAL || device->type() == Constants::WINRT_DEVICE_TYPE_PHONE || device->type() == Constants::WINRT_DEVICE_TYPE_EMULATOR) return true; return false; } WinRtRunConfigurationFactory::WinRtRunConfigurationFactory() { } QList WinRtRunConfigurationFactory::availableCreationIds(Target *parent, CreationMode mode) const { if (!canHandle(parent)) return QList(); QmakeProject *project = static_cast(parent->project()); QList nodes = project->applicationProFiles(); if (mode == AutoCreate) nodes = QmakeProject::nodesWithQtcRunnable(nodes); return QmakeProject::idsForNodes(Core::Id(Constants::WINRT_RC_PREFIX), nodes); } QString WinRtRunConfigurationFactory::displayNameForId(Core::Id id) const { Q_UNUSED(id); return tr("Run App Package"); } bool WinRtRunConfigurationFactory::canCreate(Target *parent, Core::Id id) const { Q_UNUSED(id); return canHandle(parent); } RunConfiguration *WinRtRunConfigurationFactory::doCreate(Target *parent, Core::Id id) { return new WinRtRunConfiguration(parent, id); } bool WinRtRunConfigurationFactory::canRestore(Target *parent, const QVariantMap &map) const { if (!canHandle(parent)) return false; return idFromMap(map).toString().startsWith(QLatin1String(Constants::WINRT_RC_PREFIX)); } RunConfiguration *WinRtRunConfigurationFactory::doRestore(Target *parent, const QVariantMap &map) { RunConfiguration *config = new WinRtRunConfiguration(parent, idFromMap(map)); config->fromMap(map); return config; } bool WinRtRunConfigurationFactory::canClone(Target *parent, RunConfiguration *product) const { Q_UNUSED(parent); Q_UNUSED(product); return false; } RunConfiguration *WinRtRunConfigurationFactory::clone(Target *parent, RunConfiguration *product) { Q_UNUSED(parent); Q_UNUSED(product); return 0; } bool WinRtRunConfigurationFactory::canHandle(Target *parent) const { if (!isKitCompatible(parent->kit())) return false; if (!qobject_cast(parent->project())) return false; return true; } WinRtRunControlFactory::WinRtRunControlFactory() { } bool WinRtRunControlFactory::canRun(ProjectExplorer::RunConfiguration *runConfiguration, ProjectExplorer::RunMode mode) const { if (!runConfiguration) return false; IDevice::ConstPtr device = DeviceKitInformation::device(runConfiguration->target()->kit()); if (!device) return false; switch (mode) { case DebugRunMode: case DebugRunModeWithBreakOnMain: if (device->type() != Constants::WINRT_DEVICE_TYPE_LOCAL) return false; // fall through case NormalRunMode: return qobject_cast(runConfiguration); default: return false; } } ProjectExplorer::RunControl *WinRtRunControlFactory::create( RunConfiguration *runConfiguration, RunMode mode, QString *errorMessage) { WinRtRunConfiguration *rc = qobject_cast(runConfiguration); QTC_ASSERT(rc, return 0); switch (mode) { case NormalRunMode: return new WinRtRunControl(rc, mode); case DebugRunMode: case DebugRunModeWithBreakOnMain: return WinRtDebugSupport::createDebugRunControl(rc, mode, errorMessage); default: break; } *errorMessage = tr("Unsupported run mode %1.").arg(mode); return 0; } QString WinRtRunControlFactory::displayName() const { return tr("WinRT Run Control Factory"); } } // namespace Internal } // namespace WinRt