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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
//
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/boostorg/json
//
#include <boost/json/parse.hpp>
#include <boost/json/value.hpp>
#include <boost/json/value_to.hpp>
#include "test_suite.hpp"
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable: 4101)
# pragma warning(disable: 4189) // local variable is initialized but not referenced
#elif defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wunused"
# pragma clang diagnostic ignored "-Wunused-variable"
#elif defined(__GNUC__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wunused"
# pragma GCC diagnostic ignored "-Wunused-variable"
#endif
namespace boost {
namespace json {
//----------------------------------------------------------
static void set1() {
//----------------------------------------------------------
{
// tag::doc_using_numbers_1[]
// construction from int
value jv1 = 1;
assert( jv1.is_int64() );
// construction from unsigned int
value jv2 = 2u;
assert( jv2.is_uint64() );
// construction from double
value jv3 = 3.0;
assert( jv3.is_double() );
// end::doc_using_numbers_1[]
}
//----------------------------------------------------------
{
// tag::doc_using_numbers_2[]
value jv = 1;
assert( jv.is_int64() );
// jv.kind() != kind::uint64; throws
std::uint64_t r1 = jv.as_uint64();
// jv.kind() != kind::uint64; the behavior is undefined
std::uint64_t r2 = jv.get_uint64();
// if_double will always return nullptr, branch is not taken
if(double* d = jv.if_double())
assert( false );
// end::doc_using_numbers_2[]
};
//----------------------------------------------------------
{
// tag::doc_using_numbers_3[]
value jv = 1;
assert( jv.to_number< int >() == 1 );
// end::doc_using_numbers_3[]
}
//----------------------------------------------------------
try
{
// tag::doc_using_numbers_4[]
value jv1 = 404;
assert( jv1.is_int64() );
// ok, identity conversion
std::int64_t r1 = jv1.to_number< std::int64_t >( );
// loss of data, throws system_error
char r2 = jv1.to_number< char >();
// ok, no loss of data
double r3 = jv1.to_number< double >();
value jv2 = 1.23;
assert( jv1.is_double() );
// ok, same as static_cast<float>( jv2.get_double() )
float r4 = jv2.to_number< float >();
// not exact, throws system_error
int r5 = jv2.to_number< int >();
value jv3 = {1, 2, 3};
assert( ! jv3.is_number() );
// not a number, throws system_error
int r6 = jv3.to_number< int >();
// end::doc_using_numbers_4[]
}
catch(...)
{
}
//----------------------------------------------------------
{
// tag::doc_using_numbers_5[]
value jv = 10.5;
boost::system::error_code ec;
// ok, conversion is exact
float r1 = jv.to_number< float >( ec );
assert( ! ec );
// error, conversion is non-exact
int r2 = jv.to_number< int >( ec );
assert( ec == error::not_exact );
// end::doc_using_numbers_5[]
}
//----------------------------------------------------------
{
// tag::doc_using_numbers_6[]
value jv = parse("[-42, 100, 10.25, -299999999999999999998, 2e32]");
array ja = jv.as_array();
// represented by std::int64_t
assert( ja[0].is_int64() );
// represented by std::int64_t
assert( ja[1].is_int64() );
// contains decimal point, represented as double
assert( ja[2].is_double() );
// less than INT64_MIN, represented as double
assert( ja[3].is_double() );
// contains exponent, represented as double
assert( ja[4].is_double() );
// end::doc_using_numbers_6[]
}
} // set1
//----------------------------------------------------------
class doc_using_numbers_test
{
public:
void
run()
{
(void)&set1;
}
};
TEST_SUITE(doc_using_numbers_test, "boost.json.doc_using_numbers");
} // namespace json
} // namespace boost
|