]> git.lyx.org Git - features.git/commitdiff
Fix converters with input redirection, such as the second htlatex one.
authorGeorg Baum <georg.baum@post.rwth-aachen.de>
Sun, 22 Jan 2012 12:35:07 +0000 (12:35 +0000)
committerGeorg Baum <georg.baum@post.rwth-aachen.de>
Sun, 22 Jan 2012 12:35:07 +0000 (12:35 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40647 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/Systemcall.cpp
src/support/SystemcallPrivate.h

index 100023e29d14ee8cdda29cb1564b242344f61692..4273983bd2c458229a529e13424cb86f22bc8e4c 100644 (file)
@@ -130,8 +130,7 @@ namespace {
 /*
  * This is a parser that (mostly) mimics the behavior of a posix shell as
  * regards quoting, but its output is tailored for being processed by QProcess.
- * Note that shell metacharacters are not parsed and only output redirection
- * is taken into account.
+ * Note that shell metacharacters are not parsed.
  *
  * The escape character is the backslash.
  * A backslash that is not quoted preserves the literal value of the following
@@ -164,13 +163,14 @@ namespace {
  *    "\a"   ->  "\a"
  *    "a\"b" ->  "a"""b"
  */
-string const parsecmd(string const & incmd, string & outfile, string & errfile)
+string const parsecmd(string const & incmd, string & infile, string & outfile,
+                     string & errfile)
 {
        bool in_single_quote = false;
        bool in_double_quote = false;
        bool escaped = false;
        string const python_call = "python -tt";
-       vector<string> outcmd(3);
+       vector<string> outcmd(4);
        size_t start = 0;
 
        if (prefixIs(incmd, python_call)) {
@@ -215,6 +215,8 @@ string const parsecmd(string const & incmd, string & outfile, string & errfile)
                                        outcmd[o] = rtrim(outcmd[o], "1");
                                o = 1;
                        }
+               } else if (c == '<' && !(in_double_quote || escaped)) {
+                       o = 3;
                } else {
                        if (escaped && in_double_quote)
                                outcmd[o] += '\\';
@@ -222,6 +224,7 @@ string const parsecmd(string const & incmd, string & outfile, string & errfile)
                        escaped = false;
                }
        }
+       infile  = trim(outcmd[3], " \"");
        outfile = trim(outcmd[1], " \"");
        errfile = trim(outcmd[2], " \"");
        return trim(outcmd[0]);
@@ -236,12 +239,13 @@ int Systemcall::startscript(Starttype how, string const & what,
 {
        lyxerr << "\nRunning: " << what << endl;
 
+       string infile;
        string outfile;
        string errfile;
        QString cmd = QString::fromLocal8Bit(
-                       parsecmd(what, outfile, errfile).c_str());
+                       parsecmd(what, infile, outfile, errfile).c_str());
 
-       SystemcallPrivate d(outfile, errfile);
+       SystemcallPrivate d(infile, outfile, errfile);
 
 
        d.startProcess(cmd, path);
@@ -274,15 +278,19 @@ int Systemcall::startscript(Starttype how, string const & what,
 }
 
 
-SystemcallPrivate::SystemcallPrivate(std::string const & of,
+SystemcallPrivate::SystemcallPrivate(std::string const & sf,
+                                    std::string const & of,
                                     std::string const & ef) :
                                process_(new QProcess), 
                                out_index_(0),
                                err_index_(0),
+                               in_file_(sf),
                                out_file_(of), 
                                err_file_(ef), 
                                process_events_(false)
 {
+       if (!in_file_.empty())
+               process_->setStandardInputFile(QString::fromLocal8Bit(in_file_.c_str()));
        if (!out_file_.empty()) {
                if (out_file_[0] == '&') {
                        if (subst(out_file_, " ", "") == "&2"
index 09ccfb61627511454fc751b695e29eda48855504..b8dc17a23d9d54ba1f1918b9f46760585e09b71f 100644 (file)
@@ -32,7 +32,8 @@ class SystemcallPrivate : public QObject
        Q_OBJECT
 
 public:
-       SystemcallPrivate(std::string const & outfile, std::string const & errfile);
+       SystemcallPrivate(std::string const & infile, std::string const & outfile,
+                         std::string const & errfile);
        ~SystemcallPrivate();
 
        enum State {
@@ -73,6 +74,8 @@ private:
        /// Index to the standard error buffer.
        size_t err_index_;
        ///
+       std::string in_file_;
+       ///
        std::string out_file_;
        ///
        std::string err_file_;