5a42e15c4a
Squashed messages from 9 commits: 9. Properties now uses PropertyFamily and contained classes. Fetching,seting,clearing properties can be done with PropertyFamilyKey or PropertyTypeKey. Hierarchy of newly added clases is: Vertices -n-> PropertyFamily {name: String} <-1-n-> PropertyType {type: Property::Flags} Edges -n-> PropertyFamily {name: String} <-1-n-> PropertyType {type: Property::Flags} PropertyFamilyKey -> PropertyType PropertyTypeKey -> PropertyType PropertyType t0,t1; let t0!=t1 be true let t0.family==t1.family be true then next is true PropertyTypeKey{&t0}!=PropertyTypeKey{&t1} PropertyFamilyKey{&t0}==PropertyFamilyKey{&t1} PropertyFamilyKey{&t0}==PropertyTypeKey{&t1} PropertyTypeKey{&t0}==PropertyFamilyKey{&t1} 8. Intermedate commit. Noticed that integration queries throw SEGFAULT. 7. Defined interface for indexes. Fixed three memory leaks. Fixed integration_queries test which now passes. 6. Commit which return Xorshift128plus to valid shape. 5. Tmp commit. 4. Label Index is compiling. 3. tmp 2. Vertex::Accessor now updates Label index. 1. Applied changes for code review.
42 lines
929 B
C++
42 lines
929 B
C++
#pragma once
|
|
|
|
#include "storage/record_accessor.hpp"
|
|
#include "storage/vertex.hpp"
|
|
|
|
class Vertices;
|
|
|
|
class Vertex::Accessor : public RecordAccessor<Vertex, Vertex::Accessor>
|
|
{
|
|
public:
|
|
using RecordAccessor::RecordAccessor;
|
|
|
|
static Vertex::Accessor create(Vertex *t, mvcc::VersionList<Vertex> *vlist,
|
|
DbTransaction &db)
|
|
{
|
|
return Vertex::Accessor(t, vlist, db);
|
|
}
|
|
|
|
size_t out_degree() const;
|
|
|
|
size_t in_degree() const;
|
|
|
|
size_t degree() const;
|
|
|
|
// False if it's label with it already.
|
|
bool add_label(const Label &label);
|
|
|
|
// False if it doesn't have label.
|
|
bool remove_label(const Label &label);
|
|
|
|
bool has_label(const Label &label) const;
|
|
|
|
const std::set<label_ref_t> &labels() const;
|
|
|
|
auto out() const;
|
|
|
|
auto in() const;
|
|
|
|
// True if there exists edge other->this
|
|
bool in_contains(Vertex::Accessor const &other) const;
|
|
};
|