File: cbor_options.hpp

package info (click to toggle)
jsoncons 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 17,584 kB
  • sloc: cpp: 136,382; sh: 33; makefile: 5
file content (104 lines) | stat: -rw-r--r-- 2,267 bytes parent folder | download
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
// Copyright 2013-2025 Daniel Parker
// Distributed under the Boost license, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

// See https://github.com/danielaparker/jsoncons for latest version

#ifndef JSONCONS_EXT_CBOR_CBOR_OPTIONS_HPP
#define JSONCONS_EXT_CBOR_CBOR_OPTIONS_HPP

#include <cwchar>

#include <jsoncons_ext/cbor/cbor_detail.hpp>

namespace jsoncons { namespace cbor {

class cbor_options;

class cbor_options_common
{
    friend class cbor_options;

    int max_nesting_depth_;
protected:
    virtual ~cbor_options_common() = default;

    cbor_options_common()
        : max_nesting_depth_(1024)
    {
    }

    cbor_options_common(const cbor_options_common&) = default;
    cbor_options_common& operator=(const cbor_options_common&) = default;
    cbor_options_common(cbor_options_common&&) = default;
    cbor_options_common& operator=(cbor_options_common&&) = default;
public:
    int max_nesting_depth() const 
    {
        return max_nesting_depth_;
    }
};

class cbor_decode_options : public virtual cbor_options_common
{
    friend class cbor_options;
public:
    cbor_decode_options()
    {
    }
};

class cbor_encode_options : public virtual cbor_options_common
{
    friend class cbor_options;

    bool use_stringref_;
    bool use_typed_arrays_;
public:
    cbor_encode_options()
        : use_stringref_(false),
          use_typed_arrays_(false)
    {
    }

    bool pack_strings() const 
    {
        return use_stringref_;
    }

    bool use_typed_arrays() const 
    {
        return use_typed_arrays_;
    }
};

class cbor_options final : public cbor_decode_options, public cbor_encode_options
{
public:
    using cbor_options_common::max_nesting_depth;
    using cbor_encode_options::pack_strings;
    using cbor_encode_options::use_typed_arrays;

    cbor_options& max_nesting_depth(int value)
    {
        this->max_nesting_depth_ = value;
        return *this;
    }

    cbor_options& pack_strings(bool value)
    {
        this->use_stringref_ = value;
        return *this;
    }

    cbor_options& use_typed_arrays(bool value)
    {
        this->use_typed_arrays_ = value;
        return *this;
    }
};

} // namespace cbor
} // namespace jsoncons

#endif