2020-01-18 03:38:21 -05:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 03:38:21 -05:00
|
|
|
*/
|
|
|
|
|
2019-07-17 08:52:12 -04:00
|
|
|
#pragma once
|
|
|
|
|
2022-09-06 02:04:06 -04:00
|
|
|
#include <LibCore/SessionManagement.h>
|
2020-09-12 05:44:00 -04:00
|
|
|
#include <LibIPC/Connection.h>
|
2019-07-17 08:52:12 -04:00
|
|
|
|
2020-02-05 13:57:18 -05:00
|
|
|
namespace IPC {
|
|
|
|
|
2022-01-14 08:12:49 -05:00
|
|
|
#define IPC_CLIENT_CONNECTION(klass, socket_path) \
|
|
|
|
C_OBJECT_ABSTRACT(klass) \
|
|
|
|
public: \
|
|
|
|
template<typename Klass = klass, class... Args> \
|
|
|
|
static ErrorOr<NonnullRefPtr<klass>> try_create(Args&&... args) \
|
|
|
|
{ \
|
2022-09-06 02:04:06 -04:00
|
|
|
auto parsed_socket_path = TRY(Core::SessionManagement::parse_path_with_sid(socket_path)); \
|
2023-02-08 17:05:44 -05:00
|
|
|
auto socket = TRY(Core::LocalSocket::connect(move(parsed_socket_path))); \
|
2022-01-14 08:12:49 -05:00
|
|
|
/* We want to rate-limit our clients */ \
|
|
|
|
TRY(socket->set_blocking(true)); \
|
|
|
|
\
|
|
|
|
return adopt_nonnull_ref_or_enomem(new (nothrow) Klass(move(socket), forward<Args>(args)...)); \
|
|
|
|
}
|
|
|
|
|
2020-09-12 05:44:00 -04:00
|
|
|
template<typename ClientEndpoint, typename ServerEndpoint>
|
2022-02-25 05:27:37 -05:00
|
|
|
class ConnectionToServer : public IPC::Connection<ClientEndpoint, ServerEndpoint>
|
2021-05-03 07:33:59 -04:00
|
|
|
, public ClientEndpoint::Stub
|
|
|
|
, public ServerEndpoint::template Proxy<ClientEndpoint> {
|
2019-12-02 03:58:25 -05:00
|
|
|
public:
|
2021-05-03 02:46:40 -04:00
|
|
|
using ClientStub = typename ClientEndpoint::Stub;
|
2021-06-20 15:10:54 -04:00
|
|
|
using IPCProxy = typename ServerEndpoint::template Proxy<ClientEndpoint>;
|
2021-05-03 02:46:40 -04:00
|
|
|
|
2023-02-08 17:05:44 -05:00
|
|
|
ConnectionToServer(ClientStub& local_endpoint, NonnullOwnPtr<Core::LocalSocket> socket)
|
2022-01-14 08:12:49 -05:00
|
|
|
: Connection<ClientEndpoint, ServerEndpoint>(local_endpoint, move(socket))
|
2021-05-03 07:33:59 -04:00
|
|
|
, ServerEndpoint::template Proxy<ClientEndpoint>(*this, {})
|
2019-12-02 03:58:25 -05:00
|
|
|
{
|
|
|
|
}
|
2019-08-03 13:41:02 -04:00
|
|
|
|
2020-09-12 05:44:00 -04:00
|
|
|
virtual void die() override
|
2019-12-02 03:58:25 -05:00
|
|
|
{
|
2020-09-12 05:44:00 -04:00
|
|
|
// Override this function if you don't want your app to exit if it loses the connection.
|
|
|
|
exit(0);
|
2019-12-02 03:58:25 -05:00
|
|
|
}
|
|
|
|
};
|
2020-02-05 13:57:18 -05:00
|
|
|
|
|
|
|
}
|