You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1018 B
64 lines
1018 B
#include "process.h"
|
|
|
|
|
|
|
|
|
|
Process::Process()
|
|
{
|
|
_buffer = TQString();
|
|
_process = new KProcess();
|
|
|
|
connect(_process, TQT_SIGNAL(receivedStdout(KProcess*, char*, int)),
|
|
this, TQT_SLOT(slotProcessOutput(KProcess*, char*, int)));
|
|
|
|
}
|
|
|
|
Process::~Process()
|
|
{
|
|
}
|
|
|
|
void Process::setCommand(TQString command)
|
|
{
|
|
// make clean
|
|
_process->clearArguments();
|
|
_buffer = TQString();
|
|
|
|
*_process << "/bin/bash";
|
|
*_process << "-c";
|
|
*_process << command;
|
|
}
|
|
|
|
|
|
void Process::start(bool block)
|
|
{
|
|
if( block )
|
|
_process->start(KProcess::Block, KProcess::Stdout);
|
|
else
|
|
_process->start(KProcess::DontCare, KProcess::Stdout);
|
|
}
|
|
|
|
TQString Process::getBuffer()
|
|
{
|
|
return _buffer;
|
|
}
|
|
|
|
int Process::exitStatus()
|
|
{
|
|
return _process->exitStatus();
|
|
}
|
|
|
|
bool Process::normalExit()
|
|
{
|
|
return _process->normalExit();
|
|
}
|
|
|
|
void Process::slotProcessOutput(KProcess* process, char* buffer, int len)
|
|
{
|
|
if (process != _process) return;
|
|
|
|
_buffer.append(TQString::fromLocal8Bit(buffer, len));
|
|
}
|
|
|
|
|
|
|