]> git.lyx.org Git - lyx.git/blobdiff - src/support/SystemcallPrivate.h
DocBook: simplify code to handle abstracts.
[lyx.git] / src / support / SystemcallPrivate.h
index c446358647ea50a9f033d0562db6e32529fbc50c..6ab479f73c329fd5b68a786b9cd6a608c478e9a2 100644 (file)
@@ -24,7 +24,7 @@ class Systemcall;
 
 /**
  * Outputs to the console terminal the line buffered standard output and
- * error of a spawned process when there is a controlling terminal and 
+ * error of a spawned process when there is a controlling terminal and
  * stdout/stderr have not been redirected.
  */
 class SystemcallPrivate : public QObject
@@ -32,31 +32,35 @@ class SystemcallPrivate : public QObject
        Q_OBJECT
 
 public:
-       SystemcallPrivate(std::string const & outfile);
+       SystemcallPrivate(std::string const & infile, std::string const & outfile,
+                         std::string const & errfile);
        ~SystemcallPrivate();
 
        enum State {
                Starting,
                Running,
                Finished,
-               Error
+               Error,
+               Killed
        };
        State state;
 
        bool waitWhile(State, bool processEvents, int timeout = -1);
-       void startProcess(const QString& cmd);
-       
+       void startProcess(QString const & cmd, std::string const & path,
+                         std::string const & lpath, bool detach);
+
        int exitCode();
 
        QString errorMessage() const;
        QString exitStatusMessage() const;
 
-       void flush();
-
        QProcess* releaseProcess();
-       
+
        static void killProcess(QProcess * p);
 
+       // when true, kill any running script ASAP
+       static bool kill_script;
+
 
 public Q_SLOTS:
        void stdOut();
@@ -75,25 +79,29 @@ private:
        /// Index to the standard error buffer.
        size_t err_index_;
        ///
+       std::string in_file_;
+       ///
        std::string out_file_;
+       ///
+       std::string err_file_;
 
        /// Size of buffers.
-       static size_t const max_buffer_size_ = 200;
+       static size_t const buffer_size_ = 200;
        /// Standard output buffer.
-       char out_data_[max_buffer_size_];
+       char out_data_[buffer_size_];
        /// Standard error buffer.
-       char err_data_[max_buffer_size_];
-
-       bool use_stderr_;
-       bool use_stdout_;
+       char err_data_[buffer_size_];
 
        QString cmd_;
        bool process_events_;
 
        void waitAndProcessEvents();
        void processEvents();
-       void killProcess();     
+       void killProcess();
 
+       /// returns false if we killed the process
+       /// actually returns Systemcall::ReturnValue
+       bool waitAndCheck();
 };
 
 } // namespace support