mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03: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 :^)
39 lines
951 B
C++
39 lines
951 B
C++
/*
|
|
* Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com>
|
|
* Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteBuffer.h>
|
|
#include <AK/DeprecatedString.h>
|
|
#include <AK/Span.h>
|
|
#include <LibWebSocket/ConnectionInfo.h>
|
|
|
|
namespace WebSocket {
|
|
|
|
class WebSocketImpl : public RefCounted<WebSocketImpl> {
|
|
public:
|
|
virtual ~WebSocketImpl();
|
|
|
|
virtual void connect(ConnectionInfo const&) = 0;
|
|
virtual bool can_read_line() = 0;
|
|
virtual ErrorOr<DeprecatedString> read_line(size_t) = 0;
|
|
virtual ErrorOr<ByteBuffer> read(int max_size) = 0;
|
|
virtual bool send(ReadonlyBytes) = 0;
|
|
virtual bool eof() = 0;
|
|
virtual void discard_connection() = 0;
|
|
|
|
Function<void()> on_connected;
|
|
Function<void()> on_connection_error;
|
|
Function<void()> on_ready_to_read;
|
|
|
|
protected:
|
|
WebSocketImpl();
|
|
};
|
|
|
|
}
|