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.
ksensors/src/processexec.cpp

59 lines
1.9 KiB

/***************************************************************************
processexec.cpp - description
-------------------
begin : sáb abr 27 2002
copyright : (C) 2002 by asdf
email : dsf
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <string.h>
#include "processexec.h"
ProcessExec::ProcessExec(): KProcess()
{
clearData();
connect( this, SIGNAL(receivedStdout(KProcess *, char *, int)),this, SLOT(slotReceivedStdout(KProcess *, char *, int)) );
connect( this, SIGNAL(receivedStderr(KProcess *, char *, int)),this, SLOT(slotReceivedStderr(KProcess *, char *, int)) );
}
ProcessExec::~ProcessExec(){
}
bool ProcessExec::run()
{
clearData();
return start( NotifyOnExit, Communication(Stdout | Stderr )); // | NoRead));
}
bool ProcessExec::runAndWait()
{
clearData();
return start(Block,Communication(Stdout|Stderr));
}
void ProcessExec::slotReceivedStdout(KProcess *proc, char *buf, int len)
{
if(bufLen+len>=bufMax) len= bufMax-bufLen;
if(len) {
memcpy(buffer+bufLen,buf,len);
bufLen+= len;
buffer[bufLen]=0;
}
}
void ProcessExec::slotReceivedStderr(KProcess *proc, char *buf, int len)
{
fErrors= true;
slotReceivedStdout(proc,buf,len);
}