/** * Copyright (C) 2018-present MongoDB, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * Server Side Public License for more details. * * You should have received a copy of the Server Side Public License * along with this program. If not, see * . * * As a special exception, the copyright holders give permission to link the * code of portions of this program with the OpenSSL library under certain * conditions as described in each individual source file and distribute * linked combinations including the program with the OpenSSL library. You * must comply with the Server Side Public License in all respects for * all of the code used other than as permitted herein. If you modify file(s) * with this exception, you may extend this exception to your version of the * file(s), but you are not obligated to do so. If you do not wish to do so, * delete this exception statement from your version. If you delete this * exception statement from all source files in the program, then also delete * it in the license file. */ #pragma once #include #include "mongo/db/exec/document_value/value_comparator.h" #include "mongo/db/pipeline/document_source.h" #include "mongo/db/pipeline/document_source_match.h" #include "mongo/db/pipeline/document_source_sequential_document_cache.h" #include "mongo/db/pipeline/document_source_unwind.h" #include "mongo/db/pipeline/expression.h" #include "mongo/db/pipeline/lite_parsed_pipeline.h" #include "mongo/db/pipeline/lookup_set_cache.h" namespace mongo { /** * Queries separate collection for equality matches with documents in the pipeline collection. * Adds matching documents to a new array field in the input document. */ class DocumentSourceLookUp final : public DocumentSource { public: static constexpr StringData kStageName = "$lookup"_sd; struct LetVariable { LetVariable(std::string name, boost::intrusive_ptr expression, Variables::Id id) : name(std::move(name)), expression(std::move(expression)), id(id) {} std::string name; boost::intrusive_ptr expression; Variables::Id id; }; class LiteParsed final : public LiteParsedDocumentSourceNestedPipelines { public: static std::unique_ptr parse(const NamespaceString& nss, const BSONElement& spec); LiteParsed(std::string parseTimeName, NamespaceString foreignNss, boost::optional pipeline, bool hasInternalCollation) : LiteParsedDocumentSourceNestedPipelines( std::move(parseTimeName), std::move(foreignNss), std::move(pipeline)), _hasInternalCollation(hasInternalCollation) {} /** * Lookup from a sharded collection may not be allowed. */ bool allowShardedForeignCollection(NamespaceString nss) const override final { const bool foreignShardedAllowed = feature_flags::gFeatureFlagShardedLookup.isEnabled( serverGlobalParams.featureCompatibility); if (foreignShardedAllowed) { return true; } auto involvedNss = getInvolvedNamespaces(); return (involvedNss.find(nss) == involvedNss.end()); } void assertPermittedInAPIVersion(const APIParameters& apiParameters) const final { if (apiParameters.getAPIVersion() && *apiParameters.getAPIVersion() == "1" && apiParameters.getAPIStrict().value_or(false)) { uassert( ErrorCodes::APIStrictError, "The _internalCollation argument to $lookup is not supported in API Version 1", !_hasInternalCollation); } } PrivilegeVector requiredPrivileges(bool isMongos, bool bypassDocumentValidation) const override final; private: bool _hasInternalCollation = false; }; const char* getSourceName() const final; void serializeToArray( std::vector& array, boost::optional explain = boost::none) const final; /** * This function utilizes both pipeline and field syntax; this implementation should replace the * one in serializeToArray() when this combined syntax is enabled by default. */ void serializeToArrayWithBothSyntaxes( std::vector& array, boost::optional explain = boost::none) const; /** * Returns the 'as' path, and possibly fields modified by an absorbed $unwind. */ GetModPathsReturn getModifiedPaths() const final; /** * Reports the StageConstraints of this $lookup instance. A $lookup constructed with pipeline * syntax will inherit certain constraints from the stages in its pipeline. */ StageConstraints constraints(Pipeline::SplitState) const final; DepsTracker::State getDependencies(DepsTracker* deps) const final; boost::optional distributedPlanLogic() final; void addInvolvedCollections(stdx::unordered_set* collectionNames) const final; void detachFromOperationContext() final; void reattachToOperationContext(OperationContext* opCtx) final; bool usedDisk() final; const SpecificStats* getSpecificStats() const final { return &_stats; } static boost::intrusive_ptr createFromBson( BSONElement elem, const boost::intrusive_ptr& expCtx); static boost::intrusive_ptr createFromBsonWithCacheSize( BSONElement elem, const boost::intrusive_ptr& expCtx, size_t maxCacheSizeBytes) { auto dsLookup = createFromBson(elem, expCtx); static_cast(dsLookup.get())->reInitializeCache(maxCacheSizeBytes); return dsLookup; } /** * Builds the BSONObj used to query the foreign collection and wraps it in a $match. */ static BSONObj makeMatchStageFromInput(const Document& input, const FieldPath& localFieldName, const std::string& foreignFieldName, const BSONObj& additionalFilter); /** * Helper to absorb an $unwind stage. Only used for testing this special behavior. */ void setUnwindStage(const boost::intrusive_ptr& unwind) { invariant(!_unwindSrc); _unwindSrc = unwind; } bool hasLocalFieldForeignFieldJoin() const { return _localField != boost::none; } bool hasPipeline() const { return _userPipeline.size() > 0; } boost::optional getForeignField() const { return _foreignField; } boost::optional getLocalField() const { return _localField; } const std::vector& getLetVariables() const { return _letVariables; } /** * Returns a non-executable pipeline which can be useful for introspection. In this pipeline, * all view definitions are resolved. This pipeline is present in both the sub-pipeline version * of $lookup and the simpler 'localField/foreignField' version, but because it is not tied to * any document to look up it is missing variable definitions for the former type and the $match * stage which will be added to enforce the join criteria for the latter. */ const auto& getResolvedIntrospectionPipeline() const { return *_resolvedIntrospectionPipeline; } auto& getResolvedIntrospectionPipeline() { return *_resolvedIntrospectionPipeline; } const Variables& getVariables_forTest() { return _variables; } const VariablesParseState& getVariablesParseState_forTest() { return _variablesParseState; } std::unique_ptr getSubPipeline_forTest(const Document& inputDoc) { return buildPipeline(inputDoc); } protected: GetNextResult doGetNext() final; void doDispose() final; /** * Attempts to combine with a subsequent $unwind stage, setting the internal '_unwindSrc' * field. */ Pipeline::SourceContainer::iterator doOptimizeAt(Pipeline::SourceContainer::iterator itr, Pipeline::SourceContainer* container) final; private: /** * Target constructor. Handles common-field initialization for the syntax-specific delegating * constructors. */ DocumentSourceLookUp(NamespaceString fromNs, std::string as, boost::optional> fromCollator, const boost::intrusive_ptr& expCtx); /** * Constructor used for a $lookup stage specified using the {from: ..., localField: ..., * foreignField: ..., as: ...} syntax. */ DocumentSourceLookUp(NamespaceString fromNs, std::string as, std::string localField, std::string foreignField, boost::optional> fromCollator, const boost::intrusive_ptr& expCtx); /** * Constructor used for a $lookup stage specified using the pipeline syntax {from: ..., * pipeline: [...], as: ...} or using both the localField/foreignField syntax and pipeline * syntax: {from: ..., localField: ..., foreignField: ..., pipeline: [...], as: ...} */ DocumentSourceLookUp(NamespaceString fromNs, std::string as, std::vector pipeline, BSONObj letVariables, boost::optional> fromCollator, boost::optional> localForeignFields, const boost::intrusive_ptr& expCtx); /** * Should not be called; use serializeToArray instead. */ Value serialize(boost::optional explain = boost::none) const final { MONGO_UNREACHABLE; } GetNextResult unwindResult(); /** * Resolves let defined variables against 'localDoc' and stores the results in 'variables'. */ void resolveLetVariables(const Document& localDoc, Variables* variables); /** * Builds a parsed pipeline for introspection (e.g. constraints, dependencies). Any sub-$lookup * pipelines will be built recursively. */ void initializeResolvedIntrospectionPipeline(); /** * Builds the $lookup pipeline using the resolved view definition for a sharded foreign view and * updates the '_resolvedPipeline', as well as '_fieldMatchPipelineIdx' in the case of a * 'foreign' join. */ std::unique_ptr buildPipelineFromViewDefinition( std::vector serializedPipeline, ExpressionContext::ResolvedNamespace resolvedNamespace); /** * Builds the $lookup pipeline and resolves any variables using the passed 'inputDoc', adding a * cursor and/or cache source as appropriate. */ std::unique_ptr buildPipeline(const Document& inputDoc); /** * Reinitialize the cache with a new max size. May only be called if this DSLookup was created * with pipeline syntax only, the cache has not been frozen or abandoned, and no data has been * added to it. */ void reInitializeCache(size_t maxCacheSizeBytes) { invariant(!hasLocalFieldForeignFieldJoin()); invariant(!_cache || (_cache->isBuilding() && _cache->sizeBytes() == 0)); _cache.emplace(maxCacheSizeBytes); } /** * Method to accumulate the plan summary stats from all stages of the pipeline. */ void recordPlanSummaryStats(const Pipeline& pipeline); /** * Given a mutable document, appends execution stats such as 'totalDocsExamined', * 'totalKeysExamined', 'collectionScans', 'indexesUsed', etc. to it. */ void appendSpecificExecStats(MutableDocument& doc) const; /** * Returns true if 'featureFlagShardedLookup' is enabled and we are not in a transaction. */ bool foreignShardedLookupAllowed() const; DocumentSourceLookupStats _stats; NamespaceString _fromNs; NamespaceString _resolvedNs; FieldPath _as; boost::optional _additionalFilter; // For use when $lookup is specified with localField/foreignField syntax. boost::optional _localField; boost::optional _foreignField; // Indicates the index in '_resolvedPipeline' where the local/foreignField $match resides. boost::optional _fieldMatchPipelineIdx; // Holds 'let' defined variables defined both in this stage and in parent pipelines. These are // copied to the '_fromExpCtx' ExpressionContext's 'variables' and 'variablesParseState' for use // in foreign pipeline execution. Variables _variables; VariablesParseState _variablesParseState; // Caches documents returned by the non-correlated prefix of the $lookup pipeline during the // first iteration, up to a specified size limit in bytes. If this limit is not exceeded by the // time we hit EOF, subsequent iterations of the pipeline will draw from the cache rather than // from a cursor source. boost::optional _cache; // The ExpressionContext used when performing aggregation pipelines against the '_resolvedNs' // namespace. boost::intrusive_ptr _fromExpCtx; // When a `_internalCollation` has been specified on a $lookup stage, we will set that collation // on `_fromExpCtx`. An explicit simple collation however is represented in the same way as the // default binary collation. We need to differentiate between the two to avoid serializing the // collation when not set explicitly. bool _hasExplicitCollation = false; // The aggregation pipeline to perform against the '_resolvedNs' namespace. Referenced view // namespaces have been resolved. std::vector _resolvedPipeline; // The aggregation pipeline defined with the user request, prior to optimization and view // resolution. std::vector _userPipeline; // A pipeline parsed from _resolvedPipeline at creation time, intended to support introspective // functions. If sub-$lookup stages are present, their pipelines are constructed recursively. std::unique_ptr _resolvedIntrospectionPipeline; std::vector _letVariables; boost::intrusive_ptr _matchSrc; boost::intrusive_ptr _unwindSrc; // The following members are used to hold onto state across getNext() calls when '_unwindSrc' is // not null. long long _cursorIndex = 0; std::unique_ptr _pipeline; boost::optional _input; boost::optional _nextValue; }; } // namespace mongo