#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));
	}