2012-10-30 17:00:44 +04:00
|
|
|
#include "client_manager.hh"
|
|
|
|
|
2012-11-07 17:02:23 +04:00
|
|
|
#include "buffer_manager.hh"
|
2012-12-19 00:20:36 +04:00
|
|
|
#include "command_manager.hh"
|
2014-12-23 16:54:09 +03:00
|
|
|
#include "containers.hh"
|
2013-04-09 21:39:03 +04:00
|
|
|
#include "event_manager.hh"
|
2014-07-11 03:27:04 +04:00
|
|
|
#include "face_registry.hh"
|
2013-03-25 22:11:26 +04:00
|
|
|
#include "file.hh"
|
2013-04-09 21:39:03 +04:00
|
|
|
#include "user_interface.hh"
|
|
|
|
#include "window.hh"
|
2012-10-31 17:23:44 +04:00
|
|
|
|
2012-10-30 17:00:44 +04:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-02-07 22:25:42 +04:00
|
|
|
ClientManager::ClientManager() = default;
|
|
|
|
ClientManager::~ClientManager() = default;
|
|
|
|
|
2013-01-07 16:59:09 +04:00
|
|
|
String ClientManager::generate_name() const
|
|
|
|
{
|
|
|
|
for (int i = 0; true; ++i)
|
|
|
|
{
|
2015-03-31 01:56:33 +03:00
|
|
|
String name = format("unnamed{}", i);
|
2013-09-13 02:01:47 +04:00
|
|
|
if (validate_client_name(name))
|
2013-01-07 16:59:09 +04:00
|
|
|
return name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-13 01:47:23 +04:00
|
|
|
Client* ClientManager::create_client(std::unique_ptr<UserInterface>&& ui,
|
2014-04-08 00:25:44 +04:00
|
|
|
EnvVarMap env_vars,
|
2014-10-20 22:18:38 +04:00
|
|
|
StringView init_commands)
|
2012-10-30 17:00:44 +04:00
|
|
|
{
|
2012-12-28 16:51:14 +04:00
|
|
|
Buffer& buffer = **BufferManager::instance().begin();
|
2013-12-21 00:10:08 +04:00
|
|
|
WindowAndSelections ws = get_free_window(buffer);
|
2014-01-28 00:28:38 +04:00
|
|
|
Client* client = new Client{std::move(ui), std::move(ws.window),
|
2014-04-08 00:25:44 +04:00
|
|
|
std::move(ws.selections), std::move(env_vars),
|
|
|
|
generate_name()};
|
2013-04-15 16:28:21 +04:00
|
|
|
m_clients.emplace_back(client);
|
2012-12-19 21:56:47 +04:00
|
|
|
try
|
|
|
|
{
|
2013-04-15 16:28:21 +04:00
|
|
|
CommandManager::instance().execute(init_commands, client->context());
|
2012-12-19 21:56:47 +04:00
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& error)
|
|
|
|
{
|
2015-03-13 16:15:51 +03:00
|
|
|
client->context().print_status({ error.what().str(), get_face("Error") });
|
2013-04-15 16:28:21 +04:00
|
|
|
client->context().hooks().run_hook("RuntimeError", error.what(),
|
|
|
|
client->context());
|
2012-12-19 21:56:47 +04:00
|
|
|
}
|
|
|
|
catch (Kakoune::client_removed&)
|
|
|
|
{
|
|
|
|
m_clients.pop_back();
|
2013-04-15 16:28:21 +04:00
|
|
|
return nullptr;
|
2012-12-19 21:56:47 +04:00
|
|
|
}
|
|
|
|
|
2014-11-25 04:00:18 +03:00
|
|
|
client->ui().set_input_callback([client](EventMode mode) {
|
|
|
|
client->handle_available_input(mode);
|
2012-10-31 17:23:44 +04:00
|
|
|
});
|
2013-04-15 16:28:21 +04:00
|
|
|
|
|
|
|
return client;
|
2012-10-30 17:00:44 +04:00
|
|
|
}
|
|
|
|
|
2014-11-29 23:14:52 +03:00
|
|
|
void ClientManager::handle_pending_inputs() const
|
2014-11-25 04:00:18 +03:00
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
2014-11-29 23:14:52 +03:00
|
|
|
client->handle_available_input(EventMode::Pending);
|
2014-11-25 04:00:18 +03:00
|
|
|
}
|
|
|
|
|
2013-09-13 01:47:23 +04:00
|
|
|
void ClientManager::remove_client(Client& client)
|
2012-10-30 17:00:44 +04:00
|
|
|
{
|
|
|
|
for (auto it = m_clients.begin(); it != m_clients.end(); ++it)
|
|
|
|
{
|
2013-04-15 16:28:21 +04:00
|
|
|
if (it->get() == &client)
|
2012-10-30 17:00:44 +04:00
|
|
|
{
|
|
|
|
m_clients.erase(it);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-04-09 22:04:11 +04:00
|
|
|
kak_assert(false);
|
2012-10-30 17:00:44 +04:00
|
|
|
}
|
|
|
|
|
2013-12-21 00:10:08 +04:00
|
|
|
WindowAndSelections ClientManager::get_free_window(Buffer& buffer)
|
2012-11-05 22:15:42 +04:00
|
|
|
{
|
2015-03-14 14:27:01 +03:00
|
|
|
auto it = find_if(reversed(m_free_windows),
|
|
|
|
[&](const WindowAndSelections& ws)
|
|
|
|
{ return &ws.window->buffer() == &buffer; });
|
|
|
|
|
|
|
|
if (it == m_free_windows.rend())
|
2015-05-26 20:42:09 +03:00
|
|
|
return { make_unique<Window>(buffer), { buffer, Selection{} } };
|
2015-03-14 14:27:01 +03:00
|
|
|
|
|
|
|
it->window->forget_timestamp();
|
|
|
|
WindowAndSelections res = std::move(*it);
|
|
|
|
m_free_windows.erase(it.base()-1);
|
|
|
|
res.selections.update();
|
|
|
|
return res;
|
2013-12-21 00:10:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClientManager::add_free_window(std::unique_ptr<Window>&& window, SelectionList selections)
|
|
|
|
{
|
2015-01-26 22:41:10 +03:00
|
|
|
window->clear_display_buffer();
|
2013-12-21 00:10:08 +04:00
|
|
|
Buffer& buffer = window->buffer();
|
2014-05-13 02:25:15 +04:00
|
|
|
m_free_windows.push_back({ std::move(window), SelectionList{ std::move(selections) }, buffer.timestamp() });
|
2012-11-05 22:15:42 +04:00
|
|
|
}
|
|
|
|
|
2012-11-07 17:02:23 +04:00
|
|
|
void ClientManager::ensure_no_client_uses_buffer(Buffer& buffer)
|
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
|
|
|
{
|
2013-01-28 16:48:34 +04:00
|
|
|
client->context().forget_jumps_to_buffer(buffer);
|
2012-11-12 22:59:25 +04:00
|
|
|
|
2013-01-28 16:48:34 +04:00
|
|
|
if (&client->context().buffer() != &buffer)
|
2012-11-07 17:02:23 +04:00
|
|
|
continue;
|
|
|
|
|
2013-12-15 22:07:51 +04:00
|
|
|
if (client->context().is_editing())
|
2013-11-15 00:51:25 +04:00
|
|
|
throw runtime_error("client '" + client->context().name() + "' is inserting in '" +
|
2014-12-08 16:59:29 +03:00
|
|
|
buffer.display_name() + "'");
|
2013-04-10 20:54:01 +04:00
|
|
|
|
2012-11-07 17:02:23 +04:00
|
|
|
// change client context to edit the first buffer which is not the
|
|
|
|
// specified one. As BufferManager stores buffer according to last
|
|
|
|
// access, this selects a sensible buffer to display.
|
|
|
|
for (auto& buf : BufferManager::instance())
|
|
|
|
{
|
2015-02-23 23:39:56 +03:00
|
|
|
if (buf.get() != &buffer)
|
2012-11-07 17:02:23 +04:00
|
|
|
{
|
2013-12-21 00:10:08 +04:00
|
|
|
client->context().change_buffer(*buf);
|
2012-11-07 17:02:23 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-21 00:10:08 +04:00
|
|
|
auto end = std::remove_if(m_free_windows.begin(), m_free_windows.end(),
|
|
|
|
[&buffer](const WindowAndSelections& ws)
|
2014-01-28 00:28:38 +04:00
|
|
|
{ return &ws.window->buffer() == &buffer; });
|
2013-12-21 00:10:08 +04:00
|
|
|
m_free_windows.erase(end, m_free_windows.end());
|
2012-11-07 17:02:23 +04:00
|
|
|
}
|
|
|
|
|
2014-10-20 22:18:38 +04:00
|
|
|
bool ClientManager::validate_client_name(StringView name) const
|
2012-12-03 21:56:53 +04:00
|
|
|
{
|
2015-03-14 14:27:01 +03:00
|
|
|
return const_cast<ClientManager*>(this)->get_client_ifp(name) == nullptr;
|
2012-12-03 21:56:53 +04:00
|
|
|
}
|
|
|
|
|
2014-10-20 22:18:38 +04:00
|
|
|
Client* ClientManager::get_client_ifp(StringView name)
|
2013-01-07 16:59:09 +04:00
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
|
|
|
{
|
2013-11-15 00:51:25 +04:00
|
|
|
if (client->context().name() == name)
|
2013-12-07 17:43:48 +04:00
|
|
|
return client.get();
|
2013-01-07 16:59:09 +04:00
|
|
|
}
|
2013-12-07 17:43:48 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-10-20 22:18:38 +04:00
|
|
|
Client& ClientManager::get_client(StringView name)
|
2013-12-07 17:43:48 +04:00
|
|
|
{
|
2015-01-05 01:34:36 +03:00
|
|
|
if (Client* client = get_client_ifp(name))
|
|
|
|
return *client;
|
|
|
|
throw runtime_error("no client named: " + name);
|
2012-12-03 21:56:53 +04:00
|
|
|
}
|
|
|
|
|
2012-11-05 22:58:04 +04:00
|
|
|
void ClientManager::redraw_clients() const
|
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
2013-09-16 22:15:13 +04:00
|
|
|
client->redraw_ifn();
|
2012-11-05 22:58:04 +04:00
|
|
|
}
|
|
|
|
|
2014-08-12 22:24:09 +04:00
|
|
|
void ClientManager::clear_mode_trashes() const
|
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
|
|
|
client->input_handler().clear_mode_trash();
|
|
|
|
}
|
|
|
|
|
2014-04-18 17:02:14 +04:00
|
|
|
CandidateList ClientManager::complete_client_name(StringView prefix,
|
2014-04-08 00:43:55 +04:00
|
|
|
ByteCount cursor_pos) const
|
|
|
|
{
|
2014-12-23 16:54:09 +03:00
|
|
|
auto c = transformed(m_clients, [](const std::unique_ptr<Client>& c){ return c->context().name(); });
|
|
|
|
return complete(prefix, cursor_pos, c, prefix_match, subsequence_match);
|
2014-04-08 00:43:55 +04:00
|
|
|
}
|
|
|
|
|
2012-10-30 17:00:44 +04:00
|
|
|
}
|