2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-07-17 14:52:12 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-09-12 11:44:00 +02:00
|
|
|
#include <LibIPC/Connection.h>
|
2019-07-17 14:52:12 +02:00
|
|
|
|
2020-02-05 19:57:18 +01:00
|
|
|
namespace IPC {
|
|
|
|
|
2020-09-12 11:44:00 +02:00
|
|
|
template<typename ClientEndpoint, typename ServerEndpoint>
|
2022-02-25 12:27:37 +02:00
|
|
|
class ConnectionToServer : public IPC::Connection<ClientEndpoint, ServerEndpoint>
|
2021-05-03 13:33:59 +02:00
|
|
|
, public ClientEndpoint::Stub
|
|
|
|
, public ServerEndpoint::template Proxy<ClientEndpoint> {
|
2019-12-02 09:58:25 +01:00
|
|
|
public:
|
2021-05-03 08:46:40 +02:00
|
|
|
using ClientStub = typename ClientEndpoint::Stub;
|
2021-06-20 21:10:54 +02:00
|
|
|
using IPCProxy = typename ServerEndpoint::template Proxy<ClientEndpoint>;
|
2021-05-03 08:46:40 +02:00
|
|
|
|
2025-04-08 22:01:46 +02:00
|
|
|
ConnectionToServer(ClientStub& local_endpoint, NonnullOwnPtr<Transport> transport)
|
2024-10-22 15:47:33 -06:00
|
|
|
: Connection<ClientEndpoint, ServerEndpoint>(local_endpoint, move(transport))
|
2021-05-03 13:33:59 +02:00
|
|
|
, ServerEndpoint::template Proxy<ClientEndpoint>(*this, {})
|
2019-12-02 09:58:25 +01:00
|
|
|
{
|
|
|
|
}
|
2019-08-03 19:41:02 +02:00
|
|
|
|
2020-09-12 11:44:00 +02:00
|
|
|
virtual void die() override
|
2019-12-02 09:58:25 +01:00
|
|
|
{
|
2020-09-12 11:44:00 +02:00
|
|
|
// Override this function if you don't want your app to exit if it loses the connection.
|
|
|
|
exit(0);
|
2019-12-02 09:58:25 +01:00
|
|
|
}
|
|
|
|
};
|
2020-02-05 19:57:18 +01:00
|
|
|
|
|
|
|
}
|