~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to lib/widgets/processlinemaker.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE project
2
 
   Copyright (C) 2002 John Firebaugh <jfirebaugh@kde.org>
3
 
 
4
 
   This library is free software; you can redistribute it and/or
5
 
   modify it under the terms of the GNU Library General Public
6
 
   License as published by the Free Software Foundation; either
7
 
   version 2 of the License, or (at your option) any later version.
8
 
 
9
 
   This library is distributed in the hope that it will be useful,
10
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
   Library General Public License for more details.
13
 
 
14
 
   You should have received a copy of the GNU Library General Public License
15
 
   along with this library; see the file COPYING.LIB.  If not, write to
16
 
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
   Boston, MA 02111-1307, USA.
18
 
*/
19
 
 
20
 
#include "processlinemaker.h"
21
 
#include "processlinemaker.moc"
22
 
 
23
 
#include <kprocess.h>
24
 
 
25
 
ProcessLineMaker::ProcessLineMaker()
26
 
{
27
 
}
28
 
 
29
 
ProcessLineMaker::ProcessLineMaker( const KProcess* proc )
30
 
{
31
 
    connect(proc, SIGNAL(receivedStdout(KProcess*,char*,int)),
32
 
            this, SLOT(slotReceivedStdout(KProcess*,char*,int)) );
33
 
 
34
 
    connect(proc, SIGNAL(receivedStderr(KProcess*,char*,int)),
35
 
            this, SLOT(slotReceivedStderr(KProcess*,char*,int)) );
36
 
}
37
 
 
38
 
void ProcessLineMaker::slotReceivedStdout( const char *buffer )
39
 
{
40
 
    stdoutbuf += buffer;
41
 
    int pos;
42
 
    while ( (pos = stdoutbuf.find('\n')) != -1) {
43
 
        QCString line = stdoutbuf.left( pos );
44
 
        emit receivedStdoutLine(line);
45
 
        stdoutbuf.remove(0, pos+1);
46
 
    }
47
 
    if( !stdoutbuf.isEmpty() ) {
48
 
        emit receivedPartialStdoutLine( stdoutbuf );
49
 
        stdoutbuf.truncate(0);
50
 
    }
51
 
}
52
 
 
53
 
void ProcessLineMaker::slotReceivedStdout( KProcess*, char *buffer, int )
54
 
{
55
 
    slotReceivedStdout(buffer); // It is zero-terminated
56
 
}
57
 
 
58
 
 
59
 
void ProcessLineMaker::slotReceivedStderr( const char *buffer )
60
 
{
61
 
    stderrbuf += buffer;
62
 
    int pos;
63
 
    while ( (pos = stderrbuf.find('\n')) != -1) {
64
 
        QCString line = stderrbuf.left( pos );
65
 
        emit receivedStderrLine(line);
66
 
        stderrbuf.remove(0, pos+1);
67
 
    }
68
 
    if( !stderrbuf.isEmpty() ) {
69
 
        emit receivedPartialStderrLine( stderrbuf );
70
 
        stderrbuf.truncate(0);
71
 
    }
72
 
}
73
 
 
74
 
void ProcessLineMaker::slotReceivedStderr( KProcess*, char *buffer, int )
75
 
{
76
 
    slotReceivedStderr(buffer); // It is zero-terminated
77
 
}
78
 
 
79
 
void ProcessLineMaker::clearBuffers( )
80
 
{
81
 
    stderrbuf.truncate(0);
82
 
    stdoutbuf.truncate(0);
83
 
}
84
 
 
85
 
void ProcessLineMaker::flush()
86
 
{
87
 
    if( !stderrbuf.isEmpty() )
88
 
        emit receivedStderrLine(stderrbuf);
89
 
    if( !stdoutbuf.isEmpty() )
90
 
        emit receivedStdoutLine(stdoutbuf);
91
 
    clearBuffers();
92
 
}
93