forked from rethinkdb/rethinkdb_rebirth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpathspec.hpp
101 lines (86 loc) · 2.86 KB
/
pathspec.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
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
// Copyright 2010-2014 RethinkDB, all rights reserved.
#ifndef RDB_PROTOCOL_PATHSPEC_HPP_
#define RDB_PROTOCOL_PATHSPEC_HPP_
#include <map>
#include <string>
#include <vector>
#include "rdb_protocol/datum_string.hpp"
#include "rdb_protocol/datum.hpp"
#include "utils.hpp"
namespace ql {
class term_t;
class pathspec_t {
public:
pathspec_t(const pathspec_t &other);
pathspec_t &operator=(const pathspec_t &other);
pathspec_t(const datum_string_t &str, const term_t *creator);
pathspec_t(const std::map<datum_string_t, pathspec_t> &map, const term_t *creator);
pathspec_t(datum_t datum, const term_t *creator);
~pathspec_t();
const datum_string_t *as_str() const {
return (type == STR ? str : NULL);
}
const std::vector<pathspec_t> *as_vec() const {
return (type == VEC ? vec: NULL);
}
const std::map<datum_string_t, pathspec_t> *as_map() const {
return (type == MAP ? map : NULL);
}
std::string print(int tabs = 0) const {
std::string res;
switch (type) {
case STR:
res += std::string(tabs * 2, ' ') + strprintf("STR: %s\n",
str->to_std().c_str());
break;
case VEC:
res += std::string(tabs * 2, ' ') + strprintf("VEC:\n");
for (auto it = vec->begin(); it != vec->end(); ++it) {
res += it->print(tabs + 1);
}
break;
case MAP:
res += std::string(tabs * 2, ' ') + strprintf("MAP:\n");
for (auto it = map->begin(); it != map->end(); ++it) {
res += std::string(tabs * 2, ' ')
+ strprintf("%s:\n", it->first.to_std().c_str());
res += it->second.print(tabs + 2);
}
break;
default:
unreachable();
break;
}
return res;
}
private:
void init_from(const pathspec_t &other);
enum type_t {
STR,
VEC,
MAP
} type;
union {
datum_string_t *str;
std::vector<pathspec_t> *vec;
std::map<datum_string_t, pathspec_t> *map;
};
const term_t *creator;
};
enum recurse_flag_t {
RECURSE,
DONT_RECURSE
};
/* Limit the datum to only the paths specified by the pathspec. */
datum_t project(datum_t datum,
const pathspec_t &pathspec, recurse_flag_t recurse,
const configured_limits_t &limits);
/* Limit the datum to only the paths not specified by the pathspec. */
datum_t unproject(datum_t datum,
const pathspec_t &pathspec, recurse_flag_t recurse,
const configured_limits_t &limits);
/* Return whether or not ALL of the paths in the pathspec exist in the datum. */
bool contains(datum_t datum,
const pathspec_t &pathspec);
} // namespace ql
#endif // RDB_PROTOCOL_PATHSPEC_HPP_