-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcookbook_dates3_test.cpp
123 lines (107 loc) · 3.78 KB
/
cookbook_dates3_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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// 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/dates.md for the 3rd example
//
#include "defines.h"
#include <daw/daw_read_file.h>
#include "daw/json/daw_json_link.h"
#include <daw/daw_fnv1a_hash.h>
#include <chrono>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
namespace daw::cookbook_dates3 {
using my_timepoint = std::chrono::time_point<std::chrono::system_clock,
std::chrono::milliseconds>;
my_timepoint seconds_since_epoch_to_tp( int64_t seconds ) {
return my_timepoint{ } + std::chrono::seconds( seconds );
}
struct MyClass3 {
std::string title;
unsigned id;
my_timepoint date_added;
my_timepoint last_modified;
MyClass3( std::string Title, unsigned Id, int64_t DateAdded,
int64_t LastModified )
: title( std::move( Title ) )
, id( Id )
, date_added( seconds_since_epoch_to_tp( DateAdded ) )
, last_modified( seconds_since_epoch_to_tp( LastModified ) ) {}
};
bool operator==( MyClass3 const &lhs, MyClass3 const &rhs ) {
return std::tie( lhs.title, lhs.id, lhs.date_added, lhs.last_modified ) ==
std::tie( rhs.title, rhs.id, rhs.date_added, rhs.last_modified );
}
} // namespace daw::cookbook_dates3
namespace daw::json {
template<>
struct json_data_contract<daw::cookbook_dates3::MyClass3> {
#if defined( DAW_JSON_CNTTP_JSON_NAME )
using type = json_member_list<
json_string<"title">, json_number<"id", unsigned>,
json_number<"dateAdded", int64_t,
options::number_opt( options::LiteralAsStringOpt::Always )>,
json_number<"lastModified", int64_t>>;
#else
static constexpr char const title[] = "title";
static constexpr char const id[] = "id";
static constexpr char const dateAdded[] = "dateAdded";
static constexpr char const lastModified[] = "lastModified";
using type = json_member_list<
json_string<title>, json_number<id, unsigned>,
json_number<dateAdded, int64_t,
options::number_opt( options::LiteralAsStringOpt::Always )>,
json_number<lastModified, int64_t>>;
#endif
static inline auto to_json_data( daw::cookbook_dates3::MyClass3 const &v ) {
auto const date_added =
std::chrono::floor<std::chrono::seconds>( v.date_added )
.time_since_epoch( )
.count( );
auto const last_modified =
std::chrono::floor<std::chrono::seconds>( v.last_modified )
.time_since_epoch( )
.count( );
return std::tuple( std::as_const( v.title ), v.id, date_added,
last_modified );
}
};
} // 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_dates3.json file\n" );
exit( EXIT_FAILURE );
}
auto data = daw::read_file( argv[1] ).value( );
auto const cls = daw::json::from_json<daw::cookbook_dates3::MyClass3>(
std::string_view( data.data( ), data.size( ) ) );
test_assert( cls.title == "The Title", "Unexpected value" );
std::string const str = daw::json::to_json( cls );
puts( str.c_str( ) );
auto const cls2 = daw::json::from_json<daw::cookbook_dates3::MyClass3>( str );
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