summaryrefslogtreecommitdiffstats
path: root/depends/libnbtplusplus/include/crtp_tag.h
blob: 82b4190776fb6b48227578c586cea73e1966ef70 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * libnbt++ - A library for the Minecraft Named Binary Tag format.
 * Copyright (C) 2013, 2015  ljfa-ag
 *
 * This file is part of libnbt++.
 *
 * libnbt++ is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * libnbt++ is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with libnbt++.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef CRTP_TAG_H_INCLUDED
#define CRTP_TAG_H_INCLUDED

#include "tag.h"
#include "nbt_visitor.h"
#include "make_unique.h"

#include "nbt++_export.h"

namespace nbt
{

namespace detail
{

    template<class Sub>
    class NBT___EXPORT crtp_tag : public tag
    {
    public:
        //Pure virtual destructor to make the class abstract
        virtual ~crtp_tag() noexcept = 0;

        tag_type get_type() const noexcept override final { return Sub::type; };

        std::unique_ptr<tag> clone() const& override final { return make_unique<Sub>(sub_this()); }
        std::unique_ptr<tag> move_clone() && override final { return make_unique<Sub>(std::move(sub_this())); }

        tag& assign(tag&& rhs) override final { return sub_this() = dynamic_cast<Sub&&>(rhs); }

        void accept(nbt_visitor& visitor) override final { visitor.visit(sub_this()); }
        void accept(const_nbt_visitor& visitor) const override final { visitor.visit(sub_this()); }

    private:
        bool equals(const tag& rhs) const override final { return sub_this() == static_cast<const Sub&>(rhs); }

        Sub& sub_this() { return static_cast<Sub&>(*this); }
        const Sub& sub_this() const { return static_cast<const Sub&>(*this); }
    };

    template<class Sub>
    crtp_tag<Sub>::~crtp_tag() noexcept {}

}

}

#endif // CRTP_TAG_H_INCLUDED