mirror of https://gitee.com/bigwinds/arangodb
186 lines
6.5 KiB
C++
186 lines
6.5 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_MMFILES_EDGE_INDEX_H
|
|
#define ARANGOD_MMFILES_EDGE_INDEX_H 1
|
|
|
|
#include "Basics/AssocMulti.h"
|
|
#include "Basics/Common.h"
|
|
#include "Indexes/Index.h"
|
|
#include "Indexes/IndexIterator.h"
|
|
#include "MMFiles/MMFilesIndexElement.h"
|
|
#include "VocBase/voc-types.h"
|
|
#include "VocBase/vocbase.h"
|
|
|
|
#include <velocypack/Iterator.h>
|
|
#include <velocypack/Slice.h>
|
|
|
|
namespace arangodb {
|
|
namespace basics {
|
|
class LocalTaskQueue;
|
|
}
|
|
|
|
class MMFilesEdgeIndex;
|
|
|
|
typedef arangodb::basics::AssocMulti<arangodb::velocypack::Slice, MMFilesSimpleIndexElement,
|
|
uint32_t, false> TRI_MMFilesEdgeIndexHash_t;
|
|
|
|
class MMFilesEdgeIndexIterator final : public IndexIterator {
|
|
public:
|
|
MMFilesEdgeIndexIterator(LogicalCollection* collection, TransactionMethods* trx,
|
|
ManagedDocumentResult* mmdr,
|
|
arangodb::MMFilesEdgeIndex const* index,
|
|
TRI_MMFilesEdgeIndexHash_t const* indexImpl,
|
|
std::unique_ptr<VPackBuilder>& keys);
|
|
|
|
~MMFilesEdgeIndexIterator();
|
|
|
|
char const* typeName() const override { return "edge-index-iterator"; }
|
|
|
|
bool next(TokenCallback const& cb, size_t limit) override;
|
|
|
|
void reset() override;
|
|
|
|
private:
|
|
TRI_MMFilesEdgeIndexHash_t const* _index;
|
|
std::unique_ptr<arangodb::velocypack::Builder> _keys;
|
|
arangodb::velocypack::ArrayIterator _iterator;
|
|
std::vector<MMFilesSimpleIndexElement> _buffer;
|
|
size_t _posInBuffer;
|
|
size_t _batchSize;
|
|
MMFilesSimpleIndexElement _lastElement;
|
|
};
|
|
|
|
class MMFilesEdgeIndex final : public Index {
|
|
public:
|
|
MMFilesEdgeIndex() = delete;
|
|
|
|
MMFilesEdgeIndex(TRI_idx_iid_t, arangodb::LogicalCollection*);
|
|
|
|
~MMFilesEdgeIndex();
|
|
|
|
static void buildSearchValue(TRI_edge_direction_e, std::string const&,
|
|
arangodb::velocypack::Builder&);
|
|
|
|
static void buildSearchValue(TRI_edge_direction_e,
|
|
arangodb::velocypack::Slice const&,
|
|
arangodb::velocypack::Builder&);
|
|
|
|
static void buildSearchValueFromArray(TRI_edge_direction_e,
|
|
arangodb::velocypack::Slice const,
|
|
arangodb::velocypack::Builder&);
|
|
|
|
public:
|
|
/// @brief typedef for hash tables
|
|
public:
|
|
IndexType type() const override { return Index::TRI_IDX_TYPE_EDGE_INDEX; }
|
|
|
|
bool allowExpansion() const override { return false; }
|
|
|
|
bool canBeDropped() const override { return false; }
|
|
|
|
bool isSorted() const override { return false; }
|
|
|
|
bool hasSelectivityEstimate() const override { return true; }
|
|
|
|
double selectivityEstimate(
|
|
arangodb::StringRef const* = nullptr) const override;
|
|
|
|
size_t memory() const override;
|
|
|
|
void toVelocyPack(VPackBuilder&, bool) const override;
|
|
|
|
void toVelocyPackFigures(VPackBuilder&) const override;
|
|
|
|
int insert(TransactionMethods*, TRI_voc_rid_t,
|
|
arangodb::velocypack::Slice const&, bool isRollback) override;
|
|
|
|
int remove(TransactionMethods*, TRI_voc_rid_t,
|
|
arangodb::velocypack::Slice const&, bool isRollback) override;
|
|
|
|
void batchInsert(TransactionMethods*,
|
|
std::vector<std::pair<TRI_voc_rid_t, VPackSlice>> const&,
|
|
arangodb::basics::LocalTaskQueue*) override;
|
|
|
|
int unload() override;
|
|
|
|
int sizeHint(TransactionMethods*, size_t) override;
|
|
|
|
bool hasBatchInsert() const override { return true; }
|
|
|
|
TRI_MMFilesEdgeIndexHash_t* from() { return _edgesFrom; }
|
|
|
|
TRI_MMFilesEdgeIndexHash_t* to() { return _edgesTo; }
|
|
|
|
bool supportsFilterCondition(arangodb::aql::AstNode const*,
|
|
arangodb::aql::Variable const*, size_t, size_t&,
|
|
double&) const override;
|
|
|
|
IndexIterator* iteratorForCondition(TransactionMethods*,
|
|
ManagedDocumentResult*,
|
|
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;
|
|
|
|
private:
|
|
/// @brief create the iterator
|
|
IndexIterator* createEqIterator(TransactionMethods*,
|
|
ManagedDocumentResult*,
|
|
arangodb::aql::AstNode const*,
|
|
arangodb::aql::AstNode const*) const;
|
|
|
|
IndexIterator* createInIterator(TransactionMethods*,
|
|
ManagedDocumentResult*,
|
|
arangodb::aql::AstNode const*,
|
|
arangodb::aql::AstNode const*) const;
|
|
|
|
/// @brief add a single value node to the iterator's keys
|
|
void handleValNode(VPackBuilder* keys,
|
|
arangodb::aql::AstNode const* valNode) const;
|
|
|
|
MMFilesSimpleIndexElement buildFromElement(TRI_voc_rid_t, arangodb::velocypack::Slice const& doc) const;
|
|
MMFilesSimpleIndexElement buildToElement(TRI_voc_rid_t, arangodb::velocypack::Slice const& doc) const;
|
|
|
|
private:
|
|
/// @brief the hash table for _from
|
|
TRI_MMFilesEdgeIndexHash_t* _edgesFrom;
|
|
|
|
/// @brief the hash table for _to
|
|
TRI_MMFilesEdgeIndexHash_t* _edgesTo;
|
|
|
|
/// @brief number of buckets effectively used by the index
|
|
size_t _numBuckets;
|
|
};
|
|
}
|
|
|
|
#endif
|