summaryrefslogtreecommitdiffstats
path: root/src/processexec.cpp
blob: 03800cbd4561b617d3adbf321478977e641480ab (plain)
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
/***************************************************************************
                          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(): TDEProcess()
{
 clearData();
 connect( this, TQ_SIGNAL(receivedStdout(TDEProcess *, char *, int)),this, TQ_SLOT(slotReceivedStdout(TDEProcess *, char *, int)) );
 connect( this, TQ_SIGNAL(receivedStderr(TDEProcess *, char *, int)),this, TQ_SLOT(slotReceivedStderr(TDEProcess *, 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(TDEProcess *proc, char *buf, int len)
{
  buffer = TQString(buf);
}

void ProcessExec::slotReceivedStderr(TDEProcess *proc, char *buf, int len)
{
 fErrors= true;
 slotReceivedStdout(proc,buf,len);
}

#include "processexec.moc"