blob: 088d1969be468466854f8a76753085b3b188ae1c (
plain) (
blame)
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
|
/*
* This source code is released into the public domain.
*/
module;
#include <concepts>
#include <format>
#include <string>
#include <ucl.h>
export module nihil.ucl:type;
import :error;
namespace nihil::ucl {
// Our strongly-typed version of ::ucl_type.
export enum struct object_type {
object = UCL_OBJECT,
array = UCL_ARRAY,
integer = UCL_INT,
real = UCL_FLOAT,
string = UCL_STRING,
boolean = UCL_BOOLEAN,
time = UCL_TIME,
userdata = UCL_USERDATA,
null = UCL_NULL,
};
// Get the name of a type.
export auto str(object_type type) -> std::string_view;
// Concept of a UCL data type.
export template<typename T>
concept datatype = requires(T o) {
{ o.get_ucl_object() } -> std::convertible_to<::ucl_object_t const *>;
{ o.type() } -> std::same_as<object_type>;
{ T::ucl_type } -> std::convertible_to<object_type>;
};
// Exception thrown when a type assertion fails.
export struct type_mismatch : error {
type_mismatch(object_type expected_type, object_type actual_type);
// The type we expected.
auto expected_type(this type_mismatch const &self) -> object_type;
// The type we got.
auto actual_type(this type_mismatch const &self) -> object_type;
private:
object_type _expected_type;
object_type _actual_type;
};
} // namespace nihil::ucl
|