2012-05-03 11:25:13 +04:00
|
|
|
#include "shell_manager.hh"
|
|
|
|
|
2012-12-10 21:41:01 +04:00
|
|
|
#include "context.hh"
|
2013-04-09 22:05:40 +04:00
|
|
|
#include "debug.hh"
|
2014-11-25 04:00:18 +03:00
|
|
|
#include "event_manager.hh"
|
2014-10-30 03:50:40 +03:00
|
|
|
#include "file.hh"
|
2012-09-06 16:28:07 +04:00
|
|
|
|
2012-05-03 11:25:13 +04:00
|
|
|
#include <cstring>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2014-10-13 22:28:02 +04:00
|
|
|
#include <unistd.h>
|
2012-05-03 11:25:13 +04:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
2013-04-17 21:26:44 +04:00
|
|
|
|
2014-03-25 23:43:56 +04:00
|
|
|
static const Regex env_var_regex(R"(\bkak_(\w+)\b)");
|
2012-05-03 11:25:13 +04:00
|
|
|
|
|
|
|
ShellManager::ShellManager()
|
|
|
|
{
|
2014-10-30 03:50:40 +03:00
|
|
|
const char* path = getenv("PATH");
|
|
|
|
String new_path;
|
|
|
|
if (path)
|
|
|
|
new_path = path + ":"_str;
|
|
|
|
|
2015-03-12 23:39:34 +03:00
|
|
|
new_path += split_path(get_kak_binary_path()).first;
|
2014-10-30 03:50:40 +03:00
|
|
|
setenv("PATH", new_path.c_str(), 1);
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|
|
|
|
|
2015-03-13 16:39:18 +03:00
|
|
|
std::pair<String, int> ShellManager::eval(
|
|
|
|
StringView cmdline, const Context& context, StringView input,
|
|
|
|
ConstArrayView<String> params, const EnvVarMap& env_vars)
|
2012-05-03 11:25:13 +04:00
|
|
|
{
|
2012-09-06 16:28:07 +04:00
|
|
|
int write_pipe[2]; // child stdin
|
|
|
|
int read_pipe[2]; // child stdout
|
|
|
|
int error_pipe[2]; // child stderr
|
2012-05-03 11:25:13 +04:00
|
|
|
|
2012-05-29 14:39:03 +04:00
|
|
|
::pipe(write_pipe);
|
|
|
|
::pipe(read_pipe);
|
2012-09-06 16:28:07 +04:00
|
|
|
::pipe(error_pipe);
|
2012-05-03 11:25:13 +04:00
|
|
|
|
|
|
|
if (pid_t pid = fork())
|
|
|
|
{
|
|
|
|
close(write_pipe[0]);
|
|
|
|
close(read_pipe[1]);
|
2012-09-06 16:28:07 +04:00
|
|
|
close(error_pipe[1]);
|
2012-05-29 14:39:03 +04:00
|
|
|
|
2014-04-20 15:15:31 +04:00
|
|
|
write(write_pipe[1], input.data(), (int)input.length());
|
2012-05-03 11:25:13 +04:00
|
|
|
close(write_pipe[1]);
|
|
|
|
|
2015-03-14 04:53:17 +03:00
|
|
|
String child_stdout, child_stderr;
|
2012-05-03 11:25:13 +04:00
|
|
|
{
|
2014-12-03 16:56:02 +03:00
|
|
|
auto pipe_reader = [](String& output) {
|
|
|
|
return [&output](FDWatcher& watcher, EventMode) {
|
2014-11-25 04:00:18 +03:00
|
|
|
char buffer[1024];
|
2014-12-03 16:56:02 +03:00
|
|
|
size_t size = read(watcher.fd(), buffer, 1024);
|
2014-11-25 04:00:18 +03:00
|
|
|
if (size <= 0)
|
2014-12-03 16:56:02 +03:00
|
|
|
watcher.close_fd();
|
2015-04-27 18:39:51 +03:00
|
|
|
output += StringView{buffer, buffer+size};
|
2014-11-25 04:00:18 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-03-14 04:53:17 +03:00
|
|
|
FDWatcher stdout_watcher{read_pipe[0], pipe_reader(child_stdout)};
|
|
|
|
FDWatcher stderr_watcher{error_pipe[0], pipe_reader(child_stderr)};
|
2014-11-25 04:00:18 +03:00
|
|
|
|
2014-12-04 16:58:02 +03:00
|
|
|
while (not stdout_watcher.closed() or not stderr_watcher.closed())
|
2014-11-25 04:00:18 +03:00
|
|
|
EventManager::instance().handle_next_events(EventMode::Urgent);
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|
2012-09-06 16:28:07 +04:00
|
|
|
|
2015-03-14 04:53:17 +03:00
|
|
|
if (not child_stderr.empty())
|
|
|
|
write_debug("shell stderr: <<<\n" + child_stderr + ">>>");
|
2012-09-06 16:28:07 +04:00
|
|
|
|
2015-03-13 16:39:18 +03:00
|
|
|
int status = 0;
|
|
|
|
waitpid(pid, &status, 0);
|
2015-03-14 04:53:17 +03:00
|
|
|
return { child_stdout, WIFEXITED(status) ? WEXITSTATUS(status) : - 1 };
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|
2012-07-31 16:21:25 +04:00
|
|
|
else try
|
2012-05-03 11:25:13 +04:00
|
|
|
{
|
|
|
|
close(write_pipe[1]);
|
|
|
|
close(read_pipe[0]);
|
2012-09-06 16:28:07 +04:00
|
|
|
close(error_pipe[0]);
|
2012-05-03 11:25:13 +04:00
|
|
|
|
2012-08-29 02:08:39 +04:00
|
|
|
dup2(read_pipe[1], 1); close(read_pipe[1]);
|
2012-09-06 16:28:07 +04:00
|
|
|
dup2(error_pipe[1], 2); close(error_pipe[1]);
|
2012-08-29 02:08:39 +04:00
|
|
|
dup2(write_pipe[0], 0); close(write_pipe[0]);
|
2012-05-03 11:25:13 +04:00
|
|
|
|
2015-03-13 16:25:20 +03:00
|
|
|
using RegexIt = RegexIterator<StringView::iterator>;
|
|
|
|
for (RegexIt it{cmdline.begin(), cmdline.end(), env_var_regex}, end;
|
|
|
|
it != end; ++it)
|
2012-05-03 11:25:13 +04:00
|
|
|
{
|
|
|
|
auto& match = *it;
|
|
|
|
|
2015-03-13 16:25:20 +03:00
|
|
|
StringView name{match[1].first, match[1].second};
|
2013-04-09 22:04:11 +04:00
|
|
|
kak_assert(name.length() > 0);
|
2012-05-03 11:25:13 +04:00
|
|
|
|
2015-03-10 22:33:46 +03:00
|
|
|
auto local_var = env_vars.find(name.str());
|
2012-05-29 09:19:27 +04:00
|
|
|
if (local_var != env_vars.end())
|
|
|
|
setenv(("kak_" + name).c_str(), local_var->second.c_str(), 1);
|
2015-03-13 16:25:20 +03:00
|
|
|
else try
|
2012-05-03 11:25:13 +04:00
|
|
|
{
|
2015-03-13 16:25:20 +03:00
|
|
|
String value = get_val(name, context);
|
|
|
|
setenv(("kak_"_str + name).c_str(), value.c_str(), 1);
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|
2015-03-13 16:25:20 +03:00
|
|
|
catch (runtime_error&) {}
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|
2014-04-20 15:15:31 +04:00
|
|
|
const char* shell = "/bin/sh";
|
|
|
|
auto cmdlinezstr = cmdline.zstr();
|
2015-01-12 16:58:41 +03:00
|
|
|
Vector<const char*> execparams = { shell, "-c", cmdlinezstr };
|
2012-09-09 19:10:53 +04:00
|
|
|
if (not params.empty())
|
2014-04-20 15:15:31 +04:00
|
|
|
execparams.push_back(shell);
|
2012-09-09 19:10:53 +04:00
|
|
|
for (auto& param : params)
|
|
|
|
execparams.push_back(param.c_str());
|
2013-07-28 18:40:02 +04:00
|
|
|
execparams.push_back(nullptr);
|
2012-09-09 19:10:53 +04:00
|
|
|
|
2014-04-20 15:15:31 +04:00
|
|
|
execvp(shell, (char* const*)execparams.data());
|
2012-07-31 16:21:25 +04:00
|
|
|
exit(-1);
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|
2012-07-31 16:21:25 +04:00
|
|
|
catch (...) { exit(-1); }
|
2015-03-13 16:39:18 +03:00
|
|
|
return {};
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:15:31 +04:00
|
|
|
void ShellManager::register_env_var(StringView regex,
|
2012-05-03 11:25:13 +04:00
|
|
|
EnvVarRetriever retriever)
|
|
|
|
{
|
2012-06-25 21:40:18 +04:00
|
|
|
m_env_vars.push_back({ Regex(regex.begin(), regex.end()), std::move(retriever) });
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|
|
|
|
|
2014-06-18 22:28:48 +04:00
|
|
|
String ShellManager::get_val(StringView name, const Context& context) const
|
|
|
|
{
|
|
|
|
auto env_var = std::find_if(
|
|
|
|
m_env_vars.begin(), m_env_vars.end(),
|
|
|
|
[&](const std::pair<Regex, EnvVarRetriever>& pair)
|
2014-10-13 16:12:33 +04:00
|
|
|
{ return regex_match(name.begin(), name.end(), pair.first); });
|
2014-06-18 22:28:48 +04:00
|
|
|
|
|
|
|
if (env_var == m_env_vars.end())
|
|
|
|
throw runtime_error("no such env var: " + name);
|
|
|
|
return env_var->second(name, context);
|
|
|
|
}
|
|
|
|
|
2012-05-03 11:25:13 +04:00
|
|
|
}
|