mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
5e1499d104
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
#include <AK/Function.h>
|
|
#include <LibCore/LocalServer.h>
|
|
#include <LibIPC/ConnectionFromClient.h>
|
|
|
|
namespace IPC {
|
|
|
|
template<typename ConnectionFromClientType>
|
|
class MultiServer {
|
|
public:
|
|
static ErrorOr<NonnullOwnPtr<MultiServer>> try_create(Optional<ByteString> 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)));
|
|
}
|
|
|
|
Function<void(ConnectionFromClientType&)> on_new_client;
|
|
|
|
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;
|
|
|
|
auto client = IPC::new_client_connection<ConnectionFromClientType>(move(client_socket), client_id);
|
|
if (on_new_client)
|
|
on_new_client(*client);
|
|
};
|
|
}
|
|
|
|
int m_next_client_id { 0 };
|
|
RefPtr<Core::LocalServer> m_server;
|
|
};
|
|
|
|
}
|