1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/*
Copyright 2017 Aleix Pol Gonzalez <aleixpol@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "androidruntime.h"
#include "androidpreferencessettings.h"
#include "debug_android.h"
#include <KProcess>
#include <QProcess>
#include <QUrl>
using namespace KDevelop;
AndroidPreferencesSettings* AndroidRuntime::s_settings = nullptr;
AndroidRuntime::AndroidRuntime()
: KDevelop::IRuntime()
{
}
AndroidRuntime::~AndroidRuntime()
{
}
void AndroidRuntime::setEnabled(bool /*enable*/)
{
}
static void setEnvironmentVariables(QProcess* process)
{
auto env = process->processEnvironment();
env.insert(QStringLiteral("ANDROID_NDK"), QUrl(AndroidRuntime::s_settings->ndk()).toLocalFile());
env.insert(QStringLiteral("ANDROID_SDK_ROOT"), QUrl(AndroidRuntime::s_settings->sdk()).toLocalFile());
process->setProcessEnvironment(env);
}
//integrates with ECM
static QStringList args()
{
return {
QLatin1String("-DCMAKE_TOOLCHAIN_FILE=") + QUrl(AndroidRuntime::s_settings->cmakeToolchain()).toLocalFile(),
QLatin1String("-DANDROID_ABI=") + AndroidRuntime::s_settings->abi(),
QLatin1String("-DANDROID_NDK=") + QUrl(AndroidRuntime::s_settings->ndk()).toLocalFile(),
QLatin1String("-DANDROID_TOOLCHAIN=") + AndroidRuntime::s_settings->toolchain(),
QLatin1String("-DANDROID_API_LEVEL=") + AndroidRuntime::s_settings->api(),
QLatin1String("-DANDROID_ARCHITECTURE=") + AndroidRuntime::s_settings->arch(),
QLatin1String("-DANDROID_SDK_BUILD_TOOLS_REVISION=") + AndroidRuntime::s_settings->buildtools()
};
}
void AndroidRuntime::startProcess(QProcess* process) const
{
if (process->program().endsWith(QLatin1String("cmake"))) {
process->setArguments(process->arguments() << args());
setEnvironmentVariables(process);
}
qCDebug(ANDROID) << "starting qprocess" << process->program() << process->arguments();
process->start();
}
void AndroidRuntime::startProcess(KProcess* process) const
{
if (process->program().first().endsWith(QLatin1String("cmake"))) {
process->setProgram(process->program() << args());
setEnvironmentVariables(process);
}
qCDebug(ANDROID) << "starting kprocess" << process->program().join(QLatin1Char(' '));
process->start();
}
QByteArray AndroidRuntime::getenv(const QByteArray &varname) const
{
return qgetenv(varname.constData());
}
QString AndroidRuntime::findExecutable(const QString& executableName) const
{
QStringList rtPaths;
auto envPaths = getenv(QByteArrayLiteral("PATH")).split(':');
std::transform(envPaths.begin(), envPaths.end(), std::back_inserter(rtPaths),
[this](QByteArray p) {
return pathInHost(Path(QString::fromLocal8Bit(p))).toLocalFile();
});
return QStandardPaths::findExecutable(executableName, rtPaths);
}
|