2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2019-07-17 09:52:12 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-09-12 06:44:00 -03:00
|
|
|
#include <LibIPC/Connection.h>
|
2019-07-17 09:52:12 -03:00
|
|
|
|
2020-02-05 15:57:18 -03:00
|
|
|
namespace IPC {
|
|
|
|
|
|
2020-09-12 06:44:00 -03:00
|
|
|
template<typename ClientEndpoint, typename ServerEndpoint>
|
2021-05-03 08:33:59 -03:00
|
|
|
class ServerConnection : public IPC::Connection<ClientEndpoint, ServerEndpoint>
|
|
|
|
|
, public ClientEndpoint::Stub
|
|
|
|
|
, public ServerEndpoint::template Proxy<ClientEndpoint> {
|
2019-12-02 05:58:25 -03:00
|
|
|
public:
|
2021-05-03 03:46:40 -03:00
|
|
|
using ClientStub = typename ClientEndpoint::Stub;
|
2021-06-20 16:10:54 -03:00
|
|
|
using IPCProxy = typename ServerEndpoint::template Proxy<ClientEndpoint>;
|
2021-05-03 03:46:40 -03:00
|
|
|
|
|
|
|
|
ServerConnection(ClientStub& local_endpoint, const StringView& address)
|
2020-09-12 06:44:00 -03:00
|
|
|
: Connection<ClientEndpoint, ServerEndpoint>(local_endpoint, Core::LocalSocket::construct())
|
2021-05-03 08:33:59 -03:00
|
|
|
, ServerEndpoint::template Proxy<ClientEndpoint>(*this, {})
|
2019-12-02 05:58:25 -03:00
|
|
|
{
|
|
|
|
|
// We want to rate-limit our clients
|
2020-09-12 06:44:00 -03:00
|
|
|
this->socket().set_blocking(true);
|
2019-07-17 13:28:30 -03:00
|
|
|
|
2020-09-12 06:44:00 -03:00
|
|
|
if (!this->socket().connect(Core::SocketAddress::local(address))) {
|
2020-05-02 10:51:39 -03:00
|
|
|
perror("connect");
|
2021-02-23 16:42:32 -03:00
|
|
|
VERIFY_NOT_REACHED();
|
2019-08-03 14:41:02 -03:00
|
|
|
}
|
2019-12-06 14:39:59 -03:00
|
|
|
|
2021-02-23 16:42:32 -03:00
|
|
|
VERIFY(this->socket().is_connected());
|
2019-12-02 05:58:25 -03:00
|
|
|
}
|
2019-08-03 14:41:02 -03:00
|
|
|
|
2020-09-12 06:44:00 -03:00
|
|
|
virtual void die() override
|
2019-12-02 05:58:25 -03:00
|
|
|
{
|
2020-09-12 06:44:00 -03:00
|
|
|
// Override this function if you don't want your app to exit if it loses the connection.
|
|
|
|
|
exit(0);
|
2019-12-02 05:58:25 -03:00
|
|
|
}
|
|
|
|
|
};
|
2020-02-05 15:57:18 -03:00
|
|
|
|
|
|
|
|
}
|