2012-10-30 14:00:44 +01:00
|
|
|
#include "client_manager.hh"
|
|
|
|
|
2012-11-07 14:02:23 +01:00
|
|
|
#include "buffer_manager.hh"
|
2012-12-18 21:20:36 +01:00
|
|
|
#include "command_manager.hh"
|
2014-12-23 14:54:09 +01:00
|
|
|
#include "containers.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "event_manager.hh"
|
2014-07-11 01:27:04 +02:00
|
|
|
#include "face_registry.hh"
|
2013-03-25 19:11:26 +01:00
|
|
|
#include "file.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "window.hh"
|
2012-10-31 14:23:44 +01:00
|
|
|
|
2012-10-30 14:00:44 +01:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-02-07 19:25:42 +01:00
|
|
|
ClientManager::ClientManager() = default;
|
2015-08-26 20:34:19 +02:00
|
|
|
ClientManager::~ClientManager()
|
|
|
|
{
|
2016-03-03 14:55:35 +01:00
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientManager::clear()
|
|
|
|
{
|
|
|
|
m_free_windows.clear();
|
2015-08-26 20:34:19 +02:00
|
|
|
// So that clients destructor find the client manager empty
|
|
|
|
// so that local UI does not fork.
|
|
|
|
ClientList clients = std::move(m_clients);
|
|
|
|
}
|
2013-02-07 19:25:42 +01:00
|
|
|
|
2013-01-07 13:59:09 +01:00
|
|
|
String ClientManager::generate_name() const
|
|
|
|
{
|
|
|
|
for (int i = 0; true; ++i)
|
|
|
|
{
|
2015-03-31 00:56:33 +02:00
|
|
|
String name = format("unnamed{}", i);
|
2013-09-13 00:01:47 +02:00
|
|
|
if (validate_client_name(name))
|
2013-01-07 13:59:09 +01:00
|
|
|
return name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-12 23:47:23 +02:00
|
|
|
Client* ClientManager::create_client(std::unique_ptr<UserInterface>&& ui,
|
2014-04-07 22:25:44 +02:00
|
|
|
EnvVarMap env_vars,
|
2014-10-20 20:18:38 +02:00
|
|
|
StringView init_commands)
|
2012-10-30 14:00:44 +01:00
|
|
|
{
|
2012-12-28 13:51:14 +01:00
|
|
|
Buffer& buffer = **BufferManager::instance().begin();
|
2013-12-20 21:10:08 +01:00
|
|
|
WindowAndSelections ws = get_free_window(buffer);
|
2014-01-27 21:28:38 +01:00
|
|
|
Client* client = new Client{std::move(ui), std::move(ws.window),
|
2014-04-07 22:25:44 +02:00
|
|
|
std::move(ws.selections), std::move(env_vars),
|
|
|
|
generate_name()};
|
2013-04-15 14:28:21 +02:00
|
|
|
m_clients.emplace_back(client);
|
2012-12-19 18:56:47 +01:00
|
|
|
try
|
|
|
|
{
|
2015-12-14 20:06:30 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
CommandManager::instance().execute(init_commands, client->context());
|
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& error)
|
|
|
|
{
|
|
|
|
client->context().print_status({ error.what().str(), get_face("Error") });
|
|
|
|
client->context().hooks().run_hook("RuntimeError", error.what(),
|
|
|
|
client->context());
|
|
|
|
}
|
2012-12-19 18:56:47 +01:00
|
|
|
}
|
2015-10-08 14:43:39 +02:00
|
|
|
catch (Kakoune::client_removed& removed)
|
2012-12-19 18:56:47 +01:00
|
|
|
{
|
2015-10-08 14:43:39 +02:00
|
|
|
remove_client(*client, removed.graceful);
|
2013-04-15 14:28:21 +02:00
|
|
|
return nullptr;
|
2012-12-19 18:56:47 +01:00
|
|
|
}
|
|
|
|
|
2013-04-15 14:28:21 +02:00
|
|
|
return client;
|
2012-10-30 14:00:44 +01:00
|
|
|
}
|
|
|
|
|
2014-11-29 21:14:52 +01:00
|
|
|
void ClientManager::handle_pending_inputs() const
|
2014-11-25 02:00:18 +01:00
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
2014-11-29 21:14:52 +01:00
|
|
|
client->handle_available_input(EventMode::Pending);
|
2014-11-25 02:00:18 +01:00
|
|
|
}
|
|
|
|
|
2015-10-08 14:43:39 +02:00
|
|
|
void ClientManager::remove_client(Client& client, bool graceful)
|
2012-10-30 14:00:44 +01:00
|
|
|
{
|
2015-08-26 20:33:52 +02:00
|
|
|
auto it = find_if(m_clients,
|
|
|
|
[&](const std::unique_ptr<Client>& ptr)
|
|
|
|
{ return ptr.get() == &client; });
|
|
|
|
kak_assert(it != m_clients.end());
|
|
|
|
m_clients.erase(it);
|
2015-10-08 14:43:39 +02:00
|
|
|
|
|
|
|
if (not graceful and m_clients.empty())
|
|
|
|
BufferManager::instance().backup_modified_buffers();
|
2012-10-30 14:00:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-20 21:10:08 +01:00
|
|
|
WindowAndSelections ClientManager::get_free_window(Buffer& buffer)
|
2012-11-05 19:15:42 +01:00
|
|
|
{
|
2016-03-08 22:35:56 +01:00
|
|
|
auto it = find_if(m_free_windows | reverse(),
|
2015-03-14 12:27:01 +01:00
|
|
|
[&](const WindowAndSelections& ws)
|
|
|
|
{ return &ws.window->buffer() == &buffer; });
|
|
|
|
|
|
|
|
if (it == m_free_windows.rend())
|
2015-05-26 19:42:09 +02:00
|
|
|
return { make_unique<Window>(buffer), { buffer, Selection{} } };
|
2015-03-14 12:27:01 +01:00
|
|
|
|
2015-06-21 20:56:23 +02:00
|
|
|
it->window->force_redraw();
|
2015-03-14 12:27:01 +01:00
|
|
|
WindowAndSelections res = std::move(*it);
|
|
|
|
m_free_windows.erase(it.base()-1);
|
|
|
|
res.selections.update();
|
|
|
|
return res;
|
2013-12-20 21:10:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClientManager::add_free_window(std::unique_ptr<Window>&& window, SelectionList selections)
|
|
|
|
{
|
2015-01-26 20:41:10 +01:00
|
|
|
window->clear_display_buffer();
|
2013-12-20 21:10:08 +01:00
|
|
|
Buffer& buffer = window->buffer();
|
2014-05-13 00:25:15 +02:00
|
|
|
m_free_windows.push_back({ std::move(window), SelectionList{ std::move(selections) }, buffer.timestamp() });
|
2012-11-05 19:15:42 +01:00
|
|
|
}
|
|
|
|
|
2012-11-07 14:02:23 +01:00
|
|
|
void ClientManager::ensure_no_client_uses_buffer(Buffer& buffer)
|
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
|
|
|
{
|
2015-12-23 02:56:54 +01:00
|
|
|
client->context().jump_list().forget_buffer(buffer);
|
2015-11-07 19:24:08 +01:00
|
|
|
if (client->last_buffer() == &buffer)
|
|
|
|
client->set_last_buffer(nullptr);
|
2012-11-12 19:59:25 +01:00
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
if (&client->context().buffer() != &buffer)
|
2012-11-07 14:02:23 +01:00
|
|
|
continue;
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
if (client->context().is_editing())
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("client '{}' is inserting in buffer '{}'",
|
|
|
|
client->context().name(),
|
|
|
|
buffer.display_name()));
|
2013-04-10 18:54:01 +02:00
|
|
|
|
2015-11-10 14:52:48 +01:00
|
|
|
if (Buffer* last_buffer = client->last_buffer())
|
|
|
|
{
|
|
|
|
client->context().change_buffer(*last_buffer);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-11-07 14:02:23 +01:00
|
|
|
for (auto& buf : BufferManager::instance())
|
|
|
|
{
|
2015-02-23 21:39:56 +01:00
|
|
|
if (buf.get() != &buffer)
|
2012-11-07 14:02:23 +01:00
|
|
|
{
|
2013-12-20 21:10:08 +01:00
|
|
|
client->context().change_buffer(*buf);
|
2016-02-12 00:07:42 +01:00
|
|
|
client->set_last_buffer(nullptr);
|
2012-11-07 14:02:23 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-20 21:10:08 +01:00
|
|
|
auto end = std::remove_if(m_free_windows.begin(), m_free_windows.end(),
|
|
|
|
[&buffer](const WindowAndSelections& ws)
|
2014-01-27 21:28:38 +01:00
|
|
|
{ return &ws.window->buffer() == &buffer; });
|
2016-05-13 21:32:53 +02:00
|
|
|
|
|
|
|
for (auto it = end; it != m_free_windows.end(); ++it)
|
|
|
|
m_window_trash.push_back(std::move(it->window));
|
|
|
|
|
2013-12-20 21:10:08 +01:00
|
|
|
m_free_windows.erase(end, m_free_windows.end());
|
2012-11-07 14:02:23 +01:00
|
|
|
}
|
|
|
|
|
2016-05-13 21:32:53 +02:00
|
|
|
void ClientManager::clear_window_trash()
|
|
|
|
{
|
|
|
|
m_window_trash.clear();
|
|
|
|
}
|
|
|
|
|
2014-10-20 20:18:38 +02:00
|
|
|
bool ClientManager::validate_client_name(StringView name) const
|
2012-12-03 18:56:53 +01:00
|
|
|
{
|
2015-03-14 12:27:01 +01:00
|
|
|
return const_cast<ClientManager*>(this)->get_client_ifp(name) == nullptr;
|
2012-12-03 18:56:53 +01:00
|
|
|
}
|
|
|
|
|
2014-10-20 20:18:38 +02:00
|
|
|
Client* ClientManager::get_client_ifp(StringView name)
|
2013-01-07 13:59:09 +01:00
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
|
|
|
{
|
2013-11-14 21:51:25 +01:00
|
|
|
if (client->context().name() == name)
|
2013-12-07 14:43:48 +01:00
|
|
|
return client.get();
|
2013-01-07 13:59:09 +01:00
|
|
|
}
|
2013-12-07 14:43:48 +01:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-10-20 20:18:38 +02:00
|
|
|
Client& ClientManager::get_client(StringView name)
|
2013-12-07 14:43:48 +01:00
|
|
|
{
|
2015-01-04 23:34:36 +01:00
|
|
|
if (Client* client = get_client_ifp(name))
|
|
|
|
return *client;
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("no client named '{}'", name));
|
2012-12-03 18:56:53 +01:00
|
|
|
}
|
|
|
|
|
2012-11-05 19:58:04 +01:00
|
|
|
void ClientManager::redraw_clients() const
|
|
|
|
{
|
|
|
|
for (auto& client : m_clients)
|
2013-09-16 20:15:13 +02:00
|
|
|
client->redraw_ifn();
|
2012-11-05 19:58:04 +01:00
|
|
|
}
|
|
|
|
|
2014-04-18 15:02:14 +02:00
|
|
|
CandidateList ClientManager::complete_client_name(StringView prefix,
|
2014-04-07 22:43:55 +02:00
|
|
|
ByteCount cursor_pos) const
|
|
|
|
{
|
2016-03-08 22:35:56 +01:00
|
|
|
auto c = m_clients | transform([](const std::unique_ptr<Client>& c) -> const String&
|
|
|
|
{ return c->context().name(); });
|
2016-02-09 23:50:10 +01:00
|
|
|
return complete(prefix, cursor_pos, c);
|
2014-04-07 22:43:55 +02:00
|
|
|
}
|
|
|
|
|
2012-10-30 14:00:44 +01:00
|
|
|
}
|