mirror of
https://github.com/BlackMATov/meta.hpp.git
synced 2025-12-12 18:56:14 +07:00
103 lines
2.9 KiB
C++
103 lines
2.9 KiB
C++
/*******************************************************************************
|
|
* This file is part of the "https://github.com/blackmatov/meta.hpp"
|
|
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
|
* Copyright (C) 2021-2025, by Matvey Cherevko (blackmatov@gmail.com)
|
|
******************************************************************************/
|
|
|
|
#include <meta.hpp/meta_all.hpp>
|
|
|
|
#include <doctest/doctest.h>
|
|
#include <fmt/core.h>
|
|
|
|
namespace
|
|
{
|
|
class shape {
|
|
META_HPP_ENABLE_POLY_INFO()
|
|
public:
|
|
shape() = default;
|
|
shape(const shape&) = default;
|
|
virtual ~shape() = default;
|
|
|
|
virtual int get_area() const = 0;
|
|
};
|
|
|
|
class rectangle : public shape {
|
|
META_HPP_ENABLE_POLY_INFO(shape)
|
|
public:
|
|
explicit rectangle(int width, int height)
|
|
: width_{width}
|
|
, height_{height} {}
|
|
|
|
int get_width() const {
|
|
return width_;
|
|
}
|
|
|
|
int get_height() const {
|
|
return height_;
|
|
}
|
|
|
|
int get_area() const override {
|
|
return width_ * height_;
|
|
}
|
|
private:
|
|
int width_{};
|
|
int height_{};
|
|
};
|
|
}
|
|
|
|
TEST_CASE("meta/meta_examples/uvalue/bind") {
|
|
namespace meta = meta_hpp;
|
|
|
|
// 'shape' class type registration
|
|
meta::class_<shape>()
|
|
.method_("get_area", &shape::get_area);
|
|
|
|
// 'rectangle' class type registration
|
|
meta::class_<rectangle>()
|
|
.constructor_<int, int>()
|
|
.method_("get_width", &rectangle::get_width)
|
|
.method_("get_height", &rectangle::get_height);
|
|
}
|
|
|
|
TEST_CASE("meta/meta_examples/uvalue/usage") {
|
|
namespace meta = meta_hpp;
|
|
|
|
// the 'uvalue' class allows to store any typed value inside
|
|
// it's widely used as return value types and as containers for storing metadata
|
|
|
|
meta::uvalue val{42};
|
|
CHECK(val.get_type() == meta::resolve_type<int>());
|
|
|
|
// we can get a reference to the stored data and even change it
|
|
val.as<int>() = 21;
|
|
CHECK(val.as<int>() == 21);
|
|
|
|
// uvalue can be copied, assigned, and moved
|
|
val = rectangle{10, 20};
|
|
CHECK(val.get_type() == meta::resolve_type<rectangle>());
|
|
|
|
// also, it supports upcasting for registered types
|
|
CHECK(val.as<shape>().get_area() == 200);
|
|
|
|
// an exception will be thrown if we try to get a wrong type
|
|
CHECK_THROWS(std::ignore = val.as<int>());
|
|
|
|
// but we can use try_as for safe access
|
|
CHECK(val.try_as<shape>());
|
|
if ( shape* s = val.try_as<shape>() ) {
|
|
CHECK(s->get_area() == 200);
|
|
}
|
|
|
|
// also, upcasting is supported for pointers
|
|
rectangle rect{3, 5};
|
|
val = ▭
|
|
CHECK(val.as<shape*>()->get_area() == 15);
|
|
CHECK(val.get_type() == meta::resolve_type<rectangle*>());
|
|
|
|
// and we can use try_as for pointers too
|
|
CHECK(val.try_as<shape*>());
|
|
if ( shape* s = val.try_as<shape*>() ) {
|
|
CHECK(s->get_area() == 15);
|
|
}
|
|
}
|