summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWebSocket/Message.h
blob: 7192d466eed9ead79dd49634933c374c51543e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * Copyright (c) 2021, Dex♪ <dexes.ttp@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/ByteBuffer.h>
#include <AK/Optional.h>
#include <AK/String.h>

namespace WebSocket {

class Message {
public:
    explicit Message(String const& data)
        : m_is_text(true)
        , m_data(ByteBuffer::copy(data.bytes()).release_value()) // FIXME: Handle possible OOM situation.
    {
    }

    explicit Message(ByteBuffer data, bool is_text)
        : m_is_text(is_text)
        , m_data(move(data))
    {
    }

    explicit Message(ByteBuffer const&& data, bool is_text)
        : m_is_text(is_text)
        , m_data(move(data))
    {
    }

    bool is_text() const { return m_is_text; }
    ByteBuffer const& data() const { return m_data; }

private:
    bool m_is_text { false };
    ByteBuffer m_data;
};

}