LinuxDevice: Implement runProcess()

Change-Id: I5300d36119ffb9fdd82a2ba7e02f76edc0fe2eda
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-02-03 13:20:15 +01:00
parent 9a5cb5896e
commit f5b946abbe
5 changed files with 71 additions and 12 deletions

View File

@@ -61,6 +61,7 @@ public:
QString host() const { return url.host(); }
quint16 port() const { return url.port(); }
QString userName() const { return url.userName(); }
QString userAtHost() const { return userName().isEmpty() ? host() : userName() + '@' + host(); }
void setHost(const QString &host) { url.setHost(host); }
void setPort(int port) { url.setPort(port); }
void setUserName(const QString &name) { url.setUserName(name); }

View File

@@ -563,6 +563,7 @@ public:
, q(parent)
, m_process(newProcessInstance(parent, processImpl, processMode, terminalMode))
, m_processMode(processMode)
, m_terminalMode(terminalMode)
{
connect(m_process, &ProcessInterface::started,
q, &QtcProcess::started);
@@ -604,12 +605,6 @@ public:
void defaultStart(const CommandLine &commandLine, const FilePath &workingDirectory,
const Environment &environment)
{
if (commandLine.executable().needsDevice()) {
QTC_ASSERT(s_deviceHooks.startProcessHook, return);
s_deviceHooks.startProcessHook(*q);
return;
}
if (processLog().isDebugEnabled()) {
static int n = 0;
qCDebug(processLog) << "STARTING PROCESS: " << ++n << " " << commandLine.toUserOutput();
@@ -696,6 +691,7 @@ public:
QtcProcess *q;
ProcessInterface *m_process;
const ProcessMode m_processMode;
const QtcProcess::TerminalMode m_terminalMode;
CommandLine m_commandLine;
FilePath m_workingDirectory;
Environment m_environment;
@@ -788,6 +784,11 @@ ProcessMode QtcProcess::processMode() const
return d->m_processMode;
}
QtcProcess::TerminalMode QtcProcess::terminalMode() const
{
return d->m_terminalMode;
}
void QtcProcess::setEnvironment(const Environment &env)
{
d->m_environment = env;
@@ -805,6 +806,11 @@ const Environment &QtcProcess::environment() const
return d->m_environment;
}
bool QtcProcess::hasEnvironment() const
{
return d->m_haveEnv;
}
void QtcProcess::setCommand(const CommandLine &cmdLine)
{
if (d->m_workingDirectory.needsDevice() && cmdLine.executable().needsDevice()) {
@@ -845,6 +851,11 @@ void QtcProcess::setUseCtrlCStub(bool enabled)
void QtcProcess::start()
{
if (d->m_commandLine.executable().needsDevice()) {
QTC_ASSERT(s_deviceHooks.startProcessHook, return);
s_deviceHooks.startProcessHook(*this);
return;
}
d->clearForRun();
const CommandLine cmd = d->fullCommandLine();
const Environment env = d->fullEnvironment();

View File

@@ -90,6 +90,7 @@ public:
~QtcProcess();
ProcessMode processMode() const;
TerminalMode terminalMode() const;
enum Result {
// Finished successfully. Unless an ExitCodeInterpreter is set
@@ -111,6 +112,7 @@ public:
void setEnvironment(const Environment &env);
void unsetEnvironment();
const Environment &environment() const;
bool hasEnvironment() const;
void setCommand(const CommandLine &cmdLine);
const CommandLine &commandLine() const;

View File

@@ -286,6 +286,9 @@ public:
explicit LinuxDevicePrivate(LinuxDevice *parent);
~LinuxDevicePrivate();
CommandLine fullLocalCommandLine(const CommandLine &remoteCommand,
QtcProcess::TerminalMode terminalMode,
bool hasDisplay) const;
bool setupShell();
bool runInShell(const CommandLine &cmd, const QByteArray &data = {});
QString outputForRunInShell(const QString &cmd);
@@ -414,9 +417,7 @@ DeviceEnvironmentFetcher::Ptr LinuxDevice::environmentFetcher() const
QString LinuxDevice::userAtHost() const
{
if (sshParameters().userName().isEmpty())
return sshParameters().host();
return sshParameters().userName() + '@' + sshParameters().host();
return sshParameters().userAtHost();
}
FilePath LinuxDevice::mapToGlobalPath(const FilePath &pathOnDevice) const
@@ -438,9 +439,53 @@ bool LinuxDevice::handlesFile(const FilePath &filePath) const
return filePath.scheme() == "ssh" && filePath.host() == userAtHost();
}
void LinuxDevice::runProcess(QtcProcess &) const
CommandLine LinuxDevicePrivate::fullLocalCommandLine(const CommandLine &remoteCommand,
QtcProcess::TerminalMode terminalMode,
bool hasDisplay) const
{
QTC_CHECK(false); // FIXME: Implement
Utils::CommandLine cmd{SshSettings::sshFilePath()};
const SshConnectionParameters parameters = q->sshParameters();
if (hasDisplay)
cmd.addArg("-X");
if (terminalMode != QtcProcess::TerminalOff)
cmd.addArg("-tt");
cmd.addArg("-q");
// TODO: currently this drops shared connection (-o ControlPath=socketFilePath)
cmd.addArgs(parameters.connectionOptions(SshSettings::sshFilePath()) << parameters.host());
CommandLine remoteWithLocalPath = remoteCommand;
FilePath executable = remoteWithLocalPath.executable();
executable.setScheme({});
executable.setHost({});
remoteWithLocalPath.setExecutable(executable);
cmd.addArg(remoteWithLocalPath.toUserOutput());
return cmd;
}
void LinuxDevice::runProcess(QtcProcess &process) const
{
QTC_ASSERT(!process.isRunning(), return);
Utils::Environment env = process.hasEnvironment() ? process.environment()
: Utils::Environment::systemEnvironment();
const bool hasDisplay = env.hasKey("DISPLAY") && (env.value("DISPLAY") != QString(":0"));
if (SshSettings::askpassFilePath().exists()) {
env.set("SSH_ASKPASS", SshSettings::askpassFilePath().toUserOutput());
// OpenSSH only uses the askpass program if DISPLAY is set, regardless of the platform.
if (!env.hasKey("DISPLAY"))
env.set("DISPLAY", ":0");
}
process.setEnvironment(env);
// Otherwise, ssh will ignore SSH_ASKPASS and read from /dev/tty directly.
process.setDisableUnixTerminal();
process.setCommand(d->fullLocalCommandLine(process.commandLine(), process.terminalMode(),
hasDisplay));
process.start();
}
LinuxDevicePrivate::LinuxDevicePrivate(LinuxDevice *parent)

View File

@@ -82,7 +82,7 @@ public:
QByteArray fileContents(const Utils::FilePath &filePath, qint64 limit, qint64 offset) const override;
bool writeFileContents(const Utils::FilePath &filePath, const QByteArray &data) const override;
QDateTime lastModified(const Utils::FilePath &filePath) const override;
void runProcess(Utils::QtcProcess &) const override;
void runProcess(Utils::QtcProcess &process) const override;
qint64 fileSize(const Utils::FilePath &filePath) const override;
qint64 bytesAvailable(const Utils::FilePath &filePath) const override;
QFileDevice::Permissions permissions(const Utils::FilePath &filePath) const override;