mirror of https://gitee.com/bigwinds/arangodb
153 lines
4.3 KiB
C++
153 lines
4.3 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2017 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 Andrey Abramov
|
|
/// @author Vasiliy Nabatchikov
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef ARANGOD_IRESEARCH__IRESEARCH_MMFILES_LINK_H
|
|
#define ARANGOD_IRESEARCH__IRESEARCH_MMFILES_LINK_H 1
|
|
|
|
#include "IResearchLink.h"
|
|
|
|
#include "Indexes/Index.h"
|
|
|
|
NS_BEGIN(arangodb)
|
|
NS_BEGIN(iresearch)
|
|
|
|
class IResearchMMFilesLink final
|
|
: public arangodb::Index, public IResearchLink {
|
|
public:
|
|
DECLARE_SPTR(Index);
|
|
|
|
virtual ~IResearchMMFilesLink();
|
|
|
|
virtual void batchInsert(
|
|
transaction::Methods* trx,
|
|
std::vector<std::pair<arangodb::LocalDocumentId, arangodb::velocypack::Slice>> const& documents,
|
|
std::shared_ptr<arangodb::basics::LocalTaskQueue> queue
|
|
) override {
|
|
IResearchLink::batchInsert(trx, documents, queue);
|
|
}
|
|
|
|
virtual bool canBeDropped() const override {
|
|
return IResearchLink::canBeDropped();
|
|
}
|
|
|
|
virtual int drop() override {
|
|
return IResearchLink::drop();
|
|
}
|
|
|
|
virtual bool hasBatchInsert() const override {
|
|
return IResearchLink::hasBatchInsert();
|
|
}
|
|
|
|
virtual bool hasSelectivityEstimate() const override {
|
|
return IResearchLink::hasSelectivityEstimate();
|
|
}
|
|
|
|
virtual arangodb::Result insert(
|
|
transaction::Methods* trx,
|
|
LocalDocumentId const& documentId,
|
|
VPackSlice const& doc,
|
|
OperationMode mode
|
|
) override {
|
|
return IResearchLink::insert(trx, documentId, doc, mode);
|
|
}
|
|
|
|
virtual bool isPersistent() const override {
|
|
return IResearchLink::isPersistent();
|
|
}
|
|
|
|
virtual bool isSorted() const override {
|
|
return IResearchLink::isSorted();
|
|
}
|
|
|
|
virtual void load() override {
|
|
IResearchLink::load();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief create and initialize an iResearch View Link instance
|
|
/// @return nullptr on failure
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
static ptr make(
|
|
arangodb::LogicalCollection* collection,
|
|
arangodb::velocypack::Slice const& definition,
|
|
TRI_idx_iid_t id,
|
|
bool isClusterConstructor
|
|
) noexcept;
|
|
|
|
virtual bool matchesDefinition(
|
|
arangodb::velocypack::Slice const& slice
|
|
) const override {
|
|
return IResearchLink::matchesDefinition(slice);
|
|
}
|
|
|
|
virtual size_t memory() const override {
|
|
return IResearchLink::memory();
|
|
}
|
|
|
|
arangodb::Result remove(
|
|
transaction::Methods* trx,
|
|
LocalDocumentId const& documentId,
|
|
VPackSlice const& doc,
|
|
OperationMode mode
|
|
) override {
|
|
return IResearchLink::remove(trx, documentId, doc, mode);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fill and return a JSON description of a IResearchLink object
|
|
/// @param withFigures output 'figures' section with e.g. memory size
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
using Index::toVelocyPack; // for Index::toVelocyPack(bool, bool)
|
|
virtual void toVelocyPack(
|
|
arangodb::velocypack::Builder& builder,
|
|
bool withFigures,
|
|
bool forPeristence
|
|
) const override;
|
|
|
|
virtual IndexType type() const override {
|
|
return IResearchLink::type();
|
|
}
|
|
|
|
virtual char const* typeName() const override {
|
|
return IResearchLink::typeName();
|
|
}
|
|
|
|
virtual void unload() override {
|
|
int res = IResearchLink::unload();
|
|
if (res != TRI_ERROR_NO_ERROR) {
|
|
THROW_ARANGO_EXCEPTION(res);
|
|
}
|
|
}
|
|
|
|
private:
|
|
IResearchMMFilesLink(
|
|
TRI_idx_iid_t iid,
|
|
arangodb::LogicalCollection* collection
|
|
);
|
|
};
|
|
|
|
NS_END // iresearch
|
|
NS_END // arangodb
|
|
|
|
#endif
|