/** * 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 "mongo/base/status.h" #include "mongo/db/matcher/expression_with_placeholder.h" #include "mongo/db/query/collation/collator_interface.h" #include "mongo/db/query/plan_executor.h" #include "mongo/db/update/update_driver.h" namespace mongo { class CanonicalQuery; class OperationContext; class UpdateRequest; /** * This class takes a pointer to an UpdateRequest, and converts that request into a parsed form * via the parseRequest() method. A ParsedUpdate can then be used to retrieve a PlanExecutor * capable of executing the update. * * It is invalid to request that the UpdateStage return the prior or newly-updated version of a * document during a multi-update. It is also invalid to request that a ProjectionStage be * applied to the UpdateStage if the UpdateStage would not return any document. * * No locks need to be held during parsing. * * The query part of the update is parsed to a CanonicalQuery, and the update part is parsed * using the UpdateDriver. */ class ParsedUpdate { ParsedUpdate(const ParsedUpdate&) = delete; ParsedUpdate& operator=(const ParsedUpdate&) = delete; public: /** * Parses the array filters portion of the update request. */ static StatusWith>> parseArrayFilters(const boost::intrusive_ptr& expCtx, const std::vector& rawArrayFiltersIn, const NamespaceString& nss); /** * Constructs a parsed update. * * The objects pointed to by "request" and "extensionsCallback" must stay in scope for the life * of the constructed ParsedUpdate. */ ParsedUpdate(OperationContext* opCtx, const UpdateRequest* request, const ExtensionsCallback& extensionsCallback); /** * Parses the update request to a canonical query and an update driver. On success, the * parsed update can be used to create a PlanExecutor for this update. */ Status parseRequest(); /** * As an optimization, we do not create a canonical query if the predicate is a simple * _id equality. This method can be used to force full parsing to a canonical query, * as a fallback if the idhack path is not available (e.g. no _id index). */ Status parseQueryToCQ(); /** * Get the raw request. */ const UpdateRequest* getRequest() const; /** * Get a pointer to the update driver, the abstraction which both parses the update and * is capable of applying mods / computing damages. */ UpdateDriver* getDriver(); /** * Get the YieldPolicy, adjusted for GodMode. */ PlanExecutor::YieldPolicy yieldPolicy() const; /** * As an optimization, we don't create a canonical query for updates with simple _id * queries. Use this method to determine whether or not we actually parsed the query. */ bool hasParsedQuery() const; /** * Returns a const pointer to the canonical query. Requires that hasParsedQuery() is true. */ const CanonicalQuery* getParsedQuery() const { invariant(_canonicalQuery); return _canonicalQuery.get(); } /** * Releases ownership of the canonical query to the caller. */ std::unique_ptr releaseParsedQuery(); /** * Sets this ParsedUpdate's collator. * * This setter can be used to override the collator that was created from the update request * during ParsedUpdate construction. */ void setCollator(std::unique_ptr collator); /** * Never returns nullptr. */ boost::intrusive_ptr expCtx() const { return _expCtx; } private: /** * Parses the query portion of the update request. */ Status parseQuery(); /** * Parses the update-descriptor portion of the update request. */ void parseUpdate(); // Unowned pointer to the transactional context. OperationContext* _opCtx; // Unowned pointer to the request object to process. const UpdateRequest* const _request; // The array filters for the parsed update. Owned here. std::map> _arrayFilters; boost::intrusive_ptr _expCtx; // Driver for processing updates on matched documents. UpdateDriver _driver; // Parsed query object, or NULL if the query proves to be an id hack query. std::unique_ptr _canonicalQuery; // Reference to an extensions callback used when parsing to a canonical query. const ExtensionsCallback& _extensionsCallback; }; } // namespace mongo