mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 18:24:45 -05:00
971b3645ef
This is an encapsulation of the common work done by all of our single-client IPC servers on startup: 1. Create a Core::LocalSocket, taking over an accepted fd. 2. Create an application-specific ClientConnection object, wrapping the socket. It's not a huge change in terms of lines saved, but I do feel that it improves expressiveness. :^)
43 lines
1.5 KiB
C++
43 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <LibIPC/ClientConnection.h>
|
|
#include <RequestServer/Forward.h>
|
|
#include <RequestServer/RequestClientEndpoint.h>
|
|
#include <RequestServer/RequestServerEndpoint.h>
|
|
|
|
namespace RequestServer {
|
|
|
|
class ClientConnection final
|
|
: public IPC::ClientConnection<RequestClientEndpoint, RequestServerEndpoint> {
|
|
C_OBJECT(ClientConnection);
|
|
|
|
public:
|
|
~ClientConnection() override;
|
|
|
|
virtual void die() override;
|
|
|
|
void did_receive_headers(Badge<Request>, Request&);
|
|
void did_finish_request(Badge<Request>, Request&, bool success);
|
|
void did_progress_request(Badge<Request>, Request&);
|
|
void did_request_certificates(Badge<Request>, Request&);
|
|
|
|
private:
|
|
explicit ClientConnection(NonnullRefPtr<Core::LocalSocket>);
|
|
|
|
virtual Messages::RequestServer::IsSupportedProtocolResponse is_supported_protocol(String const&) override;
|
|
virtual Messages::RequestServer::StartRequestResponse start_request(String const&, URL const&, IPC::Dictionary const&, ByteBuffer const&) override;
|
|
virtual Messages::RequestServer::StopRequestResponse stop_request(i32) override;
|
|
virtual Messages::RequestServer::SetCertificateResponse set_certificate(i32, String const&, String const&) override;
|
|
virtual void ensure_connection(URL const& url, ::RequestServer::CacheLevel const& cache_level) override;
|
|
|
|
HashMap<i32, OwnPtr<Request>> m_requests;
|
|
};
|
|
|
|
}
|