-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcookbook_class1_test.cpp
96 lines (84 loc) · 2.78 KB
/
cookbook_class1_test.cpp
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright (c) Darrell Wright
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/beached/daw_json_link
//
// See cookbook/class.md for the 1st example
//
#include "defines.h"
#include <daw/daw_read_file.h>
#include "daw/json/daw_json_link.h"
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
namespace daw::cookbook_class1 {
struct MyClass1 {
std::string member_0;
int member_1;
bool member_2;
};
bool operator==( MyClass1 const &lhs, MyClass1 const &rhs ) {
return std::tie( lhs.member_0, lhs.member_1, lhs.member_2 ) ==
std::tie( rhs.member_0, rhs.member_1, rhs.member_2 );
}
} // namespace daw::cookbook_class1
namespace daw::json {
template<>
struct json_data_contract<daw::cookbook_class1::MyClass1> {
#if defined( DAW_JSON_CNTTP_JSON_NAME )
using type =
json_member_list<json_string<"member0">, json_number<"member1", int>,
json_bool<"member2">>;
#else
static constexpr char const member0[] = "member0";
static constexpr char const member1[] = "member1";
static constexpr char const member2[] = "member2";
using type =
json_member_list<json_string<member0>, json_number<member1, int>,
json_bool<member2>>;
#endif
static inline auto
to_json_data( daw::cookbook_class1::MyClass1 const &value ) {
return std::forward_as_tuple( value.member_0, value.member_1,
value.member_2 );
}
};
} // namespace daw::json
int main( int argc, char **argv )
#if defined( DAW_USE_EXCEPTIONS )
try
#endif
{
if( argc <= 1 ) {
puts( "Must supply path to cookbook_class1.json file\n" );
exit( EXIT_FAILURE );
}
auto data = daw::read_file( argv[1] ).value( );
auto const cls = daw::json::from_json<daw::cookbook_class1::MyClass1>(
std::string_view( data.data( ), data.size( ) ) );
test_assert( cls.member_0 == "this is a test", "Unexpected value" );
test_assert( cls.member_1 == 314159, "Unexpected value" );
test_assert( cls.member_2 == true, "Unexpected value" );
std::string const str = daw::json::to_json( cls );
puts( str.c_str( ) );
auto const cls2 = daw::json::from_json<daw::cookbook_class1::MyClass1>(
std::string_view( str.data( ), str.size( ) ) );
test_assert( cls == cls2, "Unexpected round trip error" );
}
#if defined( DAW_USE_EXCEPTIONS )
catch( daw::json::json_exception const &jex ) {
std::cerr << "Exception thrown by parser: " << jex.reason( ) << '\n';
exit( 1 );
} catch( std::exception const &ex ) {
std::cerr << "Unknown exception thrown during testing: " << ex.what( )
<< '\n';
exit( 1 );
} catch( ... ) {
std::cerr << "Unknown exception thrown during testing\n";
throw;
}
#endif