File: bson_options.hpp

package info (click to toggle)
jsoncons 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 18,276 kB
  • sloc: cpp: 143,266; sh: 34; makefile: 8
file content (75 lines) | stat: -rw-r--r-- 1,961 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
// 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_BSON_BSON_OPTIONS_HPP
#define JSONCONS_EXT_BSON_BSON_OPTIONS_HPP

#include <cwchar>

namespace jsoncons { 
namespace bson {

class bson_options;

class bson_options_common
{
    friend class bson_options;

    int max_nesting_depth_{1024};
protected:
    bson_options_common() = default;
    bson_options_common(const bson_options_common&) = default;
    virtual ~bson_options_common() = default;

    bson_options_common& operator=(const bson_options_common&) = default;

public:
    int max_nesting_depth() const 
    {
        return max_nesting_depth_;
    }
};

class bson_decode_options : public virtual bson_options_common
{
    friend class bson_options;
public:
    bson_decode_options() = default;
    bson_decode_options(const bson_decode_options& other) = default;
protected:
    bson_decode_options& operator=(const bson_decode_options& other) = default;
};

class bson_encode_options : public virtual bson_options_common
{
    friend class bson_options;
public:
    bson_encode_options() = default;
    bson_encode_options(const bson_encode_options& other) = default;
protected:
    bson_encode_options& operator=(const bson_encode_options& other) = default;
};

class bson_options final : public bson_decode_options, public bson_encode_options
{
public:
    using bson_options_common::max_nesting_depth;

    bson_options() = default;
    bson_options(const bson_options& other) = default;
    bson_options& operator=(const bson_options& other) = default;

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

} // namespace bson
} // namespace jsoncons

#endif // JSONCONS_EXT_BSON_BSON_OPTIONS_HPP