summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/bufferedstringreader.h
blob: 6f34ed4c8265ec3746ec3e85cdb7c39f4a763a86 (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
/***************************************************************************
 *   Copyright (C) 2003 by Mario Scalas                                    *
 *   mario.scalas@libero.it                                                *
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef BUFFEREDSTRINGREADER_H
#define BUFFEREDSTRINGREADER_H

#include <tqstringlist.h>

class CvsServicePart;
class KConfig;
class KDevProject;

/* This class helps when we have to collect a string list from a text
 * stream, just as many cvs commands do. The problem is that the these commands
 * does not provide strings as we need: often a sent string is received
 * broken in two pieces and so we need a way to rebuild it. This class provide an
 * abstraction for avoiding this.
 * @author Mario Scalas <mario.scalas@libero.it>
*/
class BufferedStringReader
{
public:
    BufferedStringReader();
    virtual ~BufferedStringReader();

    /**
    * Add the specified characters to current buffered ones and grab
    * as many '\n'-terminated strings as found.
    * @param otherChars additional chars to be added to the buffer
    */
    TQStringList process( const TQString &otherChars );
private:
    TQString m_stringBuffer;
};

#endif  // BUFFEREDSTRINGREADER_H