1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 13:25:07 +00:00
serenity/Userland/Libraries/LibIPC/MultiServer.h
Linus Groh 6e19ab2bbc AK+Everywhere: Rename String to DeprecatedString
We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
2022-12-06 08:54:33 +01:00

39 lines
1 KiB
C++

/*
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Error.h>
#include <LibCore/LocalServer.h>
#include <LibIPC/ConnectionFromClient.h>
namespace IPC {
template<typename ConnectionFromClientType>
class MultiServer {
public:
static ErrorOr<NonnullOwnPtr<MultiServer>> try_create(Optional<DeprecatedString> socket_path = {})
{
auto server = TRY(Core::LocalServer::try_create());
TRY(server->take_over_from_system_server(socket_path.value_or({})));
return adopt_nonnull_own_or_enomem(new (nothrow) MultiServer(move(server)));
}
private:
explicit MultiServer(NonnullRefPtr<Core::LocalServer> server)
: m_server(move(server))
{
m_server->on_accept = [&](auto client_socket) {
auto client_id = ++m_next_client_id;
(void)IPC::new_client_connection<ConnectionFromClientType>(move(client_socket), client_id);
};
}
int m_next_client_id { 0 };
RefPtr<Core::LocalServer> m_server;
};
}