2012-05-03 09:25:13 +02:00
|
|
|
#ifndef shell_manager_hh_INCLUDED
|
|
|
|
#define shell_manager_hh_INCLUDED
|
|
|
|
|
2012-08-29 21:49:36 +02:00
|
|
|
#include "string.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "utils.hh"
|
2014-04-07 22:25:44 +02:00
|
|
|
#include "env_vars.hh"
|
2012-05-03 09:25:13 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2014-01-27 21:28:38 +01:00
|
|
|
class Context;
|
2014-04-20 13:15:31 +02:00
|
|
|
using EnvVarRetriever = std::function<String (StringView name, const Context&)>;
|
2012-05-03 09:25:13 +02:00
|
|
|
|
|
|
|
class ShellManager : public Singleton<ShellManager>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ShellManager();
|
|
|
|
|
2014-04-20 13:15:31 +02:00
|
|
|
String eval(StringView cmdline, const Context& context,
|
2013-07-26 01:17:12 +02:00
|
|
|
memoryview<String> params,
|
2012-05-29 07:19:27 +02:00
|
|
|
const EnvVarMap& env_vars);
|
2012-05-03 09:25:13 +02:00
|
|
|
|
2014-04-20 13:15:31 +02:00
|
|
|
String pipe(StringView input,
|
|
|
|
StringView cmdline, const Context& context,
|
2013-07-26 01:17:12 +02:00
|
|
|
memoryview<String> params,
|
2012-05-29 12:39:03 +02:00
|
|
|
const EnvVarMap& env_vars);
|
|
|
|
|
2014-04-20 13:15:31 +02:00
|
|
|
void register_env_var(StringView regex, EnvVarRetriever retriever);
|
2012-05-03 09:25:13 +02:00
|
|
|
|
|
|
|
private:
|
2012-06-25 19:40:18 +02:00
|
|
|
std::vector<std::pair<Regex, EnvVarRetriever>> m_env_vars;
|
2012-05-03 09:25:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // shell_manager_hh_INCLUDED
|
|
|
|
|