Introduce /exec support for running simple client-side scripts
[quassel.git] / src / client / execwrapper.h
diff --git a/src/client/execwrapper.h b/src/client/execwrapper.h
new file mode 100644 (file)
index 0000000..b0c52be
--- /dev/null
@@ -0,0 +1,58 @@
+/***************************************************************************
+*   Copyright (C) 2005-09 by the Quassel Project                          *
+*   devel@quassel-irc.org                                                 *
+*                                                                         *
+*   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) version 3.                                           *
+*                                                                         *
+*   This program 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 General Public License for more details.                          *
+*                                                                         *
+*   You should have received a copy of the GNU General Public License     *
+*   along with this program; if not, write to the                         *
+*   Free Software Foundation, Inc.,                                       *
+*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+***************************************************************************/
+
+#ifndef EXECWRAPPER_H_
+#define EXECWRAPPER_H_
+
+#include <QProcess>
+
+#include "bufferinfo.h"
+
+class ExecWrapper : public QObject {
+  Q_OBJECT
+
+public:
+  ExecWrapper(QObject *parent = 0);
+
+public slots:
+  void start(const BufferInfo &info, const QString &scriptName, const QStringList &params = QStringList());
+
+signals:
+  void stderr(const QString &errorMsg);
+  void stdout(const QString &out);
+
+private slots:
+  void processReadStdout();
+  void processReadStderr();
+  void processFinished(int exitCode, QProcess::ExitStatus exitStatus);
+  void processError(QProcess::ProcessError);
+
+  void postStdout(const QString &);
+  void postStderr(const QString &);
+
+private:
+  QProcess _process;
+  BufferInfo _bufferInfo;
+  QString _scriptName;
+  QString _stdoutBuffer;
+  QString _stderrBuffer;
+};
+
+#endif