|
|
/* This file is part of the KDE libraries Copyright (C) 1997 David SweetThis library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef KPROCIO_H_ #define KPROCIO_H_ #include #include #include class KProcIOPrivate; /** * @version $Id: kprocio_h.html 149726 2002-04-16 07:39:43Z dfaure $ * @author David Sweet * @short A slightly simpler interface to KProcess * * KProcIO * By David Sweet (LGPL 1997) * * This class provides a slightly simpler interface to the communication * functions provided by KProcess. The simplifications are: * 1) The buffer for a write is copied to an internal KProcIO * buffer and maintained/freed appropriately. There is no need * to be concerned with wroteStdin() signals _at_all_. * 2) readln() (or fgets()) reads a line of data and buffers any * leftovers. * * Added: * * 3) Conversion from/to unicode. * * Basically, KProcIO gives you buffered I/O similar to fgets()/fputs(). * * Aside from these, and the fact that start() takes different * parameters, use this class just like KProcess. **/ class QTextCodec; class KProcIO : public KProcess { Q_OBJECT public: KProcIO ( QTextCodec *codec = 0 ); ~KProcIO(); /** * Starts the process. * * @param runmode For a detailed description of the * various run modes, have a look at the * general description of the @ref KProcess class. * * @param includeStderr If true, data from both stdout and stderr is * listened to. If false, only stdout is listened to. * * @return true on success, false on error * * The following problems could cause this function to * return false: * * @li The process is already running. * @li The command line argument list is empty. * @li The starting of the process failed (could not fork). * @li The executable was not found. **/ bool start (RunMode runmode = NotifyOnExit, bool includeStderr = false); /** * Writes text to stdin of the process. * @param line Text to write. * @param AppendNewLine if true, a newline '\n' is appended. **/ bool writeStdin(const QString &line, bool AppendNewLine=TRUE); bool writeStdin(const QCString &line, bool appendnewline); /** * Writes data to stdin of the process. * @param data Data to write. **/ bool writeStdin(const QByteArray &data); //I like fputs better -- it's the same as writeStdin //inline bool fputs (const QString &line, bool AppendNewLine=TRUE) { return writeStdin(line, AppendNewLine); } /** * closes stdin after all data has been send. */ void closeWhenDone(); /** * reads a line of text (up to and including '\n') * * Use readln() in response to a readReady() signal. * You may use it multiple times if more than one line of data is * available. * Be sure to use ackRead() when you have finished processing the * readReady() signal. This informs KProcIO that you are ready for * another readReady() signal. * * readln() never blocks. * * autoAck==TRUE makes these functions call ackRead() for you. * @param line is used to store the line that was read. * @param autoAck when true, ackRead() is called for you. * @param partial when provided the line is returned * even if it does not contain a '\n'. *partial will be set to * false if the line contains a '\n' and false otherwise. * * @return the number of characters read, or -1 if no data is available. **/ int readln (QString &line, bool autoAck=true, bool *partial=0); int fgets (QString &line, bool autoAck=false) { return readln (line, autoAck); } /** * Reset the class. Doesn't kill the process. **/ void resetAll (); /** * Call this after you have finished processing a readReady() * signal. This call need not be made in the slot that was signalled * by readReady(). You won't receive any more readReady() signals * until you acknowledge with ackRead(). This prevents your slot * from being reentered while you are still processing the current * data. If this doesn't matter, then call ackRead() right away in * your readReady()-processing slot. **/ void ackRead (); /** * Turns readReady() signals on and off. * You can turn this off at will and not worry about losing any data. * (as long as you turn it back on at some point...) */ void enableReadSignals (bool enable); signals: void readReady(KProcIO *); protected: QPtrList outbuffer; QCString recvbuffer; QTextCodec *codec; int rbi; bool needreadsignal, readsignalon, writeready; void controlledEmission (); protected slots: void received (KProcess *proc, char *buffer, int buflen); void sent (KProcess *); protected: virtual void virtual_hook( int id, void* data ); private: KProcIOPrivate *d; }; #endif
Generated by: dfaure on faure on Tue Apr 16 08:49:00 2002, using kdoc 2.0a53. |