mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2022, Dex♪ <dexes.ttp@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <AK/Weakable.h>
|
|
#include <LibWeb/WebSockets/WebSocket.h>
|
|
|
|
namespace Protocol {
|
|
class WebSocket;
|
|
class WebSocketClient;
|
|
};
|
|
|
|
namespace WebView {
|
|
|
|
class WebSocketClientSocketAdapter
|
|
: public Web::WebSockets::WebSocketClientSocket
|
|
, public Weakable<WebSocketClientSocketAdapter> {
|
|
public:
|
|
static RefPtr<WebSocketClientSocketAdapter> create(NonnullRefPtr<Protocol::WebSocket>);
|
|
virtual ~WebSocketClientSocketAdapter() override;
|
|
|
|
virtual Web::WebSockets::WebSocket::ReadyState ready_state() override;
|
|
|
|
virtual void send(ByteBuffer binary_or_text_message, bool is_text) override;
|
|
virtual void send(StringView text_message) override;
|
|
virtual void close(u16 code = 1005, DeprecatedString reason = {}) override;
|
|
|
|
private:
|
|
WebSocketClientSocketAdapter(NonnullRefPtr<Protocol::WebSocket>);
|
|
|
|
NonnullRefPtr<Protocol::WebSocket> m_websocket;
|
|
};
|
|
|
|
class WebSocketClientManagerAdapter : public Web::WebSockets::WebSocketClientManager {
|
|
public:
|
|
static ErrorOr<NonnullRefPtr<WebSocketClientManagerAdapter>> try_create();
|
|
|
|
virtual ~WebSocketClientManagerAdapter() override;
|
|
|
|
virtual RefPtr<Web::WebSockets::WebSocketClientSocket> connect(const AK::URL&, DeprecatedString const& origin) override;
|
|
|
|
private:
|
|
WebSocketClientManagerAdapter(NonnullRefPtr<Protocol::WebSocketClient>);
|
|
|
|
NonnullRefPtr<Protocol::WebSocketClient> m_websocket_client;
|
|
};
|
|
|
|
}
|