forked from rethinkdb/rethinkdb_rebirth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathordered_union.hpp
68 lines (50 loc) · 1.83 KB
/
ordered_union.hpp
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
#ifndef RDB_PROTOCOL_DATUM_STREAM_ORDERED_UNION_HPP_
#define RDB_PROTOCOL_DATUM_STREAM_ORDERED_UNION_HPP_
#include "rdb_protocol/datum_stream.hpp"
#include "rdb_protocol/order_util.hpp"
namespace ql {
class ordered_union_datum_stream_t : public eager_datum_stream_t {
public:
ordered_union_datum_stream_t(std::vector<counted_t<datum_stream_t> > &&_streams,
std::vector<
std::pair<order_direction_t,
counted_t<const func_t> > > &&_comparisons,
env_t *env,
backtrace_id_t bt);
std::vector<datum_t>
next_raw_batch(env_t *env, const batchspec_t &batchspec) final;
bool is_array() const final {
return is_array_ordered_union;
}
bool is_exhausted() const final;
feed_type_t cfeed_type() const final {
return union_type;
}
bool is_infinite() const final {
return is_infinite_ordered_union;
}
private:
std::deque<counted_t<datum_stream_t> > streams;
feed_type_t union_type;
bool is_array_ordered_union, is_infinite_ordered_union;
bool is_ordered_by_field;
bool do_prelim_cache;
struct merge_cache_item_t {
datum_t value;
counted_t<datum_stream_t> source;
};
cond_t non_interruptor;
scoped_ptr_t<env_t> merge_env;
struct merge_less_t {
env_t *env;
profile::sampler_t *merge_sampler;
lt_cmp_t *merge_lt_cmp;
bool operator()(const merge_cache_item_t &a, const merge_cache_item_t &b);
};
lt_cmp_t lt;
std::priority_queue<merge_cache_item_t,
std::vector<merge_cache_item_t>,
merge_less_t> merge_cache;
};
} // namespace ql
#endif // RDB_PROTOCOL_DATUM_STREAM_ORDERED_UNION_HPP_