mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 20:28:11 +00:00

This patch adds ProtocolServer, a server that handles network requests on behalf of its clients. The first protocol implemented is HTTP. The idea here is to use a plug-in architecture where any number of protocols can be added and implemented without having to mess around with each client program that wants to use the protocol. A simple client API is provided through LibProtocol::Client. :^)
26 lines
1 KiB
C++
26 lines
1 KiB
C++
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <LibCore/CoreIPCServer.h>
|
|
#include <ProtocolServer/ProtocolServerEndpoint.h>
|
|
|
|
class Download;
|
|
|
|
class PSClientConnection final : public IPC::Server::ConnectionNG<ProtocolServerEndpoint>
|
|
, public ProtocolServerEndpoint {
|
|
C_OBJECT(PSClientConnection)
|
|
public:
|
|
explicit PSClientConnection(CLocalSocket&, int client_id);
|
|
~PSClientConnection() override;
|
|
|
|
virtual void die() override;
|
|
|
|
void did_finish_download(Badge<Download>, Download&, bool success);
|
|
void did_progress_download(Badge<Download>, Download&);
|
|
|
|
private:
|
|
virtual OwnPtr<ProtocolServer::GreetResponse> handle(const ProtocolServer::Greet&) override;
|
|
virtual OwnPtr<ProtocolServer::IsSupportedProtocolResponse> handle(const ProtocolServer::IsSupportedProtocol&) override;
|
|
virtual OwnPtr<ProtocolServer::StartDownloadResponse> handle(const ProtocolServer::StartDownload&) override;
|
|
virtual OwnPtr<ProtocolServer::StopDownloadResponse> handle(const ProtocolServer::StopDownload&) override;
|
|
};
|