1
0
Fork 0
arangodb/arangod/Pregel/Graph.h

193 lines
5.4 KiB
C++

////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2016 ArangoDB GmbH, Cologne, Germany
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
///
/// @author Simon Grätzer
////////////////////////////////////////////////////////////////////////////////
#ifndef ARANGODB_PREGEL_GRAPH_STRUCTURE_H
#define ARANGODB_PREGEL_GRAPH_STRUCTURE_H 1
#include <cstdint>
#include <functional>
#include <string>
namespace arangodb {
namespace pregel {
typedef std::string PregelKey;
// typedef uint64_t PregelKey;
typedef uint16_t PregelShard;
const PregelShard InvalidPregelShard = -1;
struct PregelID {
PregelShard shard;
PregelKey key;
PregelID() : shard(InvalidPregelShard), key("") {}
PregelID(PregelShard s, PregelKey const& k) : shard(s), key(k) {}
// PregelID(PregelShard s, std::string const& k) : shard(s),
// key(std::stoull(k)) {}
inline bool operator==(const PregelID& rhs) const {
return shard == rhs.shard && key == rhs.key;
}
inline bool operator<(const PregelID& rhs) const {
return shard < rhs.shard || (shard == rhs.shard && key < rhs.key);
}
bool inline isValid() const {
return shard != InvalidPregelShard && !key.empty();
}
};
template <typename V, typename E>
class GraphStore;
/// @brief header entry for the edge file
template <typename E>
class Edge {
template <typename V, typename E2>
friend class GraphStore;
// PregelShard _sourceShard;
PregelShard _targetShard;
PregelKey _toKey;
E _data;
public:
// EdgeEntry() : _nextEntryOffset(0), _dataSize(0), _vertexIDSize(0) {}
Edge() : _targetShard(InvalidPregelShard) {}
Edge(PregelShard target, PregelKey const& key)
: _targetShard(target), _toKey(key), _data(0) {}
// size_t getSize() { return sizeof(EdgeEntry) + _vertexIDSize + _dataSize; }
PregelKey const& toKey() const { return _toKey; }
// size_t getDataSize() { return _dataSize; }
inline E* data() {
return &_data; // static_cast<E>(this + sizeof(EdgeEntry) + _vertexIDSize);
}
// inline PregelShard sourceShard() const { return _sourceShard; }
inline PregelShard targetShard() const { return _targetShard; }
};
class VertexEntry {
template <typename V, typename E>
friend class GraphStore;
PregelShard _shard;
PregelKey _key;
size_t _vertexDataOffset = 0;
size_t _edgeDataOffset = 0;
size_t _edgeCount = 0;
bool _active = true;
public:
VertexEntry() : _shard(InvalidPregelShard) {}
VertexEntry(PregelShard shard, PregelKey const& key)
: _shard(shard), _key(key) {}
inline size_t getVertexDataOffset() const { return _vertexDataOffset; }
inline size_t getEdgeDataOffset() const { return _edgeDataOffset; }
// inline size_t getSize() { return sizeof(VertexEntry) + _vertexIDSize; }
inline size_t getSize() { return sizeof(VertexEntry); }
inline bool active() const { return _active; }
inline void setActive(bool bb) { _active = bb; }
inline PregelShard shard() const { return _shard; }
inline PregelKey const& key() const { return _key; };
PregelID pregelId() const { return PregelID(_shard, _key); }
/*std::string const& key() const {
return std::string(_key, _keySize);
};*/
};
// unused right now
/*class LinkedListIterator {
private:
intptr_t _begin, _end, _current;
VertexIterator(const VertexIterator&) = delete;
VertexIterator& operator=(const FileInfo&) = delete;
public:
typedef VertexIterator iterator;
typedef const VertexIterator const_iterator;
VertexIterator(intptr_t beginPtr, intptr_t endPtr)
: _begin(beginPtr), _end(endPtr), _current(beginPtr) {}
iterator begin() { return VertexIterator(_begin, _end); }
const_iterator begin() const { return VertexIterator(_begin, _end); }
iterator end() {
auto it = VertexIterator(_begin, _end);
it._current = it._end;
return it;
}
const_iterator end() const {
auto it = VertexIterator(_begin, _end);
it._current = it._end;
return it;
}
// prefix ++
VertexIterator& operator++() {
VertexEntry* entry = (VertexEntry*)_current;
_current += entry->getSize();
return *this;
}
// postfix ++
VertexIterator& operator++(int) {
VertexEntry* entry = (VertexEntry*)_current;
_current += entry->getSize();
return *this;
}
VertexEntry* operator*() const {
return _current != _end ? (VertexEntry*)_current : nullptr;
}
bool operator!=(VertexIterator const& other) const {
return _current != other._current;
}
};*/
}
}
namespace std {
template <>
struct hash<arangodb::pregel::PregelID> {
std::size_t operator()(const arangodb::pregel::PregelID& k) const {
using std::size_t;
using std::hash;
using std::string;
// Compute individual hash values for first,
// second and third and combine them using XOR
// and bit shifting:
size_t h1 = std::hash<arangodb::pregel::PregelKey>()(k.key);
size_t h2 = std::hash<size_t>()(k.shard);
return h1 ^ (h2 << 1);
}
};
}
#endif