aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/webassembly/webassemblyrunconfigurationaspects.cpp
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2019-07-12 13:40:00 +0200
committerAlessandro Portale <alessandro.portale@qt.io>2019-07-25 13:17:51 +0000
commitb89ad81293bb11d9ed1936f82679bd520ae9e323 (patch)
tree77e15e5ba78202db2679a028f79a8bbe8e2bf94f /src/plugins/webassembly/webassemblyrunconfigurationaspects.cpp
parent16a2241e7de4366fafe9a5df5b33a099fa2a4f60 (diff)
WebAssembly: Initial commit
This change adds WebAssembly support in the shape of a plugin. - Auto-detection of the emsdk toolchain - Handling of "asmjs-unknown-emscripten" Abi - Binary detection of WebAssembly libraries - Auto-creation of a "WebAssembly runtime" device (with icon) - Runconfiguration that launches the application via the "emrun" tool which spawns a local web server and runs the application on the chosen web browser. Limitations: - So far only tested on Windows/MinGW and Linux - Not yet tested with Qt WebAssembly installation form the installer Only tested with self-built Qt and manually added kit - The attempt to launch an application via emrun, while a previous application is still running, will fail. The reason is that the web servers spawned by emrun listen to the same default port but serve only the content of one application. Possible solutions: We could either spawn the different web servers with different ports, or we could use one single web server instance which serves the whole default project location (home directory). Task-number: QTCREATORBUG-21068 Task-number: QTCREATORBUG-22249 Change-Id: I1a16fbe52382d45c37e9bc624a943a6ca475fa09 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/webassembly/webassemblyrunconfigurationaspects.cpp')
-rw-r--r--src/plugins/webassembly/webassemblyrunconfigurationaspects.cpp114
1 files changed, 114 insertions, 0 deletions
diff --git a/src/plugins/webassembly/webassemblyrunconfigurationaspects.cpp b/src/plugins/webassembly/webassemblyrunconfigurationaspects.cpp
new file mode 100644
index 0000000000..0cee86531d
--- /dev/null
+++ b/src/plugins/webassembly/webassemblyrunconfigurationaspects.cpp
@@ -0,0 +1,114 @@
+/****************************************************************************
+**
+** Copyright (C) 2019 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** 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 The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+****************************************************************************/
+
+#include "webassemblyrunconfigurationaspects.h"
+
+#include <projectexplorer/buildconfiguration.h>
+#include <projectexplorer/runcontrol.h>
+#include <projectexplorer/target.h>
+
+#include <QComboBox>
+#include <QFormLayout>
+
+namespace WebAssembly {
+namespace Internal {
+
+static const char BROWSER_KEY[] = "WASM.WebBrowserSelectionAspect.Browser";
+
+static QStringList detectedBrowsers(ProjectExplorer::Target *target)
+{
+ static QStringList result;
+ if (result.isEmpty()) {
+ const Utils::Environment environment = target->activeBuildConfiguration()->environment();
+ const Utils::FilePath emrunPath = environment.searchInPath("emrun");
+
+ QProcess browserLister;
+ browserLister.setProcessEnvironment(environment.toProcessEnvironment());
+ browserLister.setProgram(emrunPath.toString());
+ browserLister.setArguments({"--list_browsers"});
+ browserLister.start(QIODevice::ReadOnly);
+
+ if (browserLister.waitForFinished()) {
+ const QByteArray output = browserLister.readAllStandardOutput();
+ QTextStream ts(output);
+ QString line;
+ const QRegularExpression regExp(" - (.*):.*");
+ while (ts.readLineInto(&line)) {
+ const QRegularExpressionMatch match = regExp.match(line);
+ if (match.hasMatch())
+ result << match.captured(1);
+ }
+ }
+ }
+ return result;
+}
+
+WebBrowserSelectionAspect::WebBrowserSelectionAspect(ProjectExplorer::Target *target)
+ : m_availableBrowsers(detectedBrowsers(target))
+{
+ m_currentBrowser = m_availableBrowsers.first();
+ setDisplayName(tr("Web browser"));
+ setId("WebBrowserAspect");
+ setSettingsKey("RunConfiguration.WebBrowser");
+}
+
+void WebBrowserSelectionAspect::addToConfigurationLayout(QFormLayout *layout)
+{
+ QTC_CHECK(!m_webBrowserComboBox);
+ m_webBrowserComboBox = new QComboBox(layout->parentWidget());
+ m_webBrowserComboBox->addItems(m_availableBrowsers);
+ m_webBrowserComboBox->setCurrentText(m_currentBrowser);
+ connect(m_webBrowserComboBox, &QComboBox::currentTextChanged,
+ [this](const QString &selectedBrowser){
+ m_currentBrowser = selectedBrowser;
+ emit changed();
+ });
+ layout->addRow(tr("Web browser:"), m_webBrowserComboBox);
+}
+
+void WebBrowserSelectionAspect::fromMap(const QVariantMap &map)
+{
+ m_currentBrowser = map.value(BROWSER_KEY, m_availableBrowsers.first()).toString();
+}
+
+void WebBrowserSelectionAspect::toMap(QVariantMap &map) const
+{
+ map.insert(BROWSER_KEY, m_currentBrowser);
+}
+
+QString WebBrowserSelectionAspect::currentBrowser() const
+{
+ return m_currentBrowser;
+}
+
+EffectiveEmrunCallAspect::EffectiveEmrunCallAspect()
+{
+ setLabelText(tr("Effective emrun call:"));
+ setDisplayStyle(BaseStringAspect::TextEditDisplay);
+ setReadOnly(true);
+}
+
+} // namespace Internal
+} // namespace Webassembly