mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:54:58 +00:00

This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <LibIPC/ConnectionFromClient.h>
|
|
#include <LibWebSocket/WebSocket.h>
|
|
#include <WebSocket/WebSocketClientEndpoint.h>
|
|
#include <WebSocket/WebSocketServerEndpoint.h>
|
|
|
|
namespace WebSocket {
|
|
|
|
class ConnectionFromClient final
|
|
: public IPC::ConnectionFromClient<WebSocketClientEndpoint, WebSocketServerEndpoint> {
|
|
C_OBJECT(ConnectionFromClient);
|
|
|
|
public:
|
|
~ConnectionFromClient() override = default;
|
|
|
|
virtual void die() override;
|
|
|
|
private:
|
|
explicit ConnectionFromClient(NonnullOwnPtr<Core::LocalSocket>);
|
|
|
|
virtual Messages::WebSocketServer::ConnectResponse connect(URL const&, ByteString const&, Vector<ByteString> const&, Vector<ByteString> const&, HashMap<ByteString, ByteString> const&) override;
|
|
virtual Messages::WebSocketServer::ReadyStateResponse ready_state(i32) override;
|
|
virtual Messages::WebSocketServer::SubprotocolInUseResponse subprotocol_in_use(i32) override;
|
|
virtual void send(i32, bool, ByteBuffer const&) override;
|
|
virtual void close(i32, u16, ByteString const&) override;
|
|
virtual Messages::WebSocketServer::SetCertificateResponse set_certificate(i32, ByteString const&, ByteString const&) override;
|
|
|
|
void did_connect(i32);
|
|
void did_receive_message(i32, Message);
|
|
void did_error(i32, i32 message);
|
|
void did_close(i32, u16 code, ByteString reason, bool was_clean);
|
|
void did_request_certificates(i32);
|
|
|
|
i32 m_connection_ids { 0 };
|
|
HashMap<i32, RefPtr<WebSocket>> m_connections;
|
|
};
|
|
|
|
}
|