forked from beached/daw_json_link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookbook_class_from_array1_test.cpp
87 lines (74 loc) · 2.16 KB
/
cookbook_class_from_array1_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
// 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_from_array.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>
#include <unordered_map>
namespace daw::cookbook_class_from_array1 {
struct Point {
double x;
double y;
};
bool operator!=( Point const &lhs, Point const &rhs ) {
return lhs.x != rhs.x and lhs.y != rhs.y;
}
} // namespace daw::cookbook_class_from_array1
namespace daw::json {
template<>
struct json_data_contract<daw::cookbook_class_from_array1::Point> {
using type = json_tuple_member_list<double, double>;
static inline auto
to_json_data( daw::cookbook_class_from_array1::Point const &p ) {
return std::forward_as_tuple( p.x, p.y );
}
};
} // 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_class_from_array1.json file\n" );
exit( EXIT_FAILURE );
}
auto data = daw::read_file( argv[1] ).value( );
puts( "Original\n" );
puts( data.data( ) );
auto const cls = daw::json::from_json<daw::cookbook_class_from_array1::Point>(
std::string_view( data.data( ), data.size( ) ) );
std::string const str = daw::json::to_json( cls );
puts( "Round trip\n" );
puts( str.c_str( ) );
auto const cls2 =
daw::json::from_json<daw::cookbook_class_from_array1::Point>(
std::string_view( str.data( ), str.size( ) ) );
if( cls != cls2 ) {
puts( "not exact same\n" );
}
}
#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