2012-10-24 00:55:44 +04:00
|
|
|
#ifndef remote_hh_INCLUDED
|
|
|
|
#define remote_hh_INCLUDED
|
|
|
|
|
2014-04-08 00:25:44 +04:00
|
|
|
#include "env_vars.hh"
|
2014-11-13 00:27:07 +03:00
|
|
|
#include "exception.hh"
|
|
|
|
#include "utils.hh"
|
2016-12-01 23:11:09 +03:00
|
|
|
#include "vector.hh"
|
2014-11-13 00:27:07 +03:00
|
|
|
|
|
|
|
#include <memory>
|
2012-10-24 00:55:44 +04:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2016-09-04 19:54:07 +03:00
|
|
|
struct remote_error : runtime_error
|
|
|
|
{
|
2016-12-01 23:11:09 +03:00
|
|
|
using runtime_error::runtime_error;
|
2016-09-04 19:54:07 +03:00
|
|
|
};
|
2012-10-26 15:45:32 +04:00
|
|
|
|
2014-11-05 16:57:12 +03:00
|
|
|
class FDWatcher;
|
2016-11-29 22:53:11 +03:00
|
|
|
class UserInterface;
|
2016-12-01 23:11:09 +03:00
|
|
|
|
|
|
|
using RemoteBuffer = Vector<char, MemoryDomain::Remote>;
|
2014-11-05 16:57:12 +03:00
|
|
|
|
2013-03-12 21:53:18 +04:00
|
|
|
// A remote client handle communication between a client running on the server
|
|
|
|
// and a user interface running on the local process.
|
2012-10-24 00:55:44 +04:00
|
|
|
class RemoteClient
|
|
|
|
{
|
|
|
|
public:
|
2014-11-05 16:57:12 +03:00
|
|
|
RemoteClient(StringView session, std::unique_ptr<UserInterface>&& ui,
|
2014-10-20 22:18:38 +04:00
|
|
|
const EnvVarMap& env_vars, StringView init_command);
|
2012-10-24 00:55:44 +04:00
|
|
|
|
2013-03-13 22:59:39 +04:00
|
|
|
private:
|
2012-10-24 00:55:44 +04:00
|
|
|
std::unique_ptr<UserInterface> m_ui;
|
2014-11-05 16:57:12 +03:00
|
|
|
std::unique_ptr<FDWatcher> m_socket_watcher;
|
2016-12-01 23:11:09 +03:00
|
|
|
RemoteBuffer m_send_buffer;
|
2012-10-24 00:55:44 +04:00
|
|
|
};
|
2013-03-13 22:59:39 +04:00
|
|
|
|
2014-10-20 22:18:38 +04:00
|
|
|
void send_command(StringView session, StringView command);
|
2014-03-02 06:01:09 +04:00
|
|
|
|
2013-03-13 22:59:39 +04:00
|
|
|
struct Server : public Singleton<Server>
|
|
|
|
{
|
2013-09-25 22:04:52 +04:00
|
|
|
Server(String session_name);
|
2013-03-13 22:59:39 +04:00
|
|
|
~Server();
|
2013-09-25 22:04:52 +04:00
|
|
|
const String& session() const { return m_session; }
|
2013-03-13 22:59:39 +04:00
|
|
|
|
2016-07-28 02:16:41 +03:00
|
|
|
bool rename_session(StringView name);
|
2015-10-08 22:05:47 +03:00
|
|
|
void close_session(bool do_unlink = true);
|
2014-01-27 23:53:17 +04:00
|
|
|
|
2013-03-13 22:59:39 +04:00
|
|
|
private:
|
2014-03-25 13:21:20 +04:00
|
|
|
class Accepter;
|
|
|
|
void remove_accepter(Accepter* accepter);
|
|
|
|
|
2013-09-25 22:04:52 +04:00
|
|
|
String m_session;
|
2013-03-13 22:59:39 +04:00
|
|
|
std::unique_ptr<FDWatcher> m_listener;
|
2016-11-28 16:59:55 +03:00
|
|
|
Vector<std::unique_ptr<Accepter>, MemoryDomain::Remote> m_accepters;
|
2013-03-13 22:59:39 +04:00
|
|
|
};
|
2012-10-24 00:55:44 +04:00
|
|
|
|
2016-06-06 21:28:56 +03:00
|
|
|
bool check_session(StringView session);
|
|
|
|
|
2012-10-24 00:55:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // remote_hh_INCLUDED
|