]> git.lyx.org Git - features.git/blob - src/support/Systemcall.cpp
Address Qt6 deprecation warning (QLibraryInfo::location())
[features.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 <QElapsedTimer>
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 &) override {}
63         void processFinished(QString const &) override {}
64         void appendMessage(QString const &) override {}
65         void appendError(QString const &) override {}
66         void clearMessages() override {}
67         void lyxerrFlush() override {}
68
69         void lyxerrConnect() override {}
70         void lyxerrDisconnect() override {}
71
72         void warning(QString const &, QString const &) override {}
73         void toggleWarning(QString const &, QString const &, QString const &) override {}
74         void error(QString const &, QString const &, QString const &) override {}
75         void information(QString const &, QString const &) override {}
76         int prompt(docstring const &, docstring const &, int default_but, int,
77                    docstring const &, docstring const &) override { return default_but; }
78 };
79
80
81 static ProgressInterface * progress_instance = nullptr;
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 = true;
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 (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
372         // FIXME pass command and arguments separated in the first place
373         QStringList arguments = QProcess::splitCommand(toqstr(latexEnvCmdPrefix(path, lpath)) + cmd_);
374         QString command = (arguments.empty()) ? QString() : arguments.first();
375         if (arguments.size() == 1)
376                 arguments.clear();
377         else if (!arguments.empty())
378                 arguments.removeFirst();
379 #endif
380         if (detached) {
381                 state = SystemcallPrivate::Running;
382 #ifdef Q_OS_WIN32
383                 // Avoid opening a console window when a viewer is started
384                 if (in_file_.empty())
385                         process_->setStandardInputFile(QProcess::nullDevice());
386                 if (out_file_.empty())
387                         process_->setStandardOutputFile(QProcess::nullDevice());
388                 if (err_file_.empty())
389                         process_->setStandardErrorFile(QProcess::nullDevice());
390 #endif
391 #if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
392                 if (!QProcess::startDetached(command, arguments)) {
393 #else
394                 if (!QProcess::startDetached(toqstr(latexEnvCmdPrefix(path, lpath)) + cmd_)) {
395 #endif
396                         state = SystemcallPrivate::Error;
397                         return;
398                 }
399                 QProcess* released = releaseProcess();
400                 delete released;
401         } else if (process_) {
402                 state = SystemcallPrivate::Starting;
403 #if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
404                 process_->start(command, arguments);
405 #else
406                 process_->start(toqstr(latexEnvCmdPrefix(path, lpath)) + cmd_);
407 #endif
408         }
409 }
410
411
412 bool SystemcallPrivate::waitAndCheck()
413 {
414         Sleep::millisec(100);
415         if (kill_script) {
416                 // is there a better place to reset this?
417                 process_->kill();
418                 state = Killed;
419                 kill_script = false;
420                 LYXERR0("Export Canceled!!");
421                 return false;
422         }
423         QCoreApplication::processEvents(/*QEventLoop::ExcludeUserInputEvents*/);
424         return true;
425 }
426
427
428 namespace {
429
430 bool queryStopCommand(QString const & cmd)
431 {
432         docstring text = bformat(_(
433                 "The command\n%1$s\nhas not yet completed.\n\n"
434                 "Do you want to stop it?"), qstring_to_ucs4(cmd));
435         return ProgressInterface::instance()->prompt(_("Stop command?"), text,
436                         1, 1, _("&Stop it"), _("Let it &run")) == 0;
437 }
438
439 } // namespace
440
441
442 bool SystemcallPrivate::waitWhile(State waitwhile, bool process_events, int timeout)
443 {
444         if (!process_)
445                 return false;
446
447         bool timedout = false;
448         process_events_ = process_events;
449
450         // Block GUI while waiting,
451         // relay on QProcess' wait functions
452         if (!process_events_) {
453                 if (waitwhile == Starting)
454                         return process_->waitForStarted(timeout);
455                 if (waitwhile == Running) {
456                         int bump = 2;
457                         while (!timedout) {
458                                 if (process_->waitForFinished(timeout))
459                                         return true;
460                                 bool const stop = queryStopCommand(cmd_);
461                                 // The command may have finished in the meantime
462                                 if (process_->state() == QProcess::NotRunning)
463                                         return true;
464                                 if (stop) {
465                                         timedout = true;
466                                         process_->kill();
467                                 } else {
468                                         timeout *= bump;
469                                         bump = 3;
470                                 }
471                         }
472                 }
473                 return false;
474         }
475
476         // process events while waiting, no timeout
477         if (timeout == -1) {
478                 while (state == waitwhile && state != Error) {
479                         // check for cancellation of background process
480                         if (!waitAndCheck())
481                                 return false;
482                 }
483                 return state != Error;
484         }
485
486         // process events while waiting with timeout
487         QElapsedTimer timer;
488         timer.start();
489         while (state == waitwhile && state != Error && !timedout) {
490                 // check for cancellation of background process
491                 if (!waitAndCheck())
492                         return false;
493
494                 if (timer.elapsed() > timeout) {
495                         bool const stop = queryStopCommand(cmd_);
496                         // The command may have finished in the meantime
497                         if (process_->state() == QProcess::NotRunning)
498                                 break;
499                         if (stop) {
500                                 timedout = true;
501                                 process_->kill();
502                         } else
503                                 timeout *= 3;
504                 }
505         }
506         return (state != Error) && !timedout;
507 }
508
509
510 SystemcallPrivate::~SystemcallPrivate()
511 {
512         if (out_index_) {
513                 out_data_[out_index_] = '\0';
514                 out_index_ = 0;
515                 cout << out_data_;
516         }
517         cout.flush();
518         if (err_index_) {
519                 err_data_[err_index_] = '\0';
520                 err_index_ = 0;
521                 cerr << err_data_;
522         }
523         cerr.flush();
524
525         killProcess();
526 }
527
528
529 void SystemcallPrivate::stdOut()
530 {
531         if (process_) {
532                 char c;
533                 process_->setReadChannel(QProcess::StandardOutput);
534                 while (process_->getChar(&c)) {
535                         out_data_[out_index_++] = c;
536                         if (c == '\n' || out_index_ + 1 == buffer_size_) {
537                                 out_data_[out_index_] = '\0';
538                                 out_index_ = 0;
539                                 ProgressInterface::instance()->appendMessage(QString::fromLocal8Bit(out_data_));
540                                 cout << out_data_;
541                         }
542                 }
543         }
544 }
545
546
547 void SystemcallPrivate::stdErr()
548 {
549         if (process_) {
550                 char c;
551                 process_->setReadChannel(QProcess::StandardError);
552                 while (process_->getChar(&c)) {
553                         err_data_[err_index_++] = c;
554                         if (c == '\n' || err_index_ + 1 == buffer_size_) {
555                                 err_data_[err_index_] = '\0';
556                                 err_index_ = 0;
557                                 ProgressInterface::instance()->appendError(QString::fromLocal8Bit(err_data_));
558                                 cerr << err_data_;
559                         }
560                 }
561         }
562 }
563
564
565 void SystemcallPrivate::processStarted()
566 {
567         if (state != Running) {
568                 state = Running;
569                 ProgressInterface::instance()->processStarted(cmd_);
570         }
571 }
572
573
574 void SystemcallPrivate::processFinished(int, QProcess::ExitStatus)
575 {
576         if (state != Finished) {
577                 state = Finished;
578                 ProgressInterface::instance()->processFinished(cmd_);
579         }
580 }
581
582
583 void SystemcallPrivate::processError(QProcess::ProcessError)
584 {
585         state = Error;
586         ProgressInterface::instance()->appendError(errorMessage());
587 }
588
589
590 QString SystemcallPrivate::errorMessage() const
591 {
592         if (!process_)
593                 return "No QProcess available";
594
595         QString message;
596         switch (process_->error()) {
597                 case QProcess::FailedToStart:
598                         message = "The process failed to start. Either the invoked program is missing, "
599                                       "or you may have insufficient permissions to invoke the program.";
600                         break;
601                 case QProcess::Crashed:
602                         message = "The process crashed some time after starting successfully.";
603                         break;
604                 case QProcess::Timedout:
605                         message = "The process timed out. It might be restarted automatically.";
606                         break;
607                 case QProcess::WriteError:
608                         message = "An error occurred when attempting to write to the process-> For example, "
609                                       "the process may not be running, or it may have closed its input channel.";
610                         break;
611                 case QProcess::ReadError:
612                         message = "An error occurred when attempting to read from the process-> For example, "
613                                       "the process may not be running.";
614                         break;
615                 case QProcess::UnknownError:
616                 default:
617                         message = "An unknown error occurred.";
618                         break;
619         }
620         return message;
621 }
622
623
624 QString SystemcallPrivate::exitStatusMessage() const
625 {
626         if (!process_)
627                 return "No QProcess available";
628
629         QString message;
630         switch (process_->exitStatus()) {
631                 case QProcess::NormalExit:
632                         message = "The process exited normally.";
633                         break;
634                 case QProcess::CrashExit:
635                         message = "The process crashed.";
636                         break;
637                 default:
638                         message = "Unknown exit state.";
639                         break;
640         }
641         return message;
642 }
643
644
645 int SystemcallPrivate::exitCode()
646 {
647         // From Qt's documentation, in regards to QProcess::exitCode(),
648         // "This value is not valid unless exitStatus() returns NormalExit"
649         if (!process_ || process_->exitStatus() != QProcess::NormalExit)
650                 return -1;
651
652         return process_->exitCode();
653 }
654
655
656 QProcess* SystemcallPrivate::releaseProcess()
657 {
658         QProcess* released = process_;
659         process_ = nullptr;
660         return released;
661 }
662
663
664 void SystemcallPrivate::killProcess()
665 {
666         killProcess(process_);
667 }
668
669
670 void SystemcallPrivate::killProcess(QProcess * p)
671 {
672         if (p) {
673                 p->disconnect();
674                 p->closeReadChannel(QProcess::StandardOutput);
675                 p->closeReadChannel(QProcess::StandardError);
676                 p->close();
677                 delete p;
678         }
679 }
680
681
682
683 #include "moc_SystemcallPrivate.cpp"
684 #endif
685
686 } // namespace support
687 } // namespace lyx