1
0
Fork 0
arangodb/arangod/Aql/SubqueryEndExecutionNode.cpp

147 lines
5.1 KiB
C++

////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2014-2019 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 Markus Pfeiffer
////////////////////////////////////////////////////////////////////////////////
#include "SubqueryEndExecutionNode.h"
#include "Aql/Ast.h"
#include "Aql/ExecutionBlockImpl.h"
#include "Aql/ExecutionPlan.h"
#include "Aql/Query.h"
#include "Aql/RegisterPlan.h"
#include "Aql/SubqueryEndExecutor.h"
#include "Meta/static_assert_size.h"
#include "Transaction/Context.h"
#include "Transaction/Methods.h"
#include <velocypack/Iterator.h>
#include <velocypack/velocypack-aliases.h>
using namespace arangodb;
using namespace arangodb::aql;
namespace {
bool CompareVariables(Variable const* mine, Variable const* yours) {
if (mine == nullptr || yours == nullptr) {
return mine == nullptr && yours == nullptr;
}
return mine->isEqualTo(*yours);
}
} // namespace
SubqueryEndNode::SubqueryEndNode(ExecutionPlan* plan, arangodb::velocypack::Slice const& base)
: ExecutionNode(plan, base),
_inVariable(Variable::varFromVPack(plan->getAst(), base, "inVariable", true)),
_outVariable(Variable::varFromVPack(plan->getAst(), base, "outVariable")) {}
void SubqueryEndNode::toVelocyPackHelper(VPackBuilder& nodes, unsigned flags,
std::unordered_set<ExecutionNode const*>& seen) const {
ExecutionNode::toVelocyPackHelperGeneric(nodes, flags, seen);
nodes.add(VPackValue("outVariable"));
_outVariable->toVelocyPack(nodes);
if (_inVariable != nullptr) {
nodes.add(VPackValue("inVariable"));
_inVariable->toVelocyPack(nodes);
}
nodes.close();
}
std::unique_ptr<ExecutionBlock> SubqueryEndNode::createBlock(
ExecutionEngine& engine,
std::unordered_map<ExecutionNode*, ExecutionBlock*> const& cache) const {
transaction::Methods* trx = _plan->getAst()->query()->trx();
TRI_ASSERT(trx != nullptr);
ExecutionNode const* previousNode = getFirstDependency();
TRI_ASSERT(previousNode != nullptr);
auto inputRegisters = std::make_shared<std::unordered_set<RegisterId>>();
auto outputRegisters = std::make_shared<std::unordered_set<RegisterId>>();
auto inReg = variableToRegisterOptionalId(_inVariable);
if (inReg != RegisterPlan::MaxRegisterId) {
inputRegisters->emplace(inReg);
}
auto outReg = variableToRegisterId(_outVariable);
outputRegisters->emplace(outReg);
auto const vpackOptions = trx->transactionContextPtr()->getVPackOptions();
SubqueryEndExecutorInfos infos(inputRegisters, outputRegisters,
getRegisterPlan()->nrRegs[previousNode->getDepth()],
getRegisterPlan()->nrRegs[getDepth()], getRegsToClear(),
calcRegsToKeep(), vpackOptions, inReg, outReg);
return std::make_unique<ExecutionBlockImpl<SubqueryEndExecutor>>(&engine, this,
std::move(infos));
}
ExecutionNode* SubqueryEndNode::clone(ExecutionPlan* plan, bool withDependencies,
bool withProperties) const {
auto outVariable = _outVariable;
auto inVariable = _inVariable;
if (withProperties) {
outVariable = plan->getAst()->variables()->createVariable(outVariable);
if (inVariable != nullptr) {
inVariable = plan->getAst()->variables()->createVariable(inVariable);
}
}
auto c = std::make_unique<SubqueryEndNode>(plan, _id, inVariable, outVariable);
return cloneHelper(std::move(c), withDependencies, withProperties);
}
void SubqueryEndNode::replaceOutVariable(Variable const* var) {
_outVariable = var;
}
CostEstimate SubqueryEndNode::estimateCost() const {
TRI_ASSERT(_dependencies.size() == 1);
CostEstimate estimate = _dependencies.at(0)->getCost();
return estimate;
}
bool SubqueryEndNode::isEqualTo(ExecutionNode const& other) const {
TRI_ASSERT(_outVariable != nullptr);
if (other.getType() != getType()) {
return false;
}
try {
SubqueryEndNode const& p = dynamic_cast<SubqueryEndNode const&>(other);
TRI_ASSERT(p._outVariable != nullptr);
if (!CompareVariables(_outVariable, p._outVariable) ||
!CompareVariables(_inVariable, p._inVariable)) {
// One of the variables does not match
return false;
}
return ExecutionNode::isEqualTo(p);
} catch (const std::bad_cast&) {
TRI_ASSERT(false);
return false;
}
}