mirror of https://gitee.com/bigwinds/arangodb
252 lines
8.7 KiB
C++
252 lines
8.7 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany
|
|
/// Copyright 2004-2014 triAGENS 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 Dr. Frank Celler
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef ARANGOD_INDEXES_EDGE_INDEX_H
|
|
#define ARANGOD_INDEXES_EDGE_INDEX_H 1
|
|
|
|
#include "Basics/Common.h"
|
|
#include "Basics/AssocMulti.h"
|
|
#include "Indexes/Index.h"
|
|
#include "Indexes/IndexIterator.h"
|
|
#include "VocBase/vocbase.h"
|
|
#include "VocBase/voc-types.h"
|
|
|
|
namespace arangodb {
|
|
|
|
class EdgeIndexIterator final : public IndexIterator {
|
|
public:
|
|
typedef arangodb::basics::AssocMulti<arangodb::velocypack::Slice,
|
|
TRI_doc_mptr_t, uint32_t,
|
|
true> TRI_EdgeIndexHash_t;
|
|
|
|
TRI_doc_mptr_t* next() override;
|
|
|
|
void reset() override;
|
|
|
|
EdgeIndexIterator(arangodb::Transaction* trx,
|
|
TRI_EdgeIndexHash_t const* index,
|
|
arangodb::velocypack::Builder&& searchValues)
|
|
: _trx(trx),
|
|
_index(index),
|
|
_searchValues(searchValues),
|
|
_keys(_searchValues.slice()),
|
|
_position(0),
|
|
_last(nullptr),
|
|
_buffer(nullptr),
|
|
_posInBuffer(0),
|
|
_batchSize(50) { // This might be adjusted
|
|
}
|
|
|
|
EdgeIndexIterator(arangodb::Transaction* trx,
|
|
TRI_EdgeIndexHash_t const* index,
|
|
arangodb::velocypack::Slice searchValues)
|
|
: _trx(trx),
|
|
_index(index),
|
|
_searchValues(arangodb::velocypack::Builder::clone(searchValues)),
|
|
_keys(_searchValues.slice()),
|
|
_position(0),
|
|
_last(nullptr),
|
|
_buffer(nullptr),
|
|
_posInBuffer(0),
|
|
_batchSize(50) { // This might be adjusted
|
|
}
|
|
|
|
~EdgeIndexIterator() {
|
|
// Free the vector space, not the content
|
|
delete _buffer;
|
|
}
|
|
|
|
private:
|
|
arangodb::Transaction* _trx;
|
|
TRI_EdgeIndexHash_t const* _index;
|
|
arangodb::velocypack::Builder const _searchValues;
|
|
arangodb::velocypack::Slice const _keys;
|
|
size_t _position;
|
|
TRI_doc_mptr_t* _last;
|
|
std::vector<TRI_doc_mptr_t*>* _buffer;
|
|
size_t _posInBuffer;
|
|
size_t _batchSize;
|
|
};
|
|
|
|
class AnyDirectionEdgeIndexIterator final : public IndexIterator {
|
|
public:
|
|
TRI_doc_mptr_t* next() override;
|
|
|
|
void reset() override;
|
|
|
|
AnyDirectionEdgeIndexIterator(EdgeIndexIterator* outboundIterator,
|
|
EdgeIndexIterator* inboundIterator)
|
|
: _outbound(outboundIterator),
|
|
_inbound(inboundIterator),
|
|
_useInbound(false) {}
|
|
|
|
~AnyDirectionEdgeIndexIterator() {
|
|
delete _outbound;
|
|
delete _inbound;
|
|
}
|
|
|
|
private:
|
|
EdgeIndexIterator* _outbound;
|
|
EdgeIndexIterator* _inbound;
|
|
std::unordered_set<TRI_doc_mptr_t*> _seen;
|
|
bool _useInbound;
|
|
};
|
|
|
|
class EdgeIndex final : public Index {
|
|
public:
|
|
EdgeIndex() = delete;
|
|
|
|
EdgeIndex(TRI_idx_iid_t, struct TRI_document_collection_t*);
|
|
|
|
explicit EdgeIndex(VPackSlice const&);
|
|
|
|
~EdgeIndex();
|
|
|
|
static void buildSearchValue(TRI_edge_direction_e, std::string const&,
|
|
arangodb::velocypack::Builder&);
|
|
|
|
static void buildSearchValueFromArray(TRI_edge_direction_e,
|
|
arangodb::velocypack::Slice const,
|
|
arangodb::velocypack::Builder&);
|
|
|
|
public:
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief typedef for hash tables
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
typedef arangodb::basics::AssocMulti<arangodb::velocypack::Slice, TRI_doc_mptr_t,
|
|
uint32_t, true> TRI_EdgeIndexHash_t;
|
|
|
|
public:
|
|
IndexType type() const override final {
|
|
return Index::TRI_IDX_TYPE_EDGE_INDEX;
|
|
}
|
|
|
|
bool isSorted() const override final { return false; }
|
|
|
|
bool hasSelectivityEstimate() const override final { return true; }
|
|
|
|
double selectivityEstimate() const override final;
|
|
|
|
bool dumpFields() const override final { return true; }
|
|
|
|
size_t memory() const override final;
|
|
|
|
void toVelocyPack(VPackBuilder&, bool) const override final;
|
|
|
|
void toVelocyPackFigures(VPackBuilder&) const override final;
|
|
|
|
int insert(arangodb::Transaction*, struct TRI_doc_mptr_t const*,
|
|
bool) override final;
|
|
|
|
int remove(arangodb::Transaction*, struct TRI_doc_mptr_t const*,
|
|
bool) override final;
|
|
|
|
int batchInsert(arangodb::Transaction*,
|
|
std::vector<TRI_doc_mptr_t const*> const*,
|
|
size_t) override final;
|
|
|
|
int sizeHint(arangodb::Transaction*, size_t) override final;
|
|
|
|
bool hasBatchInsert() const override final { return true; }
|
|
|
|
TRI_EdgeIndexHash_t* from() { return _edgesFrom; }
|
|
|
|
TRI_EdgeIndexHash_t* to() { return _edgesTo; }
|
|
|
|
bool supportsFilterCondition(arangodb::aql::AstNode const*,
|
|
arangodb::aql::Variable const*, size_t, size_t&,
|
|
double&) const override;
|
|
|
|
IndexIterator* iteratorForCondition(arangodb::Transaction*,
|
|
IndexIteratorContext*,
|
|
arangodb::aql::Ast*,
|
|
arangodb::aql::AstNode const*,
|
|
arangodb::aql::Variable const*,
|
|
bool) const override;
|
|
|
|
arangodb::aql::AstNode* specializeCondition(
|
|
arangodb::aql::AstNode*, arangodb::aql::Variable const*) const override;
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief Transform the list of search slices to search values.
|
|
/// This will multiply all IN entries and simply return all other
|
|
/// entries.
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
void expandInSearchValues(arangodb::velocypack::Slice const,
|
|
arangodb::velocypack::Builder&) const override;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates an IndexIterator for the given VelocyPackSlices.
|
|
/// The searchValue is a an Array with exactly two Entries, one of them
|
|
/// has to be NONE.
|
|
/// If the first is set it means we are searching for _from (OUTBOUND),
|
|
/// if the second is set we are searching for _to (INBOUND).
|
|
/// The slice that is set has to be list of keys to search for.
|
|
/// Each key needs to have the following formats:
|
|
///
|
|
/// 1) {"eq": <compareValue>} // The value in index is exactly this
|
|
///
|
|
/// Reverse is not supported, hence ignored
|
|
/// NOTE: The iterator is only valid as long as the slice points to
|
|
/// a valid memory region.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
IndexIterator* iteratorForSlice(arangodb::Transaction*, IndexIteratorContext*,
|
|
arangodb::velocypack::Slice const,
|
|
bool) const override;
|
|
|
|
private:
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief create the iterator
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
IndexIterator* createIterator(
|
|
arangodb::Transaction*, IndexIteratorContext*,
|
|
arangodb::aql::AstNode const*,
|
|
std::vector<arangodb::aql::AstNode const*> const&) const;
|
|
|
|
private:
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief the hash table for _from
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
TRI_EdgeIndexHash_t* _edgesFrom;
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief the hash table for _to
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
TRI_EdgeIndexHash_t* _edgesTo;
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief number of buckets effectively used by the index
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
size_t _numBuckets;
|
|
};
|
|
}
|
|
|
|
#endif
|