]> git.lyx.org Git - lyx.git/blob - src/support/Systemcall.cpp
Fix bug #11210
[lyx.git] / src / support / Systemcall.cpp
1 /**
2  * \file Systemcall.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Angus Leeming
8  * \author Enrico Forestieri
9  * \author Peter Kuemmel
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "support/debug.h"
17 #include "support/filetools.h"
18 #include "support/gettext.h"
19 #include "support/lstrings.h"
20 #include "support/qstring_helpers.h"
21 #include "support/Systemcall.h"
22 #include "support/SystemcallPrivate.h"
23 #include "support/os.h"
24 #include "support/ProgressInterface.h"
25
26 #include "LyX.h"
27
28 #include <cstdlib>
29 #include <iostream>
30
31 #include <QProcess>
32 #include <QTime>
33 #include <QThread>
34 #include <QCoreApplication>
35 #include <QDebug>
36
37 #define USE_QPROCESS
38
39
40 struct Sleep : QThread
41 {
42         static void millisec(unsigned long ms)
43         {
44                 QThread::usleep(ms * 1000);
45         }
46 };
47
48
49
50
51 using namespace std;
52
53 namespace lyx {
54 namespace support {
55
56
57 class ProgressDummy : public ProgressInterface
58 {
59 public:
60         ProgressDummy() {}
61
62         void processStarted(QString const &) {}
63         void processFinished(QString const &) {}
64         void appendMessage(QString const &) {}
65         void appendError(QString const &) {}
66         void clearMessages() {}
67         void lyxerrFlush() {}
68
69         void lyxerrConnect() {}
70         void lyxerrDisconnect() {}
71
72         void warning(QString const &, QString const &) {}
73         void toggleWarning(QString const &, QString const &, QString const &) {}
74         void error(QString const &, QString const &, QString const &) {}
75         void information(QString const &, QString const &) {}
76         int prompt(docstring const &, docstring const &, int default_but, int,
77                    docstring const &, docstring const &) { return default_but; }
78 };
79
80
81 static ProgressInterface * progress_instance = 0;
82
83 void ProgressInterface::setInstance(ProgressInterface* p)
84 {
85         progress_instance = p;
86 }
87
88
89 ProgressInterface * ProgressInterface::instance()
90 {
91         if (!progress_instance) {
92                 static ProgressDummy dummy;
93                 return &dummy;
94         }
95         return progress_instance;
96 }
97
98
99
100
101 // Reuse of instance
102 #ifndef USE_QPROCESS
103 int Systemcall::startscript(Starttype how, string const & what,
104                             string const & path, string const & lpath,
105                             bool /*process_events*/)
106 {
107         string command =
108                 to_filesystem8bit(from_utf8(latexEnvCmdPrefix(path, lpath)))
109                        + commandPrep(what);
110
111         if (how == DontWait) {
112                 switch (os::shell()) {
113                 case os::UNIX:
114                         command += " &";
115                         break;
116                 case os::CMD_EXE:
117                         command = "start /min " + command;
118                         break;
119                 }
120         } else if (os::shell() == os::CMD_EXE)
121                 command = subst(command, "cmd /d /c ", "");
122
123         return ::system(command.c_str());
124 }
125
126 #else
127
128 namespace {
129
130 /*
131  * This is a parser that (mostly) mimics the behavior of a posix shell as
132  * regards quoting, but its output is tailored for being processed by QProcess.
133  * Note that shell metacharacters are not parsed.
134  *
135  * The escape character is the backslash.
136  * A backslash that is not quoted preserves the literal value of the following
137  * character, with the exception of a double-quote '"'. If a double-quote
138  * follows a backslash, it will be replaced by three consecutive double-quotes
139  * (this is how the QProcess parser recognizes a '"' as a simple character
140  * instead of a quoting character). Thus, for example:
141  *     \\  ->  \
142  *     \a  ->  a
143  *     \"  ->  """
144  *
145  * Single-quotes.
146  * Characters enclosed in single-quotes ('') have their literal value preserved.
147  * A single-quote cannot occur within single-quotes. Indeed, a backslash cannot
148  * be used to escape a single-quote in a single-quoted string. In other words,
149  * anything enclosed in single-quotes is passed as is, but the single-quotes
150  * themselves are eliminated. Thus, for example:
151  *    '\'    ->  \
152  *    '\\'   ->  \\
153  *    '\a'   ->  \a
154  *    'a\"b' ->  a\"b
155  *
156  * Double-quotes.
157  * Characters enclosed in double-quotes ("") have their literal value preserved,
158  * with the exception of the backslash. The backslash retains its special
159  * meaning as an escape character only when followed by a double-quote.
160  * Contrarily to the behavior of a posix shell, the double-quotes themselves
161  * are *not* eliminated. Thus, for example:
162  *    "\\"   ->  "\\"
163  *    "\a"   ->  "\a"
164  *    "a\"b" ->  "a"""b"
165  */
166 string const parsecmd(string const & incmd, string & infile, string & outfile,
167                      string & errfile)
168 {
169         bool in_single_quote = false;
170         bool in_double_quote = false;
171         bool escaped = false;
172         string const python_call = "python -tt";
173         vector<string> outcmd(4);
174         size_t start = 0;
175
176         if (prefixIs(incmd, python_call)) {
177                 outcmd[0] = os::python();
178                 start = python_call.length();
179         }
180
181         for (size_t i = start, o = 0; i < incmd.length(); ++i) {
182                 char c = incmd[i];
183                 if (c == '\'') {
184                         if (in_double_quote || escaped) {
185                                 if (in_double_quote && escaped)
186                                         outcmd[o] += '\\';
187                                 outcmd[o] += c;
188                         } else
189                                 in_single_quote = !in_single_quote;
190                         escaped = false;
191                         continue;
192                 }
193                 if (in_single_quote) {
194                         outcmd[o] += c;
195                         continue;
196                 }
197                 if (c == '"') {
198                         if (escaped) {
199                                 // Don't triple double-quotes for redirection
200                                 // files as these won't be parsed by QProcess
201                                 outcmd[o] += string(o ? "\"" : "\"\"\"");
202                                 escaped = false;
203                         } else {
204                                 outcmd[o] += c;
205                                 in_double_quote = !in_double_quote;
206                         }
207                 } else if (c == '\\' && !escaped) {
208                         escaped = !escaped;
209                 } else if (c == '>' && !(in_double_quote || escaped)) {
210                         if (suffixIs(outcmd[o], " 2")) {
211                                 outcmd[o] = rtrim(outcmd[o], "2");
212                                 o = 2;
213                         } else {
214                                 if (suffixIs(outcmd[o], " 1"))
215                                         outcmd[o] = rtrim(outcmd[o], "1");
216                                 o = 1;
217                         }
218                 } else if (c == '<' && !(in_double_quote || escaped)) {
219                         o = 3;
220                 } else {
221                         if (escaped && in_double_quote)
222                                 outcmd[o] += '\\';
223                         outcmd[o] += c;
224                         escaped = false;
225                 }
226         }
227         infile  = trim(outcmd[3], " \"");
228         outfile = trim(outcmd[1], " \"");
229         errfile = trim(outcmd[2], " \"");
230         return trim(outcmd[0]);
231 }
232
233 } // namespace
234
235
236 void Systemcall::killscript()
237 {
238         SystemcallPrivate::kill_script = true;
239 }
240
241
242 int Systemcall::startscript(Starttype how, string const & what,
243                             string const & path, string const & lpath,
244                             bool process_events)
245 {
246         string const what_ss = commandPrep(what);
247         if (verbose)
248                 lyxerr << "\nRunning: " << what_ss << endl;
249         else
250                 LYXERR(Debug::INFO,"Running: " << what_ss);
251
252         string infile;
253         string outfile;
254         string errfile;
255         QString const cmd = QString::fromLocal8Bit(
256                         parsecmd(what_ss, infile, outfile, errfile).c_str());
257
258         SystemcallPrivate d(infile, outfile, errfile);
259         bool do_events = process_events || how == WaitLoop;
260
261         d.startProcess(cmd, path, lpath, how == DontWait);
262         if (how == DontWait && d.state == SystemcallPrivate::Running)
263                 return OK;
264
265         if (d.state == SystemcallPrivate::Error
266                         || !d.waitWhile(SystemcallPrivate::Starting, do_events, -1)) {
267                 if (d.state == SystemcallPrivate::Error) {
268                         LYXERR0("Systemcall: '" << cmd << "' did not start!");
269                         LYXERR0("error " << d.errorMessage());
270                         return NOSTART;
271                 } else if (d.state == SystemcallPrivate::Killed) {
272                         LYXERR0("Killed: " << cmd);
273                         return KILLED;
274                 }
275         }
276
277         if (!d.waitWhile(SystemcallPrivate::Running, do_events,
278                          os::timeout_min() * 60 * 1000)) {
279                 if (d.state == SystemcallPrivate::Killed) {
280                         LYXERR0("Killed: " << cmd);
281                         return KILLED;
282                 }
283                 LYXERR0("Systemcall: '" << cmd << "' did not finish!");
284                 LYXERR0("error " << d.errorMessage());
285                 LYXERR0("status " << d.exitStatusMessage());
286                 return TIMEOUT;
287         }
288
289         int const exit_code = d.exitCode();
290         if (exit_code) {
291                 LYXERR0("Systemcall: '" << cmd << "' finished with exit code " << exit_code);
292         }
293
294         return exit_code;
295 }
296
297
298 bool SystemcallPrivate::kill_script = false;
299
300
301 SystemcallPrivate::SystemcallPrivate(std::string const & sf, std::string const & of,
302                                      std::string const & ef)
303         : state(Error), process_(new QProcess), out_index_(0), err_index_(0),
304           in_file_(sf), out_file_(of), err_file_(ef), process_events_(false)
305 {
306         if (!in_file_.empty())
307                 process_->setStandardInputFile(QString::fromLocal8Bit(in_file_.c_str()));
308         if (!out_file_.empty()) {
309                 if (out_file_[0] == '&') {
310                         if (subst(out_file_, " ", "") == "&2"
311                             && err_file_[0] != '&') {
312                                 out_file_ = err_file_;
313                                 process_->setProcessChannelMode(
314                                                 QProcess::MergedChannels);
315                         } else {
316                                 if (err_file_[0] == '&') {
317                                         // Leave alone things such as
318                                         // "1>&2 2>&1". Should not be harmful,
319                                         // but let's give anyway a warning.
320                                         LYXERR0("Unsupported stdout/stderr redirect.");
321                                         err_file_.erase();
322                                 } else {
323                                         LYXERR0("Ambiguous stdout redirect: "
324                                                 << out_file_);
325                                 }
326                                 out_file_ = os::nulldev();
327                         }
328                 }
329                 // Check whether we have to set the output file.
330                 if (out_file_ != os::nulldev()) {
331                         process_->setStandardOutputFile(QString::fromLocal8Bit(
332                                                         out_file_.c_str()));
333                 }
334         }
335         if (!err_file_.empty()) {
336                 if (err_file_[0] == '&') {
337                         if (subst(err_file_, " ", "") == "&1"
338                             && out_file_[0] != '&') {
339                                 process_->setProcessChannelMode(
340                                                 QProcess::MergedChannels);
341                         } else {
342                                 LYXERR0("Ambiguous stderr redirect: "
343                                         << err_file_);
344                         }
345                         // In MergedChannels mode stderr goes to stdout.
346                         err_file_ = os::nulldev();
347                 }
348                 // Check whether we have to set the error file.
349                 if (err_file_ != os::nulldev()) {
350                         process_->setStandardErrorFile(QString::fromLocal8Bit(
351                                                         err_file_.c_str()));
352                 }
353         }
354
355         connect(process_, SIGNAL(readyReadStandardOutput()), SLOT(stdOut()));
356         connect(process_, SIGNAL(readyReadStandardError()), SLOT(stdErr()));
357 #if QT_VERSION >= 0x050600
358         connect(process_, SIGNAL(errorOccurred(QProcess::ProcessError)), SLOT(processError(QProcess::ProcessError)));
359 #else
360         connect(process_, SIGNAL(error(QProcess::ProcessError)), SLOT(processError(QProcess::ProcessError)));
361 #endif
362         connect(process_, SIGNAL(started()), this, SLOT(processStarted()));
363         connect(process_, SIGNAL(finished(int, QProcess::ExitStatus)), SLOT(processFinished(int, QProcess::ExitStatus)));
364 }
365
366
367 void SystemcallPrivate::startProcess(QString const & cmd, string const & path,
368                                      string const & lpath, bool detached)
369 {
370         cmd_ = cmd;
371         if (detached) {
372                 state = SystemcallPrivate::Running;
373 #ifdef Q_OS_WIN32
374                 // Avoid opening a console window when a viewer is started
375                 if (in_file_.empty())
376                         process_->setStandardInputFile(QProcess::nullDevice());
377                 if (out_file_.empty())
378                         process_->setStandardOutputFile(QProcess::nullDevice());
379                 if (err_file_.empty())
380                         process_->setStandardErrorFile(QProcess::nullDevice());
381 #endif
382                 if (!QProcess::startDetached(toqstr(latexEnvCmdPrefix(path, lpath)) + cmd_)) {
383                         state = SystemcallPrivate::Error;
384                         return;
385                 }
386                 QProcess* released = releaseProcess();
387                 delete released;
388         } else if (process_) {
389                 state = SystemcallPrivate::Starting;
390                 process_->start(toqstr(latexEnvCmdPrefix(path, lpath)) + cmd_);
391         }
392 }
393
394
395 bool SystemcallPrivate::waitAndCheck()
396 {
397         Sleep::millisec(100);
398         if (kill_script) {
399                 // is there a better place to reset this?
400                 process_->kill();
401                 state = Killed;
402                 kill_script = false;
403                 LYXERR0("Export Canceled!!");
404                 return false;
405         }
406         QCoreApplication::processEvents(/*QEventLoop::ExcludeUserInputEvents*/);
407         return true;
408 }
409
410
411 namespace {
412
413 bool queryStopCommand(QString const & cmd)
414 {
415         docstring text = bformat(_(
416                 "The command\n%1$s\nhas not yet completed.\n\n"
417                 "Do you want to stop it?"), qstring_to_ucs4(cmd));
418         return ProgressInterface::instance()->prompt(_("Stop command?"), text,
419                         1, 1, _("&Stop it"), _("Let it &run")) == 0;
420 }
421
422 } // namespace
423
424
425 bool SystemcallPrivate::waitWhile(State waitwhile, bool process_events, int timeout)
426 {
427         if (!process_)
428                 return false;
429
430         bool timedout = false;
431         process_events_ = process_events;
432
433         // Block GUI while waiting,
434         // relay on QProcess' wait functions
435         if (!process_events_) {
436                 if (waitwhile == Starting)
437                         return process_->waitForStarted(timeout);
438                 if (waitwhile == Running) {
439                         int bump = 2;
440                         while (!timedout) {
441                                 if (process_->waitForFinished(timeout))
442                                         return true;
443                                 bool stop = queryStopCommand(cmd_);
444                                 // The command may have finished in the meantime
445                                 if (process_->state() == QProcess::NotRunning)
446                                         return true;
447                                 if (stop) {
448                                         timedout = true;
449                                         process_->kill();
450                                 } else {
451                                         timeout *= bump;
452                                         bump = 3;
453                                 }
454                         }
455                 }
456                 return false;
457         }
458
459         // process events while waiting, no timeout
460         if (timeout == -1) {
461                 while (state == waitwhile && state != Error) {
462                         // check for cancellation of background process
463                         if (!waitAndCheck())
464                                 return false;
465                 }
466                 return state != Error;
467         }
468
469         // process events while waiting with timeout
470         QTime timer;
471         timer.start();
472         while (state == waitwhile && state != Error && !timedout) {
473                 // check for cancellation of background process
474                 if (!waitAndCheck())
475                         return false;
476
477                 if (timer.elapsed() > timeout) {
478                         bool stop = queryStopCommand(cmd_);
479                         // The command may have finished in the meantime
480                         if (process_->state() == QProcess::NotRunning)
481                                 break;
482                         if (stop) {
483                                 timedout = true;
484                                 process_->kill();
485                         } else
486                                 timeout *= 3;
487                 }
488         }
489         return (state != Error) && !timedout;
490 }
491
492
493 SystemcallPrivate::~SystemcallPrivate()
494 {
495         if (out_index_) {
496                 out_data_[out_index_] = '\0';
497                 out_index_ = 0;
498                 cout << out_data_;
499         }
500         cout.flush();
501         if (err_index_) {
502                 err_data_[err_index_] = '\0';
503                 err_index_ = 0;
504                 cerr << err_data_;
505         }
506         cerr.flush();
507
508         killProcess();
509 }
510
511
512 void SystemcallPrivate::stdOut()
513 {
514         if (process_) {
515                 char c;
516                 process_->setReadChannel(QProcess::StandardOutput);
517                 while (process_->getChar(&c)) {
518                         out_data_[out_index_++] = c;
519                         if (c == '\n' || out_index_ + 1 == buffer_size_) {
520                                 out_data_[out_index_] = '\0';
521                                 out_index_ = 0;
522                                 ProgressInterface::instance()->appendMessage(QString::fromLocal8Bit(out_data_));
523                                 cout << out_data_;
524                         }
525                 }
526         }
527 }
528
529
530 void SystemcallPrivate::stdErr()
531 {
532         if (process_) {
533                 char c;
534                 process_->setReadChannel(QProcess::StandardError);
535                 while (process_->getChar(&c)) {
536                         err_data_[err_index_++] = c;
537                         if (c == '\n' || err_index_ + 1 == buffer_size_) {
538                                 err_data_[err_index_] = '\0';
539                                 err_index_ = 0;
540                                 ProgressInterface::instance()->appendError(QString::fromLocal8Bit(err_data_));
541                                 cerr << err_data_;
542                         }
543                 }
544         }
545 }
546
547
548 void SystemcallPrivate::processStarted()
549 {
550         if (state != Running) {
551                 state = Running;
552                 ProgressInterface::instance()->processStarted(cmd_);
553         }
554 }
555
556
557 void SystemcallPrivate::processFinished(int, QProcess::ExitStatus)
558 {
559         if (state != Finished) {
560                 state = Finished;
561                 ProgressInterface::instance()->processFinished(cmd_);
562         }
563 }
564
565
566 void SystemcallPrivate::processError(QProcess::ProcessError)
567 {
568         state = Error;
569         ProgressInterface::instance()->appendError(errorMessage());
570 }
571
572
573 QString SystemcallPrivate::errorMessage() const
574 {
575         if (!process_)
576                 return "No QProcess available";
577
578         QString message;
579         switch (process_->error()) {
580                 case QProcess::FailedToStart:
581                         message = "The process failed to start. Either the invoked program is missing, "
582                                       "or you may have insufficient permissions to invoke the program.";
583                         break;
584                 case QProcess::Crashed:
585                         message = "The process crashed some time after starting successfully.";
586                         break;
587                 case QProcess::Timedout:
588                         message = "The process timed out. It might be restarted automatically.";
589                         break;
590                 case QProcess::WriteError:
591                         message = "An error occurred when attempting to write to the process-> For example, "
592                                       "the process may not be running, or it may have closed its input channel.";
593                         break;
594                 case QProcess::ReadError:
595                         message = "An error occurred when attempting to read from the process-> For example, "
596                                       "the process may not be running.";
597                         break;
598                 case QProcess::UnknownError:
599                 default:
600                         message = "An unknown error occurred.";
601                         break;
602         }
603         return message;
604 }
605
606
607 QString SystemcallPrivate::exitStatusMessage() const
608 {
609         if (!process_)
610                 return "No QProcess available";
611
612         QString message;
613         switch (process_->exitStatus()) {
614                 case QProcess::NormalExit:
615                         message = "The process exited normally.";
616                         break;
617                 case QProcess::CrashExit:
618                         message = "The process crashed.";
619                         break;
620                 default:
621                         message = "Unknown exit state.";
622                         break;
623         }
624         return message;
625 }
626
627
628 int SystemcallPrivate::exitCode()
629 {
630         // From Qt's documentation, in regards to QProcess::exitCode(),
631         // "This value is not valid unless exitStatus() returns NormalExit"
632         if (!process_ || process_->exitStatus() != QProcess::NormalExit)
633                 return -1;
634
635         return process_->exitCode();
636 }
637
638
639 QProcess* SystemcallPrivate::releaseProcess()
640 {
641         QProcess* released = process_;
642         process_ = 0;
643         return released;
644 }
645
646
647 void SystemcallPrivate::killProcess()
648 {
649         killProcess(process_);
650 }
651
652
653 void SystemcallPrivate::killProcess(QProcess * p)
654 {
655         if (p) {
656                 p->disconnect();
657                 p->closeReadChannel(QProcess::StandardOutput);
658                 p->closeReadChannel(QProcess::StandardError);
659                 p->close();
660                 delete p;
661         }
662 }
663
664
665
666 #include "moc_SystemcallPrivate.cpp"
667 #endif
668
669 } // namespace support
670 } // namespace lyx