Flex  0.17.9
schema.h
Go to the documentation of this file.
1 
16 #ifndef GRAPHSCOPE_FRAGMENT_SCHEMA_H_
17 #define GRAPHSCOPE_FRAGMENT_SCHEMA_H_
18 
19 #include "flex/engines/hqps_db/core/utils/hqps_utils.h"
21 #include "flex/utils/id_indexer.h"
24 #include "flex/utils/result.h"
25 #include "flex/utils/yaml_utils.h"
26 
27 namespace gs {
28 
29 class Schema {
30  public:
31  // How many built-in plugins are there.
32  // Currently only one builtin plugin, SERVER_APP is supported.
33  static constexpr uint8_t RESERVED_PLUGIN_NUM = 1;
34  static constexpr uint8_t MAX_PLUGIN_ID = 248;
35  static constexpr uint8_t ADHOC_READ_PLUGIN_ID = 253;
36  static constexpr uint8_t HQPS_ADHOC_READ_PLUGIN_ID = 254;
37  static constexpr uint8_t HQPS_ADHOC_WRITE_PLUGIN_ID = 255;
38  static constexpr const char* HQPS_ADHOC_READ_PLUGIN_ID_STR = "\xFE";
39  static constexpr const char* HQPS_ADHOC_WRITE_PLUGIN_ID_STR = "\xFF";
40  static constexpr const char* ADHOC_READ_PLUGIN_ID_STR = "\xFD";
41  static constexpr const char* PRIMITIVE_TYPE_KEY = "primitive_type";
42  static constexpr const char* VARCHAR_KEY = "varchar";
43  static constexpr const char* MAX_LENGTH_KEY = "max_length";
44  static constexpr const uint16_t STRING_DEFAULT_MAX_LENGTH = 256;
45 
46  // The builtin plugins are reserved for the system.
47  static constexpr uint8_t BUILTIN_PLUGIN_NUM = 4;
48 
49  static constexpr uint8_t BUILTIN_COUNT_VERTICES_PLUGIN_ID = 252;
50  static constexpr const char* BUILTIN_COUNT_VERTICES_PLUGIN_NAME =
51  "count_vertices";
52  static constexpr uint8_t BUILTIN_PAGERANK_PLUGIN_ID = 251;
53  static constexpr const char* BUILTIN_PAGERANK_PLUGIN_NAME = "pagerank";
54  static constexpr uint8_t BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_ID = 250;
55  static constexpr const char* BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_NAME =
56  "k_neighbors";
57  static constexpr uint8_t BUILTIN_TVSP_PLUGIN_ID = 249;
58  static constexpr const char* BUILTIN_TVSP_PLUGIN_NAME =
59  "shortest_path_among_three";
60  static constexpr const char* BUILTIN_PLUGIN_NAMES[BUILTIN_PLUGIN_NUM] = {
63  static constexpr uint8_t BUILTIN_PLUGIN_IDS[BUILTIN_PLUGIN_NUM] = {
66 
67  // An array containing all compatible versions of schema.
68  static const std::vector<std::string> COMPATIBLE_VERSIONS;
69  static constexpr const char* DEFAULT_SCHEMA_VERSION = "v0.0";
70 
71  static bool IsBuiltinPlugin(const std::string& plugin_name);
72 
74  Schema();
75  ~Schema();
76 
77  static const std::vector<std::string>& GetCompatibleVersions();
78 
79  void Clear();
80 
81  void add_vertex_label(
82  const std::string& label, const std::vector<PropertyType>& property_types,
83  const std::vector<std::string>& property_names,
84  const std::vector<std::tuple<PropertyType, std::string, size_t>>&
85  primary_key,
86  const std::vector<StorageStrategy>& strategies = {},
87  size_t max_vnum = static_cast<size_t>(1) << 32,
88  const std::string& description = "");
89 
90  void add_edge_label(const std::string& src_label,
91  const std::string& dst_label,
92  const std::string& edge_label,
93  const std::vector<PropertyType>& properties,
94  const std::vector<std::string>& prop_names,
97  bool oe_mutable = true, bool ie_mutable = true,
98  bool sort_on_compaction = false,
99  const std::string& description = "");
100 
101  label_t vertex_label_num() const;
102 
103  label_t edge_label_num() const;
104 
105  bool contains_vertex_label(const std::string& label) const;
106 
107  label_t get_vertex_label_id(const std::string& label) const;
108 
110  label_t label_id, const std::vector<PropertyType>& types,
111  const std::vector<StorageStrategy>& strategies = {});
112 
113  const std::vector<PropertyType>& get_vertex_properties(
114  const std::string& label) const;
115 
116  const std::vector<std::string>& get_vertex_property_names(
117  const std::string& label) const;
118 
119  const std::string& get_vertex_description(const std::string& label) const;
120 
121  const std::vector<PropertyType>& get_vertex_properties(label_t label) const;
122 
123  const std::vector<std::string>& get_vertex_property_names(
124  label_t label) const;
125 
126  const std::string& get_vertex_description(label_t label) const;
127 
128  const std::vector<StorageStrategy>& get_vertex_storage_strategies(
129  const std::string& label) const;
130 
131  size_t get_max_vnum(const std::string& label) const;
132 
133  bool exist(const std::string& src_label, const std::string& dst_label,
134  const std::string& edge_label) const;
135 
136  bool exist(label_type src_label, label_type dst_label,
137  label_type edge_label) const;
138 
139  const std::vector<PropertyType>& get_edge_properties(
140  const std::string& src_label, const std::string& dst_label,
141  const std::string& label) const;
142 
143  const std::vector<PropertyType>& get_edge_properties(label_t src_label,
144  label_t dst_label,
145  label_t label) const;
146 
147  std::string get_edge_description(const std::string& src_label,
148  const std::string& dst_label,
149  const std::string& label) const;
150 
151  std::string get_edge_description(label_t src_label, label_t dst_label,
152  label_t label) const;
153 
154  PropertyType get_edge_property(label_t src, label_t dst, label_t edge) const;
155 
156  const std::vector<std::string>& get_edge_property_names(
157  const std::string& src_label, const std::string& dst_label,
158  const std::string& label) const;
159 
160  const std::vector<std::string>& get_edge_property_names(
161  const label_t& src_label, const label_t& dst_label,
162  const label_t& label) const;
163 
164  bool vertex_has_property(const std::string& label,
165  const std::string& prop) const;
166 
167  bool vertex_has_primary_key(const std::string& label,
168  const std::string& prop) const;
169 
170  bool edge_has_property(const std::string& src_label,
171  const std::string& dst_label,
172  const std::string& edge_label,
173  const std::string& prop) const;
174 
175  bool has_vertex_label(const std::string& label) const;
176 
177  bool has_edge_label(const std::string& src_label,
178  const std::string& dst_label,
179  const std::string& edge_label) const;
180 
181  bool has_edge_label(label_t src_label, label_t dst_label,
182  label_t edge_label) const;
183 
184  bool valid_edge_property(const std::string& src_label,
185  const std::string& dst_label,
186  const std::string& label) const;
187 
188  EdgeStrategy get_outgoing_edge_strategy(const std::string& src_label,
189  const std::string& dst_label,
190  const std::string& label) const;
191 
192  EdgeStrategy get_incoming_edge_strategy(const std::string& src_label,
193  const std::string& dst_label,
194  const std::string& label) const;
195 
196  bool outgoing_edge_mutable(const std::string& src_label,
197  const std::string& dst_label,
198  const std::string& label) const;
199 
200  bool incoming_edge_mutable(const std::string& src_label,
201  const std::string& dst_label,
202  const std::string& label) const;
203 
204  bool get_sort_on_compaction(const std::string& src_label,
205  const std::string& dst_label,
206  const std::string& label) const;
207 
208  bool contains_edge_label(const std::string& label) const;
209 
210  label_t get_edge_label_id(const std::string& label) const;
211 
212  std::string get_vertex_label_name(label_t index) const;
213 
214  std::string get_edge_label_name(label_t index) const;
215 
216  const std::vector<std::tuple<PropertyType, std::string, size_t>>&
217  get_vertex_primary_key(label_t index) const;
218 
219  const std::string& get_vertex_primary_key_name(label_t index) const;
220 
221  void Serialize(std::unique_ptr<grape::LocalIOAdaptor>& writer) const;
222 
223  void Deserialize(std::unique_ptr<grape::LocalIOAdaptor>& reader);
224 
225  static Result<Schema> LoadFromYaml(const std::string& schema_config);
226 
227  static Result<Schema> LoadFromYamlNode(const YAML::Node& schema_node);
228 
229  bool Equals(const Schema& other) const;
230 
231  // Return the map from plugin name to plugin id
232  const std::unordered_map<std::string, std::pair<std::string, uint8_t>>&
233  GetPlugins() const;
234 
235  bool EmplacePlugins(
236  const std::vector<std::pair<std::string, std::string>>& plugins);
237 
238  void SetPluginDir(const std::string& plugin_dir);
239 
240  void RemovePlugin(const std::string& plugin_name);
241 
242  std::string GetPluginDir() const;
243 
244  std::string GetDescription() const;
245 
246  void SetDescription(const std::string& description);
247 
248  void SetVersion(const std::string& version);
249 
250  std::string GetVersion() const;
251 
252  bool has_multi_props_edge() const;
253 
254  private:
255  label_t vertex_label_to_index(const std::string& label);
256 
257  label_t edge_label_to_index(const std::string& label);
258 
259  uint32_t generate_edge_label(label_t src, label_t dst, label_t edge) const;
260 
263  std::vector<std::vector<PropertyType>> vproperties_;
264  std::vector<std::vector<std::string>> vprop_names_;
265  std::vector<std::string> v_descriptions_;
266  std::vector<std::vector<std::tuple<PropertyType, std::string, size_t>>>
267  v_primary_keys_; // the third element is the index of the property in the
268  // vertex property list
269  std::vector<std::vector<StorageStrategy>> vprop_storage_;
270  std::map<uint32_t, std::vector<PropertyType>> eproperties_;
271  std::map<uint32_t, std::vector<std::string>> eprop_names_;
272  std::map<uint32_t, std::string> e_descriptions_;
273  std::map<uint32_t, EdgeStrategy> oe_strategy_;
274  std::map<uint32_t, EdgeStrategy> ie_strategy_;
275  std::map<uint32_t, bool> oe_mutability_;
276  std::map<uint32_t, bool> ie_mutability_;
277  std::map<uint32_t, bool> sort_on_compactions_;
278  std::vector<size_t> max_vnum_;
279  std::unordered_map<std::string, std::pair<std::string, uint8_t>>
280  plugin_name_to_path_and_id_; // key is plugin_name, value is plugin_path
281  // and plugin_id
282  std::string plugin_dir_;
283  std::string description_;
284  std::string version_;
286 };
287 
288 } // namespace gs
289 
290 #endif // GRAPHSCOPE_FRAGMENT_SCHEMA_H_
gs::Schema::oe_mutability_
std::map< uint32_t, bool > oe_mutability_
Definition: schema.h:275
gs::Schema::STRING_DEFAULT_MAX_LENGTH
static constexpr const uint16_t STRING_DEFAULT_MAX_LENGTH
Definition: schema.h:44
gs::Schema::add_vertex_label
void add_vertex_label(const std::string &label, const std::vector< PropertyType > &property_types, const std::vector< std::string > &property_names, const std::vector< std::tuple< PropertyType, std::string, size_t >> &primary_key, const std::vector< StorageStrategy > &strategies={}, size_t max_vnum=static_cast< size_t >(1)<< 32, const std::string &description="")
Definition: schema.cc:55
gs::Schema::BUILTIN_PLUGIN_NUM
static constexpr uint8_t BUILTIN_PLUGIN_NUM
Definition: schema.h:47
gs::Schema::get_sort_on_compaction
bool get_sort_on_compaction(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:332
gs::Schema::version_
std::string version_
Definition: schema.h:284
gs::Schema::has_edge_label
bool has_edge_label(const std::string &src_label, const std::string &dst_label, const std::string &edge_label) const
Definition: schema.cc:1411
gs::Schema::MAX_LENGTH_KEY
static constexpr const char * MAX_LENGTH_KEY
Definition: schema.h:43
gs::Schema::get_edge_label_id
label_t get_edge_label_id(const std::string &label) const
Definition: schema.cc:347
gs::Schema::ie_mutability_
std::map< uint32_t, bool > ie_mutability_
Definition: schema.h:276
gs::Schema::outgoing_edge_mutable
bool outgoing_edge_mutable(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:312
gs::Schema::e_descriptions_
std::map< uint32_t, std::string > e_descriptions_
Definition: schema.h:272
gs::Schema::HQPS_ADHOC_READ_PLUGIN_ID_STR
static constexpr const char * HQPS_ADHOC_READ_PLUGIN_ID_STR
Definition: schema.h:38
gs::EdgeStrategy::kMultiple
@ kMultiple
types.h
gs::Schema::LoadFromYaml
static Result< Schema > LoadFromYaml(const std::string &schema_config)
Definition: schema.cc:1434
gs::Schema::ADHOC_READ_PLUGIN_ID
static constexpr uint8_t ADHOC_READ_PLUGIN_ID
Definition: schema.h:35
gs::Schema::get_outgoing_edge_strategy
EdgeStrategy get_outgoing_edge_strategy(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:292
gs::Schema::vertex_label_to_index
label_t vertex_label_to_index(const std::string &label)
Definition: schema.cc:414
gs::Schema::VARCHAR_KEY
static constexpr const char * VARCHAR_KEY
Definition: schema.h:42
gs::Schema::BUILTIN_COUNT_VERTICES_PLUGIN_ID
static constexpr uint8_t BUILTIN_COUNT_VERTICES_PLUGIN_ID
Definition: schema.h:49
gs::Schema::BUILTIN_TVSP_PLUGIN_ID
static constexpr uint8_t BUILTIN_TVSP_PLUGIN_ID
Definition: schema.h:57
gs::Schema::get_edge_property
PropertyType get_edge_property(label_t src, label_t dst, label_t edge) const
Definition: schema.cc:252
gs::Schema::get_incoming_edge_strategy
EdgeStrategy get_incoming_edge_strategy(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:302
gs::Schema::Deserialize
void Deserialize(std::unique_ptr< grape::LocalIOAdaptor > &reader)
Definition: schema.cc:396
gs::Schema::PRIMITIVE_TYPE_KEY
static constexpr const char * PRIMITIVE_TYPE_KEY
Definition: schema.h:41
gs::Schema::description_
std::string description_
Definition: schema.h:283
gs::Schema::vlabel_indexer_
IdIndexer< std::string, label_t > vlabel_indexer_
Definition: schema.h:261
gs
Definition: adj_list.h:23
gs::Schema::EmplacePlugins
bool EmplacePlugins(const std::vector< std::pair< std::string, std::string >> &plugins)
Definition: schema.cc:1230
gs::Schema::get_edge_description
std::string get_edge_description(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:225
gs::Schema::LoadFromYamlNode
static Result< Schema > LoadFromYamlNode(const YAML::Node &schema_node)
Definition: schema.cc:1449
gs::Schema::COMPATIBLE_VERSIONS
static const std::vector< std::string > COMPATIBLE_VERSIONS
Definition: schema.h:68
gs::Schema::Serialize
void Serialize(std::unique_ptr< grape::LocalIOAdaptor > &writer) const
Definition: schema.cc:384
gs::Schema::get_vertex_storage_strategies
const std::vector< StorageStrategy > & get_vertex_storage_strategies(const std::string &label) const
Definition: schema.cc:170
gs::Schema::oe_strategy_
std::map< uint32_t, EdgeStrategy > oe_strategy_
Definition: schema.h:273
gs::Schema::vertex_has_primary_key
bool vertex_has_primary_key(const std::string &label, const std::string &prop) const
Definition: schema.cc:1373
gs::Schema::RESERVED_PLUGIN_NUM
static constexpr uint8_t RESERVED_PLUGIN_NUM
Definition: schema.h:33
gs::Schema::get_edge_property_names
const std::vector< std::string > & get_edge_property_names(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:258
gs::Schema::get_edge_properties
const std::vector< PropertyType > & get_edge_properties(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:201
gs::Schema::Schema
Schema()
Definition: schema.cc:32
gs::Schema::GetDescription
std::string GetDescription() const
Definition: schema.cc:1350
gs::Schema::max_vnum_
std::vector< size_t > max_vnum_
Definition: schema.h:278
gs::Schema::RemovePlugin
void RemovePlugin(const std::string &plugin_name)
Definition: schema.cc:1344
gs::Schema::BUILTIN_TVSP_PLUGIN_NAME
static constexpr const char * BUILTIN_TVSP_PLUGIN_NAME
Definition: schema.h:58
gs::Schema::BUILTIN_COUNT_VERTICES_PLUGIN_NAME
static constexpr const char * BUILTIN_COUNT_VERTICES_PLUGIN_NAME
Definition: schema.h:50
gs::Schema
Definition: schema.h:29
gs::Schema::valid_edge_property
bool valid_edge_property(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:282
gs::Schema::SetPluginDir
void SetPluginDir(const std::string &plugin_dir)
Definition: schema.cc:1342
gs::Schema::get_vertex_primary_key_name
const std::string & get_vertex_primary_key_name(label_t index) const
gs::Schema::plugin_name_to_path_and_id_
std::unordered_map< std::string, std::pair< std::string, uint8_t > > plugin_name_to_path_and_id_
Definition: schema.h:280
yaml_utils.h
gs::Schema::vertex_label_num
label_t vertex_label_num() const
Definition: schema.cc:100
gs::Schema::BUILTIN_PLUGIN_IDS
static constexpr uint8_t BUILTIN_PLUGIN_IDS[BUILTIN_PLUGIN_NUM]
Definition: schema.h:63
gs::Schema::GetPluginDir
std::string GetPluginDir() const
Definition: schema.cc:1348
gs::Schema::edge_label_num
label_t edge_label_num() const
Definition: schema.cc:104
gs::Schema::BUILTIN_PAGERANK_PLUGIN_ID
static constexpr uint8_t BUILTIN_PAGERANK_PLUGIN_ID
Definition: schema.h:52
gs::IdIndexer< std::string, label_t >
gs::Schema::SetVersion
void SetVersion(const std::string &version)
Definition: schema.cc:1356
result.h
gs::Schema::eprop_names_
std::map< uint32_t, std::vector< std::string > > eprop_names_
Definition: schema.h:271
gs::Schema::set_vertex_properties
void set_vertex_properties(label_t label_id, const std::vector< PropertyType > &types, const std::vector< StorageStrategy > &strategies={})
Definition: schema.cc:120
gs::Schema::get_vertex_label_name
std::string get_vertex_label_name(label_t index) const
Definition: schema.cc:359
gs::Schema::SetDescription
void SetDescription(const std::string &description)
Definition: schema.cc:1352
gs::Schema::GetVersion
std::string GetVersion() const
Definition: schema.cc:1357
gs::Schema::ie_strategy_
std::map< uint32_t, EdgeStrategy > ie_strategy_
Definition: schema.h:274
gs::Schema::has_vertex_label
bool has_vertex_label(const std::string &label) const
Definition: schema.cc:1406
gs::Schema::has_multi_props_edge_
bool has_multi_props_edge_
Definition: schema.h:285
gs::Schema::BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_ID
static constexpr uint8_t BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_ID
Definition: schema.h:54
gs::Schema::eproperties_
std::map< uint32_t, std::vector< PropertyType > > eproperties_
Definition: schema.h:270
gs::Schema::BUILTIN_PAGERANK_PLUGIN_NAME
static constexpr const char * BUILTIN_PAGERANK_PLUGIN_NAME
Definition: schema.h:53
gs::Schema::Clear
void Clear()
Definition: schema.cc:35
gs::Schema::get_vertex_description
const std::string & get_vertex_description(const std::string &label) const
Definition: schema.cc:155
gs::Schema::MAX_PLUGIN_ID
static constexpr uint8_t MAX_PLUGIN_ID
Definition: schema.h:34
gs::Schema::label_type
label_t label_type
Definition: schema.h:73
gs::Schema::Equals
bool Equals(const Schema &other) const
Definition: schema.cc:445
id_indexer.h
gs::Schema::HQPS_ADHOC_WRITE_PLUGIN_ID
static constexpr uint8_t HQPS_ADHOC_WRITE_PLUGIN_ID
Definition: schema.h:37
types.h
gs::Schema::plugin_dir_
std::string plugin_dir_
Definition: schema.h:282
gs::Schema::get_vertex_property_names
const std::vector< std::string > & get_vertex_property_names(const std::string &label) const
Definition: schema.cc:139
gs::Schema::sort_on_compactions_
std::map< uint32_t, bool > sort_on_compactions_
Definition: schema.h:277
gs::Schema::GetPlugins
const std::unordered_map< std::string, std::pair< std::string, uint8_t > > & GetPlugins() const
Definition: schema.cc:1224
gs::EdgeStrategy
EdgeStrategy
Definition: types.h:24
gs::Schema::get_vertex_properties
const std::vector< PropertyType > & get_vertex_properties(const std::string &label) const
Definition: schema.cc:128
gs::Schema::BUILTIN_PLUGIN_NAMES
static constexpr const char * BUILTIN_PLUGIN_NAMES[BUILTIN_PLUGIN_NUM]
Definition: schema.h:60
gs::Schema::BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_NAME
static constexpr const char * BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_NAME
Definition: schema.h:55
gs::Schema::ADHOC_READ_PLUGIN_ID_STR
static constexpr const char * ADHOC_READ_PLUGIN_ID_STR
Definition: schema.h:40
gs::Schema::vertex_has_property
bool vertex_has_property(const std::string &label, const std::string &prop) const
Definition: schema.cc:1362
gs::Schema::get_edge_label_name
std::string get_edge_label_name(label_t index) const
Definition: schema.cc:367
gs::Schema::contains_vertex_label
bool contains_vertex_label(const std::string &label) const
Definition: schema.cc:108
gs::Schema::add_edge_label
void add_edge_label(const std::string &src_label, const std::string &dst_label, const std::string &edge_label, const std::vector< PropertyType > &properties, const std::vector< std::string > &prop_names, EdgeStrategy oe=EdgeStrategy::kMultiple, EdgeStrategy ie=EdgeStrategy::kMultiple, bool oe_mutable=true, bool ie_mutable=true, bool sort_on_compaction=false, const std::string &description="")
Definition: schema.cc:73
gs::Schema::generate_edge_label
uint32_t generate_edge_label(label_t src, label_t dst, label_t edge) const
Definition: schema.cc:434
gs::Schema::get_max_vnum
size_t get_max_vnum(const std::string &label) const
Definition: schema.cc:181
gs::Schema::vproperties_
std::vector< std::vector< PropertyType > > vproperties_
Definition: schema.h:263
gs::Schema::exist
bool exist(const std::string &src_label, const std::string &dst_label, const std::string &edge_label) const
Definition: schema.cc:186
gs::Schema::contains_edge_label
bool contains_edge_label(const std::string &label) const
Definition: schema.cc:354
gs::Schema::DEFAULT_SCHEMA_VERSION
static constexpr const char * DEFAULT_SCHEMA_VERSION
Definition: schema.h:69
gs::Schema::GetCompatibleVersions
static const std::vector< std::string > & GetCompatibleVersions()
Definition: schema.cc:1460
gs::label_t
uint8_t label_t
Definition: types.h:32
gs::Schema::IsBuiltinPlugin
static bool IsBuiltinPlugin(const std::string &plugin_name)
Definition: schema.cc:23
gs::Schema::incoming_edge_mutable
bool incoming_edge_mutable(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:322
gs::Schema::vprop_names_
std::vector< std::vector< std::string > > vprop_names_
Definition: schema.h:264
gs::Schema::HQPS_ADHOC_WRITE_PLUGIN_ID_STR
static constexpr const char * HQPS_ADHOC_WRITE_PLUGIN_ID_STR
Definition: schema.h:39
gs::Schema::elabel_indexer_
IdIndexer< std::string, label_t > elabel_indexer_
Definition: schema.h:262
table.h
gs::Schema::~Schema
~Schema()
gs::Schema::edge_label_to_index
label_t edge_label_to_index(const std::string &label)
Definition: schema.cc:428
gs::Schema::vprop_storage_
std::vector< std::vector< StorageStrategy > > vprop_storage_
Definition: schema.h:269
gs::Schema::get_vertex_label_id
label_t get_vertex_label_id(const std::string &label) const
Definition: schema.cc:113
gs::Schema::has_multi_props_edge
bool has_multi_props_edge() const
Definition: schema.cc:1359
gs::Schema::v_descriptions_
std::vector< std::string > v_descriptions_
Definition: schema.h:265
gs::Schema::get_vertex_primary_key
const std::vector< std::tuple< PropertyType, std::string, size_t > > & get_vertex_primary_key(label_t index) const
Definition: schema.cc:376
gs::Schema::v_primary_keys_
std::vector< std::vector< std::tuple< PropertyType, std::string, size_t > > > v_primary_keys_
Definition: schema.h:267
gs::Schema::HQPS_ADHOC_READ_PLUGIN_ID
static constexpr uint8_t HQPS_ADHOC_READ_PLUGIN_ID
Definition: schema.h:36
gs::Schema::edge_has_property
bool edge_has_property(const std::string &src_label, const std::string &dst_label, const std::string &edge_label, const std::string &prop) const
Definition: schema.cc:1387