Go to the documentation of this file.
16 #ifndef GRAPHSCOPE_FRAGMENT_SCHEMA_H_
17 #define GRAPHSCOPE_FRAGMENT_SCHEMA_H_
19 #include "flex/engines/hqps_db/core/utils/hqps_utils.h"
59 "shortest_path_among_three";
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>>&
86 const std::vector<StorageStrategy>& strategies = {},
87 size_t max_vnum =
static_cast<size_t>(1) << 32,
88 const std::string& description =
"");
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 =
"");
110 label_t label_id,
const std::vector<PropertyType>& types,
111 const std::vector<StorageStrategy>& strategies = {});
114 const std::string& label)
const;
117 const std::string& label)
const;
129 const std::string& label)
const;
133 bool exist(
const std::string& src_label,
const std::string& dst_label,
134 const std::string& edge_label)
const;
140 const std::string& src_label,
const std::string& dst_label,
141 const std::string& label)
const;
148 const std::string& dst_label,
149 const std::string& label)
const;
157 const std::string& src_label,
const std::string& dst_label,
158 const std::string& label)
const;
165 const std::string& prop)
const;
168 const std::string& prop)
const;
171 const std::string& dst_label,
172 const std::string& edge_label,
173 const std::string& prop)
const;
178 const std::string& dst_label,
179 const std::string& edge_label)
const;
185 const std::string& dst_label,
186 const std::string& label)
const;
189 const std::string& dst_label,
190 const std::string& label)
const;
193 const std::string& dst_label,
194 const std::string& label)
const;
197 const std::string& dst_label,
198 const std::string& label)
const;
201 const std::string& dst_label,
202 const std::string& label)
const;
205 const std::string& dst_label,
206 const std::string& label)
const;
216 const std::vector<std::tuple<PropertyType, std::string, size_t>>&
221 void Serialize(std::unique_ptr<grape::LocalIOAdaptor>& writer)
const;
223 void Deserialize(std::unique_ptr<grape::LocalIOAdaptor>& reader);
225 static Result<Schema>
LoadFromYaml(
const std::string& schema_config);
232 const std::unordered_map<std::string, std::pair<std::string, uint8_t>>&
236 const std::vector<std::pair<std::string, std::string>>& plugins);
266 std::vector<std::vector<std::tuple<PropertyType, std::string, size_t>>>
279 std::unordered_map<std::string, std::pair<std::string, uint8_t>>
290 #endif // GRAPHSCOPE_FRAGMENT_SCHEMA_H_
std::map< uint32_t, bool > oe_mutability_
Definition: schema.h:275
static constexpr const uint16_t STRING_DEFAULT_MAX_LENGTH
Definition: schema.h:44
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
static constexpr uint8_t BUILTIN_PLUGIN_NUM
Definition: schema.h:47
bool get_sort_on_compaction(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:332
std::string version_
Definition: schema.h:284
bool has_edge_label(const std::string &src_label, const std::string &dst_label, const std::string &edge_label) const
Definition: schema.cc:1411
static constexpr const char * MAX_LENGTH_KEY
Definition: schema.h:43
label_t get_edge_label_id(const std::string &label) const
Definition: schema.cc:347
std::map< uint32_t, bool > ie_mutability_
Definition: schema.h:276
bool outgoing_edge_mutable(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:312
std::map< uint32_t, std::string > e_descriptions_
Definition: schema.h:272
static constexpr const char * HQPS_ADHOC_READ_PLUGIN_ID_STR
Definition: schema.h:38
static Result< Schema > LoadFromYaml(const std::string &schema_config)
Definition: schema.cc:1434
static constexpr uint8_t ADHOC_READ_PLUGIN_ID
Definition: schema.h:35
EdgeStrategy get_outgoing_edge_strategy(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:292
label_t vertex_label_to_index(const std::string &label)
Definition: schema.cc:414
static constexpr const char * VARCHAR_KEY
Definition: schema.h:42
static constexpr uint8_t BUILTIN_COUNT_VERTICES_PLUGIN_ID
Definition: schema.h:49
static constexpr uint8_t BUILTIN_TVSP_PLUGIN_ID
Definition: schema.h:57
PropertyType get_edge_property(label_t src, label_t dst, label_t edge) const
Definition: schema.cc:252
EdgeStrategy get_incoming_edge_strategy(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:302
void Deserialize(std::unique_ptr< grape::LocalIOAdaptor > &reader)
Definition: schema.cc:396
static constexpr const char * PRIMITIVE_TYPE_KEY
Definition: schema.h:41
std::string description_
Definition: schema.h:283
IdIndexer< std::string, label_t > vlabel_indexer_
Definition: schema.h:261
Definition: adj_list.h:23
bool EmplacePlugins(const std::vector< std::pair< std::string, std::string >> &plugins)
Definition: schema.cc:1230
std::string get_edge_description(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:225
static Result< Schema > LoadFromYamlNode(const YAML::Node &schema_node)
Definition: schema.cc:1449
static const std::vector< std::string > COMPATIBLE_VERSIONS
Definition: schema.h:68
void Serialize(std::unique_ptr< grape::LocalIOAdaptor > &writer) const
Definition: schema.cc:384
const std::vector< StorageStrategy > & get_vertex_storage_strategies(const std::string &label) const
Definition: schema.cc:170
std::map< uint32_t, EdgeStrategy > oe_strategy_
Definition: schema.h:273
bool vertex_has_primary_key(const std::string &label, const std::string &prop) const
Definition: schema.cc:1373
static constexpr uint8_t RESERVED_PLUGIN_NUM
Definition: schema.h:33
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
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
Schema()
Definition: schema.cc:32
std::string GetDescription() const
Definition: schema.cc:1350
std::vector< size_t > max_vnum_
Definition: schema.h:278
void RemovePlugin(const std::string &plugin_name)
Definition: schema.cc:1344
static constexpr const char * BUILTIN_TVSP_PLUGIN_NAME
Definition: schema.h:58
static constexpr const char * BUILTIN_COUNT_VERTICES_PLUGIN_NAME
Definition: schema.h:50
bool valid_edge_property(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:282
void SetPluginDir(const std::string &plugin_dir)
Definition: schema.cc:1342
const std::string & get_vertex_primary_key_name(label_t index) const
std::unordered_map< std::string, std::pair< std::string, uint8_t > > plugin_name_to_path_and_id_
Definition: schema.h:280
label_t vertex_label_num() const
Definition: schema.cc:100
static constexpr uint8_t BUILTIN_PLUGIN_IDS[BUILTIN_PLUGIN_NUM]
Definition: schema.h:63
std::string GetPluginDir() const
Definition: schema.cc:1348
label_t edge_label_num() const
Definition: schema.cc:104
static constexpr uint8_t BUILTIN_PAGERANK_PLUGIN_ID
Definition: schema.h:52
void SetVersion(const std::string &version)
Definition: schema.cc:1356
std::map< uint32_t, std::vector< std::string > > eprop_names_
Definition: schema.h:271
void set_vertex_properties(label_t label_id, const std::vector< PropertyType > &types, const std::vector< StorageStrategy > &strategies={})
Definition: schema.cc:120
std::string get_vertex_label_name(label_t index) const
Definition: schema.cc:359
void SetDescription(const std::string &description)
Definition: schema.cc:1352
std::string GetVersion() const
Definition: schema.cc:1357
std::map< uint32_t, EdgeStrategy > ie_strategy_
Definition: schema.h:274
bool has_vertex_label(const std::string &label) const
Definition: schema.cc:1406
bool has_multi_props_edge_
Definition: schema.h:285
static constexpr uint8_t BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_ID
Definition: schema.h:54
std::map< uint32_t, std::vector< PropertyType > > eproperties_
Definition: schema.h:270
static constexpr const char * BUILTIN_PAGERANK_PLUGIN_NAME
Definition: schema.h:53
void Clear()
Definition: schema.cc:35
const std::string & get_vertex_description(const std::string &label) const
Definition: schema.cc:155
static constexpr uint8_t MAX_PLUGIN_ID
Definition: schema.h:34
label_t label_type
Definition: schema.h:73
bool Equals(const Schema &other) const
Definition: schema.cc:445
static constexpr uint8_t HQPS_ADHOC_WRITE_PLUGIN_ID
Definition: schema.h:37
std::string plugin_dir_
Definition: schema.h:282
const std::vector< std::string > & get_vertex_property_names(const std::string &label) const
Definition: schema.cc:139
std::map< uint32_t, bool > sort_on_compactions_
Definition: schema.h:277
const std::unordered_map< std::string, std::pair< std::string, uint8_t > > & GetPlugins() const
Definition: schema.cc:1224
EdgeStrategy
Definition: types.h:24
const std::vector< PropertyType > & get_vertex_properties(const std::string &label) const
Definition: schema.cc:128
static constexpr const char * BUILTIN_PLUGIN_NAMES[BUILTIN_PLUGIN_NUM]
Definition: schema.h:60
static constexpr const char * BUILTIN_K_DEGREE_NEIGHBORS_PLUGIN_NAME
Definition: schema.h:55
static constexpr const char * ADHOC_READ_PLUGIN_ID_STR
Definition: schema.h:40
bool vertex_has_property(const std::string &label, const std::string &prop) const
Definition: schema.cc:1362
std::string get_edge_label_name(label_t index) const
Definition: schema.cc:367
bool contains_vertex_label(const std::string &label) const
Definition: schema.cc:108
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
uint32_t generate_edge_label(label_t src, label_t dst, label_t edge) const
Definition: schema.cc:434
size_t get_max_vnum(const std::string &label) const
Definition: schema.cc:181
std::vector< std::vector< PropertyType > > vproperties_
Definition: schema.h:263
bool exist(const std::string &src_label, const std::string &dst_label, const std::string &edge_label) const
Definition: schema.cc:186
bool contains_edge_label(const std::string &label) const
Definition: schema.cc:354
static constexpr const char * DEFAULT_SCHEMA_VERSION
Definition: schema.h:69
static const std::vector< std::string > & GetCompatibleVersions()
Definition: schema.cc:1460
uint8_t label_t
Definition: types.h:32
static bool IsBuiltinPlugin(const std::string &plugin_name)
Definition: schema.cc:23
bool incoming_edge_mutable(const std::string &src_label, const std::string &dst_label, const std::string &label) const
Definition: schema.cc:322
std::vector< std::vector< std::string > > vprop_names_
Definition: schema.h:264
static constexpr const char * HQPS_ADHOC_WRITE_PLUGIN_ID_STR
Definition: schema.h:39
IdIndexer< std::string, label_t > elabel_indexer_
Definition: schema.h:262
label_t edge_label_to_index(const std::string &label)
Definition: schema.cc:428
std::vector< std::vector< StorageStrategy > > vprop_storage_
Definition: schema.h:269
label_t get_vertex_label_id(const std::string &label) const
Definition: schema.cc:113
bool has_multi_props_edge() const
Definition: schema.cc:1359
std::vector< std::string > v_descriptions_
Definition: schema.h:265
const std::vector< std::tuple< PropertyType, std::string, size_t > > & get_vertex_primary_key(label_t index) const
Definition: schema.cc:376
std::vector< std::vector< std::tuple< PropertyType, std::string, size_t > > > v_primary_keys_
Definition: schema.h:267
static constexpr uint8_t HQPS_ADHOC_READ_PLUGIN_ID
Definition: schema.h:36
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