isotree 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (118) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/LICENSE.txt +2 -2
  4. data/README.md +22 -1
  5. data/ext/isotree/ext.cpp +26 -0
  6. data/ext/isotree/extconf.rb +3 -3
  7. data/lib/isotree.rb +1 -0
  8. data/lib/isotree/isolation_forest.rb +86 -1
  9. data/lib/isotree/version.rb +1 -1
  10. data/vendor/cereal/LICENSE +24 -0
  11. data/vendor/cereal/README.md +85 -0
  12. data/vendor/cereal/include/cereal/access.hpp +351 -0
  13. data/vendor/cereal/include/cereal/archives/adapters.hpp +163 -0
  14. data/vendor/cereal/include/cereal/archives/binary.hpp +169 -0
  15. data/vendor/cereal/include/cereal/archives/json.hpp +1019 -0
  16. data/vendor/cereal/include/cereal/archives/portable_binary.hpp +334 -0
  17. data/vendor/cereal/include/cereal/archives/xml.hpp +956 -0
  18. data/vendor/cereal/include/cereal/cereal.hpp +1089 -0
  19. data/vendor/cereal/include/cereal/details/helpers.hpp +422 -0
  20. data/vendor/cereal/include/cereal/details/polymorphic_impl.hpp +796 -0
  21. data/vendor/cereal/include/cereal/details/polymorphic_impl_fwd.hpp +65 -0
  22. data/vendor/cereal/include/cereal/details/static_object.hpp +127 -0
  23. data/vendor/cereal/include/cereal/details/traits.hpp +1411 -0
  24. data/vendor/cereal/include/cereal/details/util.hpp +84 -0
  25. data/vendor/cereal/include/cereal/external/base64.hpp +134 -0
  26. data/vendor/cereal/include/cereal/external/rapidjson/allocators.h +284 -0
  27. data/vendor/cereal/include/cereal/external/rapidjson/cursorstreamwrapper.h +78 -0
  28. data/vendor/cereal/include/cereal/external/rapidjson/document.h +2652 -0
  29. data/vendor/cereal/include/cereal/external/rapidjson/encodedstream.h +299 -0
  30. data/vendor/cereal/include/cereal/external/rapidjson/encodings.h +716 -0
  31. data/vendor/cereal/include/cereal/external/rapidjson/error/en.h +74 -0
  32. data/vendor/cereal/include/cereal/external/rapidjson/error/error.h +161 -0
  33. data/vendor/cereal/include/cereal/external/rapidjson/filereadstream.h +99 -0
  34. data/vendor/cereal/include/cereal/external/rapidjson/filewritestream.h +104 -0
  35. data/vendor/cereal/include/cereal/external/rapidjson/fwd.h +151 -0
  36. data/vendor/cereal/include/cereal/external/rapidjson/internal/biginteger.h +290 -0
  37. data/vendor/cereal/include/cereal/external/rapidjson/internal/diyfp.h +271 -0
  38. data/vendor/cereal/include/cereal/external/rapidjson/internal/dtoa.h +245 -0
  39. data/vendor/cereal/include/cereal/external/rapidjson/internal/ieee754.h +78 -0
  40. data/vendor/cereal/include/cereal/external/rapidjson/internal/itoa.h +308 -0
  41. data/vendor/cereal/include/cereal/external/rapidjson/internal/meta.h +186 -0
  42. data/vendor/cereal/include/cereal/external/rapidjson/internal/pow10.h +55 -0
  43. data/vendor/cereal/include/cereal/external/rapidjson/internal/regex.h +740 -0
  44. data/vendor/cereal/include/cereal/external/rapidjson/internal/stack.h +232 -0
  45. data/vendor/cereal/include/cereal/external/rapidjson/internal/strfunc.h +69 -0
  46. data/vendor/cereal/include/cereal/external/rapidjson/internal/strtod.h +290 -0
  47. data/vendor/cereal/include/cereal/external/rapidjson/internal/swap.h +46 -0
  48. data/vendor/cereal/include/cereal/external/rapidjson/istreamwrapper.h +128 -0
  49. data/vendor/cereal/include/cereal/external/rapidjson/memorybuffer.h +70 -0
  50. data/vendor/cereal/include/cereal/external/rapidjson/memorystream.h +71 -0
  51. data/vendor/cereal/include/cereal/external/rapidjson/msinttypes/inttypes.h +316 -0
  52. data/vendor/cereal/include/cereal/external/rapidjson/msinttypes/stdint.h +300 -0
  53. data/vendor/cereal/include/cereal/external/rapidjson/ostreamwrapper.h +81 -0
  54. data/vendor/cereal/include/cereal/external/rapidjson/pointer.h +1414 -0
  55. data/vendor/cereal/include/cereal/external/rapidjson/prettywriter.h +277 -0
  56. data/vendor/cereal/include/cereal/external/rapidjson/rapidjson.h +656 -0
  57. data/vendor/cereal/include/cereal/external/rapidjson/reader.h +2230 -0
  58. data/vendor/cereal/include/cereal/external/rapidjson/schema.h +2497 -0
  59. data/vendor/cereal/include/cereal/external/rapidjson/stream.h +223 -0
  60. data/vendor/cereal/include/cereal/external/rapidjson/stringbuffer.h +121 -0
  61. data/vendor/cereal/include/cereal/external/rapidjson/writer.h +709 -0
  62. data/vendor/cereal/include/cereal/external/rapidxml/license.txt +52 -0
  63. data/vendor/cereal/include/cereal/external/rapidxml/manual.html +406 -0
  64. data/vendor/cereal/include/cereal/external/rapidxml/rapidxml.hpp +2624 -0
  65. data/vendor/cereal/include/cereal/external/rapidxml/rapidxml_iterators.hpp +175 -0
  66. data/vendor/cereal/include/cereal/external/rapidxml/rapidxml_print.hpp +428 -0
  67. data/vendor/cereal/include/cereal/external/rapidxml/rapidxml_utils.hpp +123 -0
  68. data/vendor/cereal/include/cereal/macros.hpp +154 -0
  69. data/vendor/cereal/include/cereal/specialize.hpp +139 -0
  70. data/vendor/cereal/include/cereal/types/array.hpp +79 -0
  71. data/vendor/cereal/include/cereal/types/atomic.hpp +55 -0
  72. data/vendor/cereal/include/cereal/types/base_class.hpp +203 -0
  73. data/vendor/cereal/include/cereal/types/bitset.hpp +176 -0
  74. data/vendor/cereal/include/cereal/types/boost_variant.hpp +164 -0
  75. data/vendor/cereal/include/cereal/types/chrono.hpp +72 -0
  76. data/vendor/cereal/include/cereal/types/common.hpp +129 -0
  77. data/vendor/cereal/include/cereal/types/complex.hpp +56 -0
  78. data/vendor/cereal/include/cereal/types/concepts/pair_associative_container.hpp +73 -0
  79. data/vendor/cereal/include/cereal/types/deque.hpp +62 -0
  80. data/vendor/cereal/include/cereal/types/forward_list.hpp +68 -0
  81. data/vendor/cereal/include/cereal/types/functional.hpp +43 -0
  82. data/vendor/cereal/include/cereal/types/list.hpp +62 -0
  83. data/vendor/cereal/include/cereal/types/map.hpp +36 -0
  84. data/vendor/cereal/include/cereal/types/memory.hpp +425 -0
  85. data/vendor/cereal/include/cereal/types/optional.hpp +66 -0
  86. data/vendor/cereal/include/cereal/types/polymorphic.hpp +483 -0
  87. data/vendor/cereal/include/cereal/types/queue.hpp +132 -0
  88. data/vendor/cereal/include/cereal/types/set.hpp +103 -0
  89. data/vendor/cereal/include/cereal/types/stack.hpp +76 -0
  90. data/vendor/cereal/include/cereal/types/string.hpp +61 -0
  91. data/vendor/cereal/include/cereal/types/tuple.hpp +123 -0
  92. data/vendor/cereal/include/cereal/types/unordered_map.hpp +36 -0
  93. data/vendor/cereal/include/cereal/types/unordered_set.hpp +99 -0
  94. data/vendor/cereal/include/cereal/types/utility.hpp +47 -0
  95. data/vendor/cereal/include/cereal/types/valarray.hpp +89 -0
  96. data/vendor/cereal/include/cereal/types/variant.hpp +109 -0
  97. data/vendor/cereal/include/cereal/types/vector.hpp +112 -0
  98. data/vendor/cereal/include/cereal/version.hpp +52 -0
  99. data/vendor/isotree/LICENSE +1 -1
  100. data/vendor/isotree/README.md +2 -1
  101. data/vendor/isotree/src/RcppExports.cpp +44 -4
  102. data/vendor/isotree/src/Rwrapper.cpp +141 -51
  103. data/vendor/isotree/src/crit.cpp +1 -1
  104. data/vendor/isotree/src/dealloc.cpp +1 -1
  105. data/vendor/isotree/src/dist.cpp +6 -6
  106. data/vendor/isotree/src/extended.cpp +5 -5
  107. data/vendor/isotree/src/fit_model.cpp +30 -19
  108. data/vendor/isotree/src/helpers_iforest.cpp +26 -11
  109. data/vendor/isotree/src/impute.cpp +7 -7
  110. data/vendor/isotree/src/isoforest.cpp +7 -7
  111. data/vendor/isotree/src/isotree.hpp +27 -5
  112. data/vendor/isotree/src/merge_models.cpp +1 -1
  113. data/vendor/isotree/src/mult.cpp +1 -1
  114. data/vendor/isotree/src/predict.cpp +20 -16
  115. data/vendor/isotree/src/serialize.cpp +1 -1
  116. data/vendor/isotree/src/sql.cpp +545 -0
  117. data/vendor/isotree/src/utils.cpp +36 -44
  118. metadata +98 -92
@@ -0,0 +1,36 @@
1
+ /*! \file unordered_map.hpp
2
+ \brief Support for types found in \<unordered_map\>
3
+ \ingroup STLSupport */
4
+ /*
5
+ Copyright (c) 2014, Randolph Voorhies, Shane Grant
6
+ All rights reserved.
7
+
8
+ Redistribution and use in source and binary forms, with or without
9
+ modification, are permitted provided that the following conditions are met:
10
+ * Redistributions of source code must retain the above copyright
11
+ notice, this list of conditions and the following disclaimer.
12
+ * Redistributions in binary form must reproduce the above copyright
13
+ notice, this list of conditions and the following disclaimer in the
14
+ documentation and/or other materials provided with the distribution.
15
+ * Neither the name of cereal nor the
16
+ names of its contributors may be used to endorse or promote products
17
+ derived from this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY
23
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
+ */
30
+ #ifndef CEREAL_TYPES_UNORDERED_MAP_HPP_
31
+ #define CEREAL_TYPES_UNORDERED_MAP_HPP_
32
+
33
+ #include "cereal/types/concepts/pair_associative_container.hpp"
34
+ #include <unordered_map>
35
+
36
+ #endif // CEREAL_TYPES_UNORDERED_MAP_HPP_
@@ -0,0 +1,99 @@
1
+ /*! \file unordered_set.hpp
2
+ \brief Support for types found in \<unordered_set\>
3
+ \ingroup STLSupport */
4
+ /*
5
+ Copyright (c) 2014, Randolph Voorhies, Shane Grant
6
+ All rights reserved.
7
+
8
+ Redistribution and use in source and binary forms, with or without
9
+ modification, are permitted provided that the following conditions are met:
10
+ * Redistributions of source code must retain the above copyright
11
+ notice, this list of conditions and the following disclaimer.
12
+ * Redistributions in binary form must reproduce the above copyright
13
+ notice, this list of conditions and the following disclaimer in the
14
+ documentation and/or other materials provided with the distribution.
15
+ * Neither the name of cereal nor the
16
+ names of its contributors may be used to endorse or promote products
17
+ derived from this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY
23
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
+ */
30
+ #ifndef CEREAL_TYPES_UNORDERED_SET_HPP_
31
+ #define CEREAL_TYPES_UNORDERED_SET_HPP_
32
+
33
+ #include "cereal/cereal.hpp"
34
+ #include <unordered_set>
35
+
36
+ namespace cereal
37
+ {
38
+ namespace unordered_set_detail
39
+ {
40
+ //! @internal
41
+ template <class Archive, class SetT> inline
42
+ void save( Archive & ar, SetT const & set )
43
+ {
44
+ ar( make_size_tag( static_cast<size_type>(set.size()) ) );
45
+
46
+ for( const auto & i : set )
47
+ ar( i );
48
+ }
49
+
50
+ //! @internal
51
+ template <class Archive, class SetT> inline
52
+ void load( Archive & ar, SetT & set )
53
+ {
54
+ size_type size;
55
+ ar( make_size_tag( size ) );
56
+
57
+ set.clear();
58
+ set.reserve( static_cast<std::size_t>( size ) );
59
+
60
+ for( size_type i = 0; i < size; ++i )
61
+ {
62
+ typename SetT::key_type key;
63
+
64
+ ar( key );
65
+ set.emplace( std::move( key ) );
66
+ }
67
+ }
68
+ }
69
+
70
+ //! Saving for std::unordered_set
71
+ template <class Archive, class K, class H, class KE, class A> inline
72
+ void CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::unordered_set<K, H, KE, A> const & unordered_set )
73
+ {
74
+ unordered_set_detail::save( ar, unordered_set );
75
+ }
76
+
77
+ //! Loading for std::unordered_set
78
+ template <class Archive, class K, class H, class KE, class A> inline
79
+ void CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::unordered_set<K, H, KE, A> & unordered_set )
80
+ {
81
+ unordered_set_detail::load( ar, unordered_set );
82
+ }
83
+
84
+ //! Saving for std::unordered_multiset
85
+ template <class Archive, class K, class H, class KE, class A> inline
86
+ void CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::unordered_multiset<K, H, KE, A> const & unordered_multiset )
87
+ {
88
+ unordered_set_detail::save( ar, unordered_multiset );
89
+ }
90
+
91
+ //! Loading for std::unordered_multiset
92
+ template <class Archive, class K, class H, class KE, class A> inline
93
+ void CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::unordered_multiset<K, H, KE, A> & unordered_multiset )
94
+ {
95
+ unordered_set_detail::load( ar, unordered_multiset );
96
+ }
97
+ } // namespace cereal
98
+
99
+ #endif // CEREAL_TYPES_UNORDERED_SET_HPP_
@@ -0,0 +1,47 @@
1
+ /*! \file utility.hpp
2
+ \brief Support for types found in \<utility\>
3
+ \ingroup STLSupport */
4
+ /*
5
+ Copyright (c) 2014, Randolph Voorhies, Shane Grant
6
+ All rights reserved.
7
+
8
+ Redistribution and use in source and binary forms, with or without
9
+ modification, are permitted provided that the following conditions are met:
10
+ * Redistributions of source code must retain the above copyright
11
+ notice, this list of conditions and the following disclaimer.
12
+ * Redistributions in binary form must reproduce the above copyright
13
+ notice, this list of conditions and the following disclaimer in the
14
+ documentation and/or other materials provided with the distribution.
15
+ * Neither the name of cereal nor the
16
+ names of its contributors may be used to endorse or promote products
17
+ derived from this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY
23
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
+ */
30
+ #ifndef CEREAL_TYPES_UTILITY_HPP_
31
+ #define CEREAL_TYPES_UTILITY_HPP_
32
+
33
+ #include "cereal/cereal.hpp"
34
+ #include <utility>
35
+
36
+ namespace cereal
37
+ {
38
+ //! Serializing for std::pair
39
+ template <class Archive, class T1, class T2> inline
40
+ void CEREAL_SERIALIZE_FUNCTION_NAME( Archive & ar, std::pair<T1, T2> & pair )
41
+ {
42
+ ar( CEREAL_NVP_("first", pair.first),
43
+ CEREAL_NVP_("second", pair.second) );
44
+ }
45
+ } // namespace cereal
46
+
47
+ #endif // CEREAL_TYPES_UTILITY_HPP_
@@ -0,0 +1,89 @@
1
+ /*! \file valarray.hpp
2
+ \brief Support for types found in \<valarray\>
3
+ \ingroup STLSupport */
4
+
5
+ /*
6
+ Copyright (c) 2014, Randolph Voorhies, Shane Grant
7
+ All rights reserved.
8
+
9
+ Redistribution and use in source and binary forms, with or without
10
+ modification, are permitted provided that the following conditions are met:
11
+ * Redistributions of source code must retain the above copyright
12
+ notice, this list of conditions and the following disclaimer.
13
+ * Redistributions in binary form must reproduce the above copyright
14
+ notice, this list of conditions and the following disclaimer in the
15
+ documentation and/or other materials provided with the distribution.
16
+ * Neither the name of cereal nor the
17
+ names of its contributors may be used to endorse or promote products
18
+ derived from this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
21
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY
24
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
+ */
31
+
32
+ #ifndef CEREAL_TYPES_VALARRAY_HPP_
33
+ #define CEREAL_TYPES_VALARRAY_HPP_
34
+
35
+ #include "cereal/cereal.hpp"
36
+ #include <valarray>
37
+
38
+ namespace cereal
39
+ {
40
+ //! Saving for std::valarray arithmetic types, using binary serialization, if supported
41
+ template <class Archive, class T> inline
42
+ typename std::enable_if<traits::is_output_serializable<BinaryData<T>, Archive>::value
43
+ && std::is_arithmetic<T>::value, void>::type
44
+ CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::valarray<T> const & valarray )
45
+ {
46
+ ar( make_size_tag( static_cast<size_type>(valarray.size()) ) ); // number of elements
47
+ ar( binary_data( &valarray[0], valarray.size() * sizeof(T) ) ); // &valarray[0] ok since guaranteed contiguous
48
+ }
49
+
50
+ //! Loading for std::valarray arithmetic types, using binary serialization, if supported
51
+ template <class Archive, class T> inline
52
+ typename std::enable_if<traits::is_input_serializable<BinaryData<T>, Archive>::value
53
+ && std::is_arithmetic<T>::value, void>::type
54
+ CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::valarray<T> & valarray )
55
+ {
56
+ size_type valarraySize;
57
+ ar( make_size_tag( valarraySize ) );
58
+
59
+ valarray.resize( static_cast<std::size_t>( valarraySize ) );
60
+ ar( binary_data( &valarray[0], static_cast<std::size_t>( valarraySize ) * sizeof(T) ) );
61
+ }
62
+
63
+ //! Saving for std::valarray all other types
64
+ template <class Archive, class T> inline
65
+ typename std::enable_if<!traits::is_output_serializable<BinaryData<T>, Archive>::value
66
+ || !std::is_arithmetic<T>::value, void>::type
67
+ CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::valarray<T> const & valarray )
68
+ {
69
+ ar( make_size_tag( static_cast<size_type>(valarray.size()) ) ); // number of elements
70
+ for(auto && v : valarray)
71
+ ar(v);
72
+ }
73
+
74
+ //! Loading for std::valarray all other types
75
+ template <class Archive, class T> inline
76
+ typename std::enable_if<!traits::is_input_serializable<BinaryData<T>, Archive>::value
77
+ || !std::is_arithmetic<T>::value, void>::type
78
+ CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::valarray<T> & valarray )
79
+ {
80
+ size_type valarraySize;
81
+ ar( make_size_tag( valarraySize ) );
82
+
83
+ valarray.resize( static_cast<size_t>( valarraySize ) );
84
+ for(auto && v : valarray)
85
+ ar(v);
86
+ }
87
+ } // namespace cereal
88
+
89
+ #endif // CEREAL_TYPES_VALARRAY_HPP_
@@ -0,0 +1,109 @@
1
+ /*! \file variant.hpp
2
+ \brief Support for std::variant
3
+ \ingroup STLSupport */
4
+ /*
5
+ Copyright (c) 2014, 2017, Randolph Voorhies, Shane Grant, Juan Pedro
6
+ Bolivar Puente. All rights reserved.
7
+
8
+ Redistribution and use in source and binary forms, with or without
9
+ modification, are permitted provided that the following conditions are met:
10
+ * Redistributions of source code must retain the above copyright
11
+ notice, this list of conditions and the following disclaimer.
12
+ * Redistributions in binary form must reproduce the above copyright
13
+ notice, this list of conditions and the following disclaimer in the
14
+ documentation and/or other materials provided with the distribution.
15
+ * Neither the name of cereal nor the
16
+ names of its contributors may be used to endorse or promote products
17
+ derived from this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY
23
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
+ */
30
+ #ifndef CEREAL_TYPES_STD_VARIANT_HPP_
31
+ #define CEREAL_TYPES_STD_VARIANT_HPP_
32
+
33
+ #include "cereal/cereal.hpp"
34
+ #include <variant>
35
+ #include <cstdint>
36
+
37
+ namespace cereal
38
+ {
39
+ namespace variant_detail
40
+ {
41
+ //! @internal
42
+ template <class Archive>
43
+ struct variant_save_visitor
44
+ {
45
+ variant_save_visitor(Archive & ar_) : ar(ar_) {}
46
+
47
+ template<class T>
48
+ void operator()(T const & value) const
49
+ {
50
+ ar( CEREAL_NVP_("data", value) );
51
+ }
52
+
53
+ Archive & ar;
54
+ };
55
+
56
+ //! @internal
57
+ template<int N, class Variant, class ... Args, class Archive>
58
+ typename std::enable_if<N == std::variant_size_v<Variant>, void>::type
59
+ load_variant(Archive & /*ar*/, int /*target*/, Variant & /*variant*/)
60
+ {
61
+ throw ::cereal::Exception("Error traversing variant during load");
62
+ }
63
+ //! @internal
64
+ template<int N, class Variant, class H, class ... T, class Archive>
65
+ typename std::enable_if<N < std::variant_size_v<Variant>, void>::type
66
+ load_variant(Archive & ar, int target, Variant & variant)
67
+ {
68
+ if(N == target)
69
+ {
70
+ H value;
71
+ ar( CEREAL_NVP_("data", value) );
72
+ variant = std::move(value);
73
+ }
74
+ else
75
+ load_variant<N+1, Variant, T...>(ar, target, variant);
76
+ }
77
+
78
+ } // namespace variant_detail
79
+
80
+ //! Saving for std::variant
81
+ template <class Archive, typename VariantType1, typename... VariantTypes> inline
82
+ void CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::variant<VariantType1, VariantTypes...> const & variant )
83
+ {
84
+ std::int32_t index = static_cast<std::int32_t>(variant.index());
85
+ ar( CEREAL_NVP_("index", index) );
86
+ variant_detail::variant_save_visitor<Archive> visitor(ar);
87
+ std::visit(visitor, variant);
88
+ }
89
+
90
+ //! Loading for std::variant
91
+ template <class Archive, typename... VariantTypes> inline
92
+ void CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::variant<VariantTypes...> & variant )
93
+ {
94
+ using variant_t = typename std::variant<VariantTypes...>;
95
+
96
+ std::int32_t index;
97
+ ar( CEREAL_NVP_("index", index) );
98
+ if(index >= static_cast<std::int32_t>(std::variant_size_v<variant_t>))
99
+ throw Exception("Invalid 'index' selector when deserializing std::variant");
100
+
101
+ variant_detail::load_variant<0, variant_t, VariantTypes...>(ar, index, variant);
102
+ }
103
+
104
+ //! Serializing a std::monostate
105
+ template <class Archive>
106
+ void CEREAL_SERIALIZE_FUNCTION_NAME( Archive &, std::monostate const & ) {}
107
+ } // namespace cereal
108
+
109
+ #endif // CEREAL_TYPES_STD_VARIANT_HPP_
@@ -0,0 +1,112 @@
1
+ /*! \file vector.hpp
2
+ \brief Support for types found in \<vector\>
3
+ \ingroup STLSupport */
4
+ /*
5
+ Copyright (c) 2014, Randolph Voorhies, Shane Grant
6
+ All rights reserved.
7
+
8
+ Redistribution and use in source and binary forms, with or without
9
+ modification, are permitted provided that the following conditions are met:
10
+ * Redistributions of source code must retain the above copyright
11
+ notice, this list of conditions and the following disclaimer.
12
+ * Redistributions in binary form must reproduce the above copyright
13
+ notice, this list of conditions and the following disclaimer in the
14
+ documentation and/or other materials provided with the distribution.
15
+ * Neither the name of cereal nor the
16
+ names of its contributors may be used to endorse or promote products
17
+ derived from this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY
23
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
+ */
30
+ #ifndef CEREAL_TYPES_VECTOR_HPP_
31
+ #define CEREAL_TYPES_VECTOR_HPP_
32
+
33
+ #include "cereal/cereal.hpp"
34
+ #include <vector>
35
+
36
+ namespace cereal
37
+ {
38
+ //! Serialization for std::vectors of arithmetic (but not bool) using binary serialization, if supported
39
+ template <class Archive, class T, class A> inline
40
+ typename std::enable_if<traits::is_output_serializable<BinaryData<T>, Archive>::value
41
+ && std::is_arithmetic<T>::value && !std::is_same<T, bool>::value, void>::type
42
+ CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::vector<T, A> const & vector )
43
+ {
44
+ ar( make_size_tag( static_cast<size_type>(vector.size()) ) ); // number of elements
45
+ ar( binary_data( vector.data(), vector.size() * sizeof(T) ) );
46
+ }
47
+
48
+ //! Serialization for std::vectors of arithmetic (but not bool) using binary serialization, if supported
49
+ template <class Archive, class T, class A> inline
50
+ typename std::enable_if<traits::is_input_serializable<BinaryData<T>, Archive>::value
51
+ && std::is_arithmetic<T>::value && !std::is_same<T, bool>::value, void>::type
52
+ CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::vector<T, A> & vector )
53
+ {
54
+ size_type vectorSize;
55
+ ar( make_size_tag( vectorSize ) );
56
+
57
+ vector.resize( static_cast<std::size_t>( vectorSize ) );
58
+ ar( binary_data( vector.data(), static_cast<std::size_t>( vectorSize ) * sizeof(T) ) );
59
+ }
60
+
61
+ //! Serialization for non-arithmetic vector types
62
+ template <class Archive, class T, class A> inline
63
+ typename std::enable_if<(!traits::is_output_serializable<BinaryData<T>, Archive>::value
64
+ || !std::is_arithmetic<T>::value) && !std::is_same<T, bool>::value, void>::type
65
+ CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::vector<T, A> const & vector )
66
+ {
67
+ ar( make_size_tag( static_cast<size_type>(vector.size()) ) ); // number of elements
68
+ for(auto && v : vector)
69
+ ar( v );
70
+ }
71
+
72
+ //! Serialization for non-arithmetic vector types
73
+ template <class Archive, class T, class A> inline
74
+ typename std::enable_if<(!traits::is_input_serializable<BinaryData<T>, Archive>::value
75
+ || !std::is_arithmetic<T>::value) && !std::is_same<T, bool>::value, void>::type
76
+ CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::vector<T, A> & vector )
77
+ {
78
+ size_type size;
79
+ ar( make_size_tag( size ) );
80
+
81
+ vector.resize( static_cast<std::size_t>( size ) );
82
+ for(auto && v : vector)
83
+ ar( v );
84
+ }
85
+
86
+ //! Serialization for bool vector types
87
+ template <class Archive, class A> inline
88
+ void CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::vector<bool, A> const & vector )
89
+ {
90
+ ar( make_size_tag( static_cast<size_type>(vector.size()) ) ); // number of elements
91
+ for(const auto v : vector)
92
+ ar( static_cast<bool>(v) );
93
+ }
94
+
95
+ //! Serialization for bool vector types
96
+ template <class Archive, class A> inline
97
+ void CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::vector<bool, A> & vector )
98
+ {
99
+ size_type size;
100
+ ar( make_size_tag( size ) );
101
+
102
+ vector.resize( static_cast<std::size_t>( size ) );
103
+ for(auto v : vector)
104
+ {
105
+ bool b;
106
+ ar( b );
107
+ v = b;
108
+ }
109
+ }
110
+ } // namespace cereal
111
+
112
+ #endif // CEREAL_TYPES_VECTOR_HPP_