datasketches 0.3.2 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/NOTICE +1 -1
- data/README.md +0 -2
- data/ext/datasketches/cpc_wrapper.cpp +2 -2
- data/ext/datasketches/kll_wrapper.cpp +0 -10
- data/lib/datasketches/version.rb +1 -1
- data/lib/datasketches.rb +1 -1
- data/vendor/datasketches-cpp/CMakeLists.txt +1 -0
- data/vendor/datasketches-cpp/CODE_OF_CONDUCT.md +3 -0
- data/vendor/datasketches-cpp/CONTRIBUTING.md +50 -0
- data/vendor/datasketches-cpp/Doxyfile +2827 -0
- data/vendor/datasketches-cpp/LICENSE +0 -76
- data/vendor/datasketches-cpp/NOTICE +1 -1
- data/vendor/datasketches-cpp/README.md +1 -3
- data/vendor/datasketches-cpp/common/CMakeLists.txt +12 -11
- data/vendor/datasketches-cpp/common/include/common_defs.hpp +11 -8
- data/vendor/datasketches-cpp/common/include/count_zeros.hpp +0 -2
- data/vendor/datasketches-cpp/common/include/kolmogorov_smirnov.hpp +9 -6
- data/vendor/datasketches-cpp/common/include/optional.hpp +148 -0
- data/vendor/datasketches-cpp/common/include/quantiles_sorted_view.hpp +95 -2
- data/vendor/datasketches-cpp/common/include/quantiles_sorted_view_impl.hpp +1 -1
- data/vendor/datasketches-cpp/common/include/serde.hpp +69 -20
- data/vendor/datasketches-cpp/common/test/CMakeLists.txt +1 -1
- data/vendor/datasketches-cpp/common/test/optional_test.cpp +85 -0
- data/vendor/datasketches-cpp/common/test/test_allocator.hpp +14 -14
- data/vendor/datasketches-cpp/count/include/count_min.hpp +132 -78
- data/vendor/datasketches-cpp/count/include/count_min_impl.hpp +132 -152
- data/vendor/datasketches-cpp/count/test/CMakeLists.txt +11 -12
- data/vendor/datasketches-cpp/count/test/count_min_allocation_test.cpp +61 -61
- data/vendor/datasketches-cpp/count/test/count_min_test.cpp +175 -178
- data/vendor/datasketches-cpp/cpc/include/cpc_common.hpp +14 -20
- data/vendor/datasketches-cpp/cpc/include/cpc_compressor.hpp +7 -4
- data/vendor/datasketches-cpp/cpc/include/cpc_compressor_impl.hpp +17 -17
- data/vendor/datasketches-cpp/cpc/include/cpc_sketch.hpp +40 -40
- data/vendor/datasketches-cpp/cpc/include/cpc_sketch_impl.hpp +13 -10
- data/vendor/datasketches-cpp/cpc/include/cpc_union.hpp +35 -11
- data/vendor/datasketches-cpp/cpc/include/cpc_union_impl.hpp +8 -8
- data/vendor/datasketches-cpp/cpc/include/u32_table.hpp +3 -2
- data/vendor/datasketches-cpp/cpc/include/u32_table_impl.hpp +5 -5
- data/vendor/datasketches-cpp/cpc/test/CMakeLists.txt +20 -7
- data/vendor/datasketches-cpp/cpc/test/cpc_sketch_deserialize_from_java_test.cpp +60 -0
- data/vendor/datasketches-cpp/{python/include/py_object_lt.hpp → cpc/test/cpc_sketch_serialize_for_java.cpp} +15 -14
- data/vendor/datasketches-cpp/cpc/test/cpc_sketch_test.cpp +4 -29
- data/vendor/datasketches-cpp/cpc/test/cpc_union_test.cpp +4 -4
- data/vendor/datasketches-cpp/density/include/density_sketch.hpp +29 -9
- data/vendor/datasketches-cpp/density/include/density_sketch_impl.hpp +1 -1
- data/vendor/datasketches-cpp/density/test/CMakeLists.txt +0 -1
- data/vendor/datasketches-cpp/fi/include/frequent_items_sketch.hpp +21 -9
- data/vendor/datasketches-cpp/fi/include/frequent_items_sketch_impl.hpp +6 -4
- data/vendor/datasketches-cpp/fi/test/CMakeLists.txt +14 -1
- data/vendor/datasketches-cpp/fi/test/frequent_items_sketch_deserialize_from_java_test.cpp +95 -0
- data/vendor/datasketches-cpp/fi/test/frequent_items_sketch_serialize_for_java.cpp +83 -0
- data/vendor/datasketches-cpp/fi/test/frequent_items_sketch_test.cpp +3 -42
- data/vendor/datasketches-cpp/hll/include/CouponList-internal.hpp +2 -2
- data/vendor/datasketches-cpp/hll/include/CouponList.hpp +3 -1
- data/vendor/datasketches-cpp/hll/include/HllArray-internal.hpp +3 -3
- data/vendor/datasketches-cpp/hll/include/HllArray.hpp +5 -3
- data/vendor/datasketches-cpp/hll/include/HllSketch-internal.hpp +4 -4
- data/vendor/datasketches-cpp/hll/include/HllSketchImpl.hpp +3 -1
- data/vendor/datasketches-cpp/hll/include/HllUtil.hpp +0 -12
- data/vendor/datasketches-cpp/hll/include/hll.hpp +70 -57
- data/vendor/datasketches-cpp/hll/test/CMakeLists.txt +14 -1
- data/vendor/datasketches-cpp/hll/test/ToFromByteArrayTest.cpp +0 -68
- data/vendor/datasketches-cpp/hll/test/hll_sketch_deserialize_from_java_test.cpp +69 -0
- data/vendor/datasketches-cpp/hll/test/hll_sketch_serialize_for_java.cpp +52 -0
- data/vendor/datasketches-cpp/kll/include/kll_helper_impl.hpp +2 -2
- data/vendor/datasketches-cpp/kll/include/kll_sketch.hpp +71 -50
- data/vendor/datasketches-cpp/kll/include/kll_sketch_impl.hpp +59 -130
- data/vendor/datasketches-cpp/kll/test/CMakeLists.txt +14 -1
- data/vendor/datasketches-cpp/kll/test/kll_sketch_deserialize_from_java_test.cpp +103 -0
- data/vendor/datasketches-cpp/kll/test/kll_sketch_serialize_for_java.cpp +62 -0
- data/vendor/datasketches-cpp/kll/test/kll_sketch_test.cpp +3 -38
- data/vendor/datasketches-cpp/quantiles/include/quantiles_sketch.hpp +68 -51
- data/vendor/datasketches-cpp/quantiles/include/quantiles_sketch_impl.hpp +62 -132
- data/vendor/datasketches-cpp/quantiles/test/CMakeLists.txt +14 -1
- data/vendor/datasketches-cpp/quantiles/test/quantiles_sketch_deserialize_from_java_test.cpp +84 -0
- data/vendor/datasketches-cpp/quantiles/test/quantiles_sketch_serialize_for_java.cpp +52 -0
- data/vendor/datasketches-cpp/quantiles/test/quantiles_sketch_test.cpp +14 -38
- data/vendor/datasketches-cpp/req/include/req_common.hpp +7 -3
- data/vendor/datasketches-cpp/req/include/req_compactor_impl.hpp +2 -2
- data/vendor/datasketches-cpp/req/include/req_sketch.hpp +97 -23
- data/vendor/datasketches-cpp/req/include/req_sketch_impl.hpp +48 -109
- data/vendor/datasketches-cpp/req/test/CMakeLists.txt +14 -1
- data/vendor/datasketches-cpp/req/test/req_sketch_deserialize_from_java_test.cpp +55 -0
- data/vendor/datasketches-cpp/{tuple/include/array_of_doubles_intersection_impl.hpp → req/test/req_sketch_serialize_for_java.cpp} +12 -7
- data/vendor/datasketches-cpp/req/test/req_sketch_test.cpp +3 -89
- data/vendor/datasketches-cpp/sampling/CMakeLists.txt +4 -0
- data/vendor/datasketches-cpp/sampling/include/ebpps_sample.hpp +210 -0
- data/vendor/datasketches-cpp/sampling/include/ebpps_sample_impl.hpp +535 -0
- data/vendor/datasketches-cpp/sampling/include/ebpps_sketch.hpp +281 -0
- data/vendor/datasketches-cpp/sampling/include/ebpps_sketch_impl.hpp +531 -0
- data/vendor/datasketches-cpp/sampling/include/var_opt_sketch.hpp +69 -26
- data/vendor/datasketches-cpp/sampling/include/var_opt_sketch_impl.hpp +3 -3
- data/vendor/datasketches-cpp/sampling/include/var_opt_union.hpp +10 -11
- data/vendor/datasketches-cpp/sampling/include/var_opt_union_impl.hpp +4 -4
- data/vendor/datasketches-cpp/sampling/test/CMakeLists.txt +55 -8
- data/vendor/datasketches-cpp/sampling/test/ebpps_allocation_test.cpp +96 -0
- data/vendor/datasketches-cpp/sampling/test/ebpps_sample_test.cpp +137 -0
- data/vendor/datasketches-cpp/sampling/test/ebpps_sketch_test.cpp +266 -0
- data/vendor/datasketches-cpp/sampling/test/var_opt_sketch_deserialize_from_java_test.cpp +81 -0
- data/vendor/datasketches-cpp/sampling/test/var_opt_sketch_serialize_for_java.cpp +54 -0
- data/vendor/datasketches-cpp/sampling/test/var_opt_sketch_test.cpp +0 -37
- data/vendor/datasketches-cpp/sampling/test/var_opt_union_deserialize_from_java_test.cpp +50 -0
- data/vendor/datasketches-cpp/sampling/test/var_opt_union_serialize_for_java.cpp +56 -0
- data/vendor/datasketches-cpp/sampling/test/var_opt_union_test.cpp +0 -18
- data/vendor/datasketches-cpp/theta/include/bit_packing.hpp +2608 -2608
- data/vendor/datasketches-cpp/theta/include/bounds_on_ratios_in_sampled_sets.hpp +1 -0
- data/vendor/datasketches-cpp/theta/include/bounds_on_ratios_in_theta_sketched_sets.hpp +7 -6
- data/vendor/datasketches-cpp/theta/include/theta_a_not_b.hpp +20 -5
- data/vendor/datasketches-cpp/theta/include/theta_constants.hpp +10 -4
- data/vendor/datasketches-cpp/theta/include/theta_helpers.hpp +1 -1
- data/vendor/datasketches-cpp/theta/include/theta_intersection.hpp +13 -5
- data/vendor/datasketches-cpp/theta/include/theta_intersection_base_impl.hpp +5 -5
- data/vendor/datasketches-cpp/theta/include/theta_intersection_impl.hpp +3 -3
- data/vendor/datasketches-cpp/theta/include/theta_jaccard_similarity.hpp +2 -1
- data/vendor/datasketches-cpp/theta/include/theta_jaccard_similarity_base.hpp +1 -0
- data/vendor/datasketches-cpp/theta/include/theta_set_difference_base_impl.hpp +1 -1
- data/vendor/datasketches-cpp/theta/include/theta_sketch.hpp +126 -27
- data/vendor/datasketches-cpp/theta/include/theta_sketch_impl.hpp +8 -8
- data/vendor/datasketches-cpp/theta/include/theta_union.hpp +17 -10
- data/vendor/datasketches-cpp/theta/include/theta_union_base_impl.hpp +1 -1
- data/vendor/datasketches-cpp/theta/include/theta_union_impl.hpp +3 -3
- data/vendor/datasketches-cpp/theta/include/theta_update_sketch_base.hpp +5 -2
- data/vendor/datasketches-cpp/theta/include/theta_update_sketch_base_impl.hpp +11 -1
- data/vendor/datasketches-cpp/theta/test/CMakeLists.txt +14 -1
- data/vendor/datasketches-cpp/theta/test/theta_sketch_deserialize_from_java_test.cpp +57 -0
- data/vendor/datasketches-cpp/theta/test/theta_sketch_serialize_for_java.cpp +61 -0
- data/vendor/datasketches-cpp/theta/test/theta_sketch_test.cpp +0 -188
- data/vendor/datasketches-cpp/tuple/CMakeLists.txt +8 -7
- data/vendor/datasketches-cpp/tuple/include/array_of_doubles_sketch.hpp +19 -144
- data/vendor/datasketches-cpp/tuple/include/{array_of_doubles_a_not_b.hpp → array_tuple_a_not_b.hpp} +24 -16
- data/vendor/datasketches-cpp/tuple/include/{array_of_doubles_a_not_b_impl.hpp → array_tuple_a_not_b_impl.hpp} +4 -4
- data/vendor/datasketches-cpp/tuple/include/array_tuple_intersection.hpp +65 -0
- data/vendor/datasketches-cpp/{python/include/py_object_ostream.hpp → tuple/include/array_tuple_intersection_impl.hpp} +7 -24
- data/vendor/datasketches-cpp/tuple/include/array_tuple_sketch.hpp +237 -0
- data/vendor/datasketches-cpp/tuple/include/{array_of_doubles_sketch_impl.hpp → array_tuple_sketch_impl.hpp} +40 -41
- data/vendor/datasketches-cpp/tuple/include/array_tuple_union.hpp +81 -0
- data/vendor/datasketches-cpp/tuple/include/array_tuple_union_impl.hpp +43 -0
- data/vendor/datasketches-cpp/tuple/include/tuple_a_not_b.hpp +11 -2
- data/vendor/datasketches-cpp/tuple/include/tuple_intersection.hpp +17 -10
- data/vendor/datasketches-cpp/tuple/include/tuple_jaccard_similarity.hpp +2 -1
- data/vendor/datasketches-cpp/tuple/include/tuple_sketch.hpp +95 -32
- data/vendor/datasketches-cpp/tuple/include/tuple_union.hpp +19 -11
- data/vendor/datasketches-cpp/tuple/test/CMakeLists.txt +16 -1
- data/vendor/datasketches-cpp/tuple/test/aod_sketch_deserialize_from_java_test.cpp +76 -0
- data/vendor/datasketches-cpp/tuple/test/aod_sketch_serialize_for_java.cpp +62 -0
- data/vendor/datasketches-cpp/tuple/test/array_of_doubles_sketch_test.cpp +5 -129
- data/vendor/datasketches-cpp/tuple/test/engagement_test.cpp +85 -89
- data/vendor/datasketches-cpp/tuple/test/tuple_jaccard_similarity_test.cpp +3 -1
- data/vendor/datasketches-cpp/tuple/test/tuple_sketch_deserialize_from_java_test.cpp +47 -0
- data/vendor/datasketches-cpp/tuple/test/tuple_sketch_serialize_for_java.cpp +38 -0
- data/vendor/datasketches-cpp/tuple/test/tuple_sketch_test.cpp +1 -1
- data/vendor/datasketches-cpp/version.cfg.in +1 -1
- metadata +47 -93
- data/vendor/datasketches-cpp/MANIFEST.in +0 -39
- data/vendor/datasketches-cpp/fi/test/items_sketch_string_from_java.sk +0 -0
- data/vendor/datasketches-cpp/fi/test/items_sketch_string_utf8_from_java.sk +0 -0
- data/vendor/datasketches-cpp/fi/test/longs_sketch_from_java.sk +0 -0
- data/vendor/datasketches-cpp/hll/test/array6_from_java.sk +0 -0
- data/vendor/datasketches-cpp/hll/test/compact_array4_from_java.sk +0 -0
- data/vendor/datasketches-cpp/hll/test/compact_set_from_java.sk +0 -0
- data/vendor/datasketches-cpp/hll/test/list_from_java.sk +0 -0
- data/vendor/datasketches-cpp/hll/test/updatable_array4_from_java.sk +0 -0
- data/vendor/datasketches-cpp/hll/test/updatable_set_from_java.sk +0 -0
- data/vendor/datasketches-cpp/kll/test/kll_sketch_from_java.sk +0 -0
- data/vendor/datasketches-cpp/pyproject.toml +0 -23
- data/vendor/datasketches-cpp/python/CMakeLists.txt +0 -87
- data/vendor/datasketches-cpp/python/README.md +0 -85
- data/vendor/datasketches-cpp/python/datasketches/DensityWrapper.py +0 -87
- data/vendor/datasketches-cpp/python/datasketches/KernelFunction.py +0 -35
- data/vendor/datasketches-cpp/python/datasketches/PySerDe.py +0 -110
- data/vendor/datasketches-cpp/python/datasketches/TuplePolicy.py +0 -77
- data/vendor/datasketches-cpp/python/datasketches/TupleWrapper.py +0 -205
- data/vendor/datasketches-cpp/python/datasketches/__init__.py +0 -38
- data/vendor/datasketches-cpp/python/include/kernel_function.hpp +0 -98
- data/vendor/datasketches-cpp/python/include/py_serde.hpp +0 -113
- data/vendor/datasketches-cpp/python/include/quantile_conditional.hpp +0 -104
- data/vendor/datasketches-cpp/python/include/tuple_policy.hpp +0 -136
- data/vendor/datasketches-cpp/python/jupyter/CPCSketch.ipynb +0 -345
- data/vendor/datasketches-cpp/python/jupyter/FrequentItemsSketch.ipynb +0 -354
- data/vendor/datasketches-cpp/python/jupyter/HLLSketch.ipynb +0 -346
- data/vendor/datasketches-cpp/python/jupyter/KLLSketch.ipynb +0 -463
- data/vendor/datasketches-cpp/python/jupyter/ThetaSketchNotebook.ipynb +0 -403
- data/vendor/datasketches-cpp/python/pybind11Path.cmd +0 -21
- data/vendor/datasketches-cpp/python/src/__init__.py +0 -18
- data/vendor/datasketches-cpp/python/src/count_wrapper.cpp +0 -101
- data/vendor/datasketches-cpp/python/src/cpc_wrapper.cpp +0 -76
- data/vendor/datasketches-cpp/python/src/datasketches.cpp +0 -58
- data/vendor/datasketches-cpp/python/src/density_wrapper.cpp +0 -95
- data/vendor/datasketches-cpp/python/src/fi_wrapper.cpp +0 -182
- data/vendor/datasketches-cpp/python/src/hll_wrapper.cpp +0 -126
- data/vendor/datasketches-cpp/python/src/kll_wrapper.cpp +0 -158
- data/vendor/datasketches-cpp/python/src/ks_wrapper.cpp +0 -68
- data/vendor/datasketches-cpp/python/src/py_serde.cpp +0 -112
- data/vendor/datasketches-cpp/python/src/quantiles_wrapper.cpp +0 -155
- data/vendor/datasketches-cpp/python/src/req_wrapper.cpp +0 -154
- data/vendor/datasketches-cpp/python/src/theta_wrapper.cpp +0 -166
- data/vendor/datasketches-cpp/python/src/tuple_wrapper.cpp +0 -215
- data/vendor/datasketches-cpp/python/src/vector_of_kll.cpp +0 -490
- data/vendor/datasketches-cpp/python/src/vo_wrapper.cpp +0 -173
- data/vendor/datasketches-cpp/python/tests/__init__.py +0 -16
- data/vendor/datasketches-cpp/python/tests/count_min_test.py +0 -86
- data/vendor/datasketches-cpp/python/tests/cpc_test.py +0 -64
- data/vendor/datasketches-cpp/python/tests/density_test.py +0 -93
- data/vendor/datasketches-cpp/python/tests/fi_test.py +0 -149
- data/vendor/datasketches-cpp/python/tests/hll_test.py +0 -129
- data/vendor/datasketches-cpp/python/tests/kll_test.py +0 -159
- data/vendor/datasketches-cpp/python/tests/quantiles_test.py +0 -160
- data/vendor/datasketches-cpp/python/tests/req_test.py +0 -159
- data/vendor/datasketches-cpp/python/tests/theta_test.py +0 -148
- data/vendor/datasketches-cpp/python/tests/tuple_test.py +0 -206
- data/vendor/datasketches-cpp/python/tests/vector_of_kll_test.py +0 -148
- data/vendor/datasketches-cpp/python/tests/vo_test.py +0 -132
- data/vendor/datasketches-cpp/req/test/req_float_empty_from_java.sk +0 -0
- data/vendor/datasketches-cpp/req/test/req_float_estimation_from_java.sk +0 -0
- data/vendor/datasketches-cpp/req/test/req_float_exact_from_java.sk +0 -0
- data/vendor/datasketches-cpp/req/test/req_float_raw_items_from_java.sk +0 -0
- data/vendor/datasketches-cpp/req/test/req_float_single_item_from_java.sk +0 -0
- data/vendor/datasketches-cpp/sampling/test/binaries_from_java.txt +0 -67
- data/vendor/datasketches-cpp/sampling/test/varopt_sketch_long_sampling.sk +0 -0
- data/vendor/datasketches-cpp/sampling/test/varopt_sketch_string_exact.sk +0 -0
- data/vendor/datasketches-cpp/sampling/test/varopt_union_double_sampling.sk +0 -0
- data/vendor/datasketches-cpp/setup.py +0 -110
- data/vendor/datasketches-cpp/theta/test/theta_compact_empty_from_java.sk +0 -0
- data/vendor/datasketches-cpp/theta/test/theta_compact_estimation_from_java.sk +0 -0
- data/vendor/datasketches-cpp/theta/test/theta_compact_exact_from_java.sk +0 -0
- data/vendor/datasketches-cpp/theta/test/theta_compact_single_item_from_java.sk +0 -0
- data/vendor/datasketches-cpp/tox.ini +0 -26
- data/vendor/datasketches-cpp/tuple/include/array_of_doubles_intersection.hpp +0 -52
- data/vendor/datasketches-cpp/tuple/include/array_of_doubles_union.hpp +0 -81
- data/vendor/datasketches-cpp/tuple/include/array_of_doubles_union_impl.hpp +0 -43
- data/vendor/datasketches-cpp/tuple/test/aod_1_compact_empty_from_java.sk +0 -1
- data/vendor/datasketches-cpp/tuple/test/aod_1_compact_estimation_from_java.sk +0 -0
- data/vendor/datasketches-cpp/tuple/test/aod_1_compact_non_empty_no_entries_from_java.sk +0 -0
- data/vendor/datasketches-cpp/tuple/test/aod_2_compact_exact_from_java.sk +0 -0
- data/vendor/datasketches-cpp/tuple/test/aod_3_compact_empty_from_java.sk +0 -1
@@ -0,0 +1,281 @@
|
|
1
|
+
/*
|
2
|
+
* Licensed to the Apache Software Foundation (ASF) under one
|
3
|
+
* or more contributor license agreements. See the NOTICE file
|
4
|
+
* distributed with this work for additional information
|
5
|
+
* regarding copyright ownership. The ASF licenses this file
|
6
|
+
* to you under the Apache License, Version 2.0 (the
|
7
|
+
* "License"); you may not use this file except in compliance
|
8
|
+
* with the License. You may obtain a copy of the License at
|
9
|
+
*
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
*
|
12
|
+
* Unless required by applicable law or agreed to in writing,
|
13
|
+
* software distributed under the License is distributed on an
|
14
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
15
|
+
* KIND, either express or implied. See the License for the
|
16
|
+
* specific language governing permissions and limitations
|
17
|
+
* under the License.
|
18
|
+
*/
|
19
|
+
|
20
|
+
#ifndef _EBPPS_SKETCH_HPP_
|
21
|
+
#define _EBPPS_SKETCH_HPP_
|
22
|
+
|
23
|
+
#include "common_defs.hpp"
|
24
|
+
#include "ebpps_sample.hpp"
|
25
|
+
#include "optional.hpp"
|
26
|
+
#include "serde.hpp"
|
27
|
+
|
28
|
+
#include <random>
|
29
|
+
#include <string>
|
30
|
+
#include <vector>
|
31
|
+
|
32
|
+
namespace datasketches {
|
33
|
+
|
34
|
+
/// EBPPS sketch constants
|
35
|
+
namespace ebpps_constants {
|
36
|
+
/// maximum value of parameter K
|
37
|
+
const uint32_t MAX_K = ((uint32_t) 1 << 31) - 2;
|
38
|
+
}
|
39
|
+
|
40
|
+
/**
|
41
|
+
* An implementation of an Exact and Bounded Sampling Proportional to Size sketch.
|
42
|
+
*
|
43
|
+
* From: "Exact PPS Sampling with Bounded Sample Size",
|
44
|
+
* B. Hentschel, P. J. Haas, Y. Tian. Information Processing Letters, 2023.
|
45
|
+
*
|
46
|
+
* This sketch samples data from a stream of items propotional to the weight of each item.
|
47
|
+
* The sample guarantees the presence of an item in the result is proportional to that item's
|
48
|
+
* portion of the total weight seen by the sketch, and returns a sample no larger than size k.
|
49
|
+
*
|
50
|
+
* The sample may be smaller than k and the resulting size of the sample potentially includes
|
51
|
+
* a probabilistic component, meaning the resulting sample size is not always constant.
|
52
|
+
*
|
53
|
+
* @author Jon Malkin
|
54
|
+
*/
|
55
|
+
template<
|
56
|
+
typename T,
|
57
|
+
typename A = std::allocator<T>
|
58
|
+
>
|
59
|
+
class ebpps_sketch {
|
60
|
+
|
61
|
+
public:
|
62
|
+
static const uint32_t MAX_K = ebpps_constants::MAX_K;
|
63
|
+
|
64
|
+
/**
|
65
|
+
* Constructor
|
66
|
+
* @param k sketch size
|
67
|
+
* @param allocator instance of an allocator
|
68
|
+
*/
|
69
|
+
explicit ebpps_sketch(uint32_t k, const A& allocator = A());
|
70
|
+
|
71
|
+
/**
|
72
|
+
* Updates this sketch with the given data item with the given weight.
|
73
|
+
* This method takes an lvalue.
|
74
|
+
* @param item an item from a stream of items
|
75
|
+
* @param weight the weight of the item
|
76
|
+
*/
|
77
|
+
void update(const T& item, double weight = 1.0);
|
78
|
+
|
79
|
+
/**
|
80
|
+
* Updates this sketch with the given data item with the given weight.
|
81
|
+
* This method takes an rvalue.
|
82
|
+
* @param item an item from a stream of items
|
83
|
+
* @param weight the weight of the item
|
84
|
+
*/
|
85
|
+
void update(T&& item, double weight = 1.0);
|
86
|
+
|
87
|
+
/**
|
88
|
+
* Merges the provided sketch into the current one.
|
89
|
+
* This method takes an lvalue.
|
90
|
+
* @param sketch the sketch to merge into the current object
|
91
|
+
*/
|
92
|
+
void merge(const ebpps_sketch<T, A>& sketch);
|
93
|
+
|
94
|
+
/**
|
95
|
+
* Merges the provided sketch into the current one.
|
96
|
+
* This method takes an rvalue.
|
97
|
+
* @param sketch the sketch to merge into the current object
|
98
|
+
*/
|
99
|
+
void merge(ebpps_sketch<T, A>&& sketch);
|
100
|
+
|
101
|
+
using result_type = typename ebpps_sample<T,A>::result_type;
|
102
|
+
|
103
|
+
/**
|
104
|
+
* @brief Returns a copy of the current sample, as a std::vector
|
105
|
+
*/
|
106
|
+
result_type get_result() const;
|
107
|
+
|
108
|
+
/**
|
109
|
+
* Returns the configured maximum sample size.
|
110
|
+
* @return configured maximum sample size
|
111
|
+
*/
|
112
|
+
inline uint32_t get_k() const;
|
113
|
+
|
114
|
+
/**
|
115
|
+
* Returns the number of items processed by the sketch, regardless of
|
116
|
+
* item weight.
|
117
|
+
* @return count of items processed by the sketch
|
118
|
+
*/
|
119
|
+
inline uint64_t get_n() const;
|
120
|
+
|
121
|
+
/**
|
122
|
+
* Returns the cumulative weight of items processed by the sketch.
|
123
|
+
* @return cumulative weight of items seen
|
124
|
+
*/
|
125
|
+
inline double get_cumulative_weight() const;
|
126
|
+
|
127
|
+
/**
|
128
|
+
* Returns the expected number of samples returned upon a call to
|
129
|
+
* get_result() or the creation of an iterator. The number is a
|
130
|
+
* floating point value, where the fractional portion represents
|
131
|
+
* the probability of including a "partial item" from the sample.
|
132
|
+
*
|
133
|
+
* The value C should be no larger than the sketch's configured
|
134
|
+
* value of k, although numerical precision limitations mean it
|
135
|
+
* may exceed k by double precision floating point error margins
|
136
|
+
* in certain cases.
|
137
|
+
* @return The expected number of samples returned when querying the sketch
|
138
|
+
*/
|
139
|
+
inline double get_c() const;
|
140
|
+
|
141
|
+
/**
|
142
|
+
* Returns true if the sketch is empty.
|
143
|
+
* @return empty flag
|
144
|
+
*/
|
145
|
+
inline bool is_empty() const;
|
146
|
+
|
147
|
+
/**
|
148
|
+
* Returns an instance of the allocator for this sketch.
|
149
|
+
* @return allocator
|
150
|
+
*/
|
151
|
+
A get_allocator() const;
|
152
|
+
|
153
|
+
/**
|
154
|
+
* Resets the sketch to its default, empty state.
|
155
|
+
*/
|
156
|
+
void reset();
|
157
|
+
|
158
|
+
/**
|
159
|
+
* Computes size needed to serialize the current state of the sketch.
|
160
|
+
* @param sd instance of a SerDe
|
161
|
+
* @return size in bytes needed to serialize this sketch
|
162
|
+
*/
|
163
|
+
template<typename SerDe = serde<T>>
|
164
|
+
inline size_t get_serialized_size_bytes(const SerDe& sd = SerDe()) const;
|
165
|
+
|
166
|
+
// This is a convenience alias for users
|
167
|
+
// The type returned by the following serialize method
|
168
|
+
using vector_bytes = std::vector<uint8_t, typename std::allocator_traits<A>::template rebind_alloc<uint8_t>>;
|
169
|
+
|
170
|
+
/**
|
171
|
+
* This method serializes the sketch as a vector of bytes.
|
172
|
+
* An optional header can be reserved in front of the sketch.
|
173
|
+
* It is a blank space of a given size.
|
174
|
+
* This header is used in Datasketches PostgreSQL extension.
|
175
|
+
* @param header_size_bytes space to reserve in front of the sketch
|
176
|
+
* @param sd instance of a SerDe
|
177
|
+
*/
|
178
|
+
template<typename SerDe = serde<T>>
|
179
|
+
vector_bytes serialize(unsigned header_size_bytes = 0, const SerDe& sd = SerDe()) const;
|
180
|
+
|
181
|
+
/**
|
182
|
+
* This method serializes the sketch into a given stream in a binary form
|
183
|
+
* @param os output stream
|
184
|
+
* @param sd instance of a SerDe
|
185
|
+
*/
|
186
|
+
template<typename SerDe = serde<T>>
|
187
|
+
void serialize(std::ostream& os, const SerDe& sd = SerDe()) const;
|
188
|
+
|
189
|
+
/**
|
190
|
+
* This method deserializes a sketch from a given array of bytes.
|
191
|
+
* @param bytes pointer to the array of bytes
|
192
|
+
* @param size the size of the array
|
193
|
+
* @param sd instance of a SerDe
|
194
|
+
* @param allocator instance of an allocator
|
195
|
+
* @return an instance of a sketch
|
196
|
+
*/
|
197
|
+
template<typename SerDe = serde<T>>
|
198
|
+
static ebpps_sketch deserialize(const void* bytes, size_t size, const SerDe& sd = SerDe(), const A& allocator = A());
|
199
|
+
|
200
|
+
/**
|
201
|
+
* This method deserializes a sketch from a given stream.
|
202
|
+
* @param is input stream
|
203
|
+
* @param sd instance of a SerDe
|
204
|
+
* @param allocator instance of an allocator
|
205
|
+
* @return an instance of a sketch
|
206
|
+
*/
|
207
|
+
template<typename SerDe = serde<T>>
|
208
|
+
static ebpps_sketch deserialize(std::istream& is, const SerDe& sd = SerDe(), const A& allocator = A());
|
209
|
+
|
210
|
+
/**
|
211
|
+
* Prints a summary of the sketch.
|
212
|
+
* @return the summary as a string
|
213
|
+
*/
|
214
|
+
string<A> to_string() const;
|
215
|
+
|
216
|
+
/**
|
217
|
+
* Prints the raw sketch items to a string.
|
218
|
+
* Only works for type T with a defined
|
219
|
+
* std::ostream& operator<<(std::ostream&, const T&) and is
|
220
|
+
* kept separate from to_string() to allow compilation even if
|
221
|
+
* T does not have such an operator defined.
|
222
|
+
* @return a string with the sketch items
|
223
|
+
*/
|
224
|
+
string<A> items_to_string() const;
|
225
|
+
|
226
|
+
/**
|
227
|
+
* Iterator pointing to the first item in the sketch.
|
228
|
+
* If the sketch is empty, the returned iterator must not be dereferenced or incremented.
|
229
|
+
* @return iterator pointing to the first item in the sketch
|
230
|
+
*/
|
231
|
+
typename ebpps_sample<T,A>::const_iterator begin() const;
|
232
|
+
|
233
|
+
/**
|
234
|
+
* Iterator pointing to the past-the-end item in the sketch.
|
235
|
+
* The past-the-end item is the hypothetical item that would follow the last item.
|
236
|
+
* It does not point to any item, and must not be dereferenced or incremented.
|
237
|
+
* @return iterator pointing to the past-the-end item in the sketch
|
238
|
+
*/
|
239
|
+
typename ebpps_sample<T,A>::const_iterator end() const;
|
240
|
+
|
241
|
+
private:
|
242
|
+
static const uint8_t PREAMBLE_LONGS_EMPTY = 1;
|
243
|
+
static const uint8_t PREAMBLE_LONGS_FULL = 5; // C is part of sample_
|
244
|
+
static const uint8_t SER_VER = 1;
|
245
|
+
static const uint8_t FAMILY_ID = 19;
|
246
|
+
static const uint8_t EMPTY_FLAG_MASK = 4;
|
247
|
+
static const uint8_t HAS_PARTIAL_ITEM_MASK = 8;
|
248
|
+
|
249
|
+
A allocator_;
|
250
|
+
uint32_t k_; // max size of sketch, in items
|
251
|
+
uint64_t n_; // total number of items processed by the sketch
|
252
|
+
|
253
|
+
double cumulative_wt_; // total weight of items processed by the sketch
|
254
|
+
double wt_max_; // maximum weight seen so far
|
255
|
+
double rho_; // latest scaling parameter for downsampling
|
256
|
+
|
257
|
+
ebpps_sample<T,A> sample_; // Object holding the current state of the sample
|
258
|
+
|
259
|
+
// handles merge after ensuring other.cumulative_wt_ <= this->cumulative_wt_
|
260
|
+
// so we can send items in individually
|
261
|
+
template<typename O>
|
262
|
+
void internal_merge(O&& other);
|
263
|
+
|
264
|
+
ebpps_sketch(uint32_t k, uint64_t n, double cumulative_wt, double wt_max, double rho,
|
265
|
+
ebpps_sample<T,A>&& sample, const A& allocator = A());
|
266
|
+
|
267
|
+
template<typename FwdItem>
|
268
|
+
inline void internal_update(FwdItem&& item, double weight);
|
269
|
+
|
270
|
+
// validation
|
271
|
+
static uint32_t check_k(uint32_t k);
|
272
|
+
static void check_preamble_longs(uint8_t preamble_longs, uint8_t flags);
|
273
|
+
static void check_family_and_serialization_version(uint8_t family_id, uint8_t ser_ver);
|
274
|
+
static uint32_t validate_and_get_target_size(uint32_t preamble_longs, uint32_t k, uint64_t n);
|
275
|
+
};
|
276
|
+
|
277
|
+
} // namespace datasketches
|
278
|
+
|
279
|
+
#include "ebpps_sketch_impl.hpp"
|
280
|
+
|
281
|
+
#endif // _EBPPS_SKETCH_HPP_
|