X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2FForkedCalls.cpp;h=4827947d370a2f22abf5848914724dcade3ba37c;hb=bf56e2c8e1afa857cd5e313c19948040e41b8227;hp=e5e2aa8c2b0be5cc4bb06501e0ac4f692778bfc1;hpb=3f22ae8f1dffd930dddf23b447ca5d315d47058d;p=lyx.git diff --git a/src/support/ForkedCalls.cpp b/src/support/ForkedCalls.cpp index e5e2aa8c2b..4827947d37 100644 --- a/src/support/ForkedCalls.cpp +++ b/src/support/ForkedCalls.cpp @@ -21,7 +21,7 @@ #include "support/os.h" #include "support/Timeout.h" -#include +#include "support/bind.h" #include #include @@ -46,7 +46,6 @@ using namespace std; -using boost::bind; namespace lyx { namespace support { @@ -59,7 +58,7 @@ namespace { // ///////////////////////////////////////////////////////////////////// -class Murder : public boost::signals::trackable { +class Murder : public boost::signals2::trackable { public: // static void killItDead(int secs, pid_t pid) @@ -84,7 +83,7 @@ private: Murder(int secs, pid_t pid) : timeout_(1000*secs, Timeout::ONETIME), pid_(pid) { - timeout_.timeout.connect(boost::bind(&Murder::kill, this)); + timeout_.timeout.connect(lyx::bind(&Murder::kill, this)); timeout_.start(); } @@ -113,7 +112,7 @@ bool ForkedProcess::IAmAChild = false; void ForkedProcess::emitSignal() { - if (signal_.get()) { + if (signal_) { signal_->operator()(pid_, retval_); } } @@ -270,6 +269,10 @@ int ForkedProcess::waitForChild() // ///////////////////////////////////////////////////////////////////// +ForkedCall::ForkedCall(string const & path, string const & lpath) + : cmd_prefix_(to_filesystem8bit(from_utf8(latexEnvCmdPrefix(path, lpath)))) +{} + int ForkedCall::startScript(Starttype wait, string const & what) { @@ -278,7 +281,7 @@ int ForkedCall::startScript(Starttype wait, string const & what) return retval_; } - command_ = what; + command_ = commandPrep(trim(what)); signal_.reset(); return run(Wait); } @@ -286,7 +289,7 @@ int ForkedCall::startScript(Starttype wait, string const & what) int ForkedCall::startScript(string const & what, SignalTypePtr signal) { - command_ = what; + command_ = commandPrep(trim(what)); signal_ = signal; return run(DontWait); @@ -296,10 +299,17 @@ int ForkedCall::startScript(string const & what, SignalTypePtr signal) // generate child in background int ForkedCall::generateChild() { - string line = trim(command_); - if (line.empty()) + if (command_.empty()) return 1; + // Make sure that a V2 python is run, if available. + string const line = cmd_prefix_ + + (prefixIs(command_, "python -tt") + ? os::python() + command_.substr(10) : command_); + +#if !defined (_WIN32) + // POSIX + // Split the input command up into an array of words stored // in a contiguous block of memory. The array contains pointers // to each word. @@ -316,37 +326,44 @@ int ForkedCall::generateChild() // 2. If we are inside quotes, then don't replace the white space // but do remove the quotes themselves. We do this naively by // replacing the quote with '\0' which is fine if quotes - // delimit the entire word. + // delimit the entire word. However, if quotes do not delimit the + // entire word (i.e., open quote is inside word), simply discard + // them such as not to break the current word. char inside_quote = 0; + char c_before_open_quote = ' '; vector::iterator it = vec.begin(); + vector::iterator itc = vec.begin(); vector::iterator const end = vec.end(); - for (; it != end; ++it) { + for (; it != end; ++it, ++itc) { char const c = *it; if (!inside_quote) { - if (c == ' ') - *it = '\0'; - else if (c == '\'' || c == '"') { -#if defined (_WIN32) - // How perverse! - // spawnvp *requires* the quotes or it will - // split the arg at the internal whitespace! - // Make shure the quote is a DOS-style one. - *it = '"'; -#else - *it = '\0'; -#endif + if (c == '\'' || c == '"') { + if (c_before_open_quote == ' ') + *itc = '\0'; + else + --itc; inside_quote = c; + } else { + if (c == ' ') + *itc = '\0'; + else + *itc = c; + c_before_open_quote = c; } } else if (c == inside_quote) { -#if defined (_WIN32) - *it = '"'; -#else - *it = '\0'; -#endif + if (c_before_open_quote == ' ') + *itc = '\0'; + else + --itc; inside_quote = 0; - } + } else + *itc = c; } + // Clear what remains. + for (; itc != end; ++itc) + *itc = '\0'; + // Build an array of pointers to each word. it = vec.begin(); vector argv; @@ -363,16 +380,13 @@ int ForkedCall::generateChild() vector::iterator ait = argv.begin(); vector::iterator const aend = argv.end(); lyxerr << "\n\t" << line - << "\n\tInterpretted as:\n\n"; + << "\n\tInterpreted as:\n\n"; for (; ait != aend; ++ait) if (*ait) lyxerr << '\t'<< *ait << '\n'; lyxerr << "" << endl; } -#ifdef _WIN32 - pid_t const cpid = spawnvp(_P_NOWAIT, argv[0], &*argv.begin()); -#else // POSIX pid_t const cpid = ::fork(); if (cpid == 0) { // Child @@ -383,6 +397,24 @@ int ForkedCall::generateChild() << strerror(errno) << endl; _exit(1); } +#else + // Windows + + pid_t cpid = -1; + + STARTUPINFO startup; + PROCESS_INFORMATION process; + + memset(&startup, 0, sizeof(STARTUPINFO)); + memset(&process, 0, sizeof(PROCESS_INFORMATION)); + + startup.cb = sizeof(STARTUPINFO); + + if (CreateProcess(0, (LPSTR)line.c_str(), 0, 0, FALSE, + CREATE_NO_WINDOW, 0, 0, &startup, &process)) { + CloseHandle(process.hThread); + cpid = (pid_t)process.hProcess; + } #endif if (cpid < 0) { @@ -442,7 +474,7 @@ void callNext() Process pro = callQueue_.front(); callQueue_.pop(); // Bind our chain caller - pro.second->connect(boost::bind(&ForkedCallQueue::callback, _1, _2)); + pro.second->connect(callback); ForkedCall call; //If we fail to fork the process, then emit the signal //to tell the outside world that it failed. @@ -520,7 +552,7 @@ string const getChildErrorMessage() namespace ForkedCallsController { -typedef boost::shared_ptr ForkedProcessPtr; +typedef shared_ptr ForkedProcessPtr; typedef list ListType; typedef ListType::iterator iterator; @@ -531,8 +563,8 @@ static ListType forkedCalls; iterator find_pid(pid_t pid) { return find_if(forkedCalls.begin(), forkedCalls.end(), - bind(equal_to(), - bind(&ForkedCall::pid, _1), + lyx::bind(equal_to(), + lyx::bind(&ForkedCall::pid, _1), pid)); } @@ -571,6 +603,7 @@ void handleCompletedProcesses() } else { actCall->setRetValue(exit_code); } + CloseHandle(hProcess); remove_it = true; break; } @@ -578,6 +611,7 @@ void handleCompletedProcesses() lyxerr << "WaitForSingleObject failed waiting for child\n" << getChildErrorMessage() << endl; actCall->setRetValue(1); + CloseHandle(hProcess); remove_it = true; break; }