summaryrefslogtreecommitdiff
path: root/Userland/Services/LookupServer/DNSName.h
blob: 17fbe7a55778f31ac7f46074103084f79efb5452 (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
44
45
46
47
48
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2021, Sergey Bugaev <bugaevc@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Forward.h>
#include <AK/String.h>

namespace LookupServer {

class DNSName {
public:
    DNSName(const String&);

    static DNSName parse(const u8* data, size_t& offset, size_t max_offset, size_t recursion_level = 0);

    size_t serialized_size() const;
    const String& as_string() const { return m_name; }

    void randomize_case();

    bool operator==(const DNSName& other) const { return Traits::equals(*this, other); }

    class Traits : public AK::Traits<DNSName> {
    public:
        static unsigned hash(const DNSName& name);
        static bool equals(const DNSName&, const DNSName&);
    };

private:
    String m_name;
};

OutputStream& operator<<(OutputStream& stream, const DNSName&);

}

template<>
struct AK::Formatter<LookupServer::DNSName> : Formatter<StringView> {
    void format(FormatBuilder& builder, const LookupServer::DNSName& value)
    {
        return Formatter<StringView>::format(builder, value.as_string());
    }
};