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
|
// SPDX-FileCopyrightText: 2022 Gleb Popov <arrowd@FreeBSD.org>
// SPDX-License-Identifier: BSD-3-Clause
#ifndef CRAFTRUNTIME_H
#define CRAFTRUNTIME_H
#include <vector>
#include <QString>
#include <QFileSystemWatcher>
#include <interfaces/iruntime.h>
#include <util/path.h>
class QProcess;
namespace KDevelop {
class IProject;
}
// An auxiliary structure to hold normalized name and value of an env var
struct EnvironmentVariable
{
EnvironmentVariable(const QByteArray& name, const QByteArray& value);
QByteArray name;
QByteArray value;
};
Q_DECLARE_TYPEINFO(EnvironmentVariable, Q_MOVABLE_TYPE);
class CraftRuntime : public KDevelop::IRuntime
{
Q_OBJECT
public:
CraftRuntime(const QString& craftRoot, const QString& pythonExecutable);
QString name() const override;
void setEnabled(bool enabled) override;
void startProcess(KProcess* process) const override;
void startProcess(QProcess* process) const override;
KDevelop::Path pathInHost(const KDevelop::Path& runtimePath) const override;
KDevelop::Path pathInRuntime(const KDevelop::Path& localPath) const override;
QString findExecutable(const QString& executableName) const override;
QByteArray getenv(const QByteArray& varname) const override;
KDevelop::Path buildPath() const override
{
return {};
}
QString craftRoot() const
{
return m_craftRoot;
}
static QString findCraftRoot(KDevelop::Path startingPoint);
static QString findPython();
private:
void setEnvironmentVariables(QProcess* process) const;
void refreshEnvCache();
const QString m_craftRoot;
const QString m_pythonExecutable;
QFileSystemWatcher m_watcher;
std::vector<EnvironmentVariable> m_envCache;
};
#endif // CRAFTRUNTIME_H
|