/** * Copyright (C) 2013 MongoDB Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * 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 * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General 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 GNU Affero General 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/bson/bsonobj.h" #include "mongo/bson/bsonobjbuilder.h" #include "mongo/s/catalog/type_chunk.h" #include "mongo/s/ns_targeter.h" #include "mongo/stdx/memory.h" #include "mongo/unittest/unittest.h" namespace mongo { /** * A MockRange represents a range with endpoint that a MockNSTargeter uses to direct writes to * a particular endpoint. */ struct MockRange { MockRange(const ShardEndpoint& endpoint, const BSONObj& minKey, const BSONObj& maxKey) : endpoint(endpoint), range(minKey, maxKey) {} const ShardEndpoint endpoint; const ChunkRange range; }; /** * A MockNSTargeter directs writes to particular endpoints based on a list of MockRanges given * to the mock targeter on initialization. * * No refreshing behavior is currently supported. */ class MockNSTargeter : public NSTargeter { public: void init(const NamespaceString& nss, std::vector mockRanges) { ASSERT(nss.isValid()); _nss = nss; ASSERT(!mockRanges.empty()); _mockRanges = std::move(mockRanges); } const NamespaceString& getNS() const { return _nss; } /** * Returns a ShardEndpoint for the doc from the mock ranges */ StatusWith targetInsert(OperationContext* opCtx, const BSONObj& doc) const override { auto swEndpoints = _targetQuery(doc); if (!swEndpoints.isOK()) return swEndpoints.getStatus(); ASSERT_EQ(1U, swEndpoints.getValue().size()); return swEndpoints.getValue().front(); } /** * Returns the first ShardEndpoint for the query from the mock ranges. Only can handle * queries of the form { field : { $gte : , $lt : } }. */ StatusWith> targetUpdate( OperationContext* opCtx, const write_ops::UpdateOpEntry& updateDoc) const override { return _targetQuery(updateDoc.getQ()); } /** * Returns the first ShardEndpoint for the query from the mock ranges. Only can handle * queries of the form { field : { $gte : , $lt : } }. */ StatusWith> targetDelete( OperationContext* opCtx, const write_ops::DeleteOpEntry& deleteDoc) const { return _targetQuery(deleteDoc.getQ()); } StatusWith> targetCollection() const override { // No-op return std::vector{}; } StatusWith> targetAllShards(OperationContext* opCtx) const override { std::vector endpoints; for (const auto& range : _mockRanges) { endpoints.push_back(range.endpoint); } return endpoints; } void noteCouldNotTarget() override { // No-op } void noteStaleResponse(const ShardEndpoint& endpoint, const StaleConfigInfo& staleInfo) override { // No-op } Status refreshIfNeeded(OperationContext* opCtx, bool* wasChanged) override { // No-op if (wasChanged) *wasChanged = false; return Status::OK(); } private: static ChunkRange _parseRange(const BSONObj& query) { const StringData fieldName(query.firstElement().fieldName()); if (query.firstElement().isNumber()) { return {BSON(fieldName << query.firstElement().numberInt()), BSON(fieldName << query.firstElement().numberInt() + 1)}; } else if (query.firstElement().type() == Object) { BSONObj queryRange = query.firstElement().Obj(); ASSERT(!queryRange[GTE.l_].eoo()); ASSERT(!queryRange[LT.l_].eoo()); BSONObjBuilder minKeyB; minKeyB.appendAs(queryRange[GTE.l_], fieldName); BSONObjBuilder maxKeyB; maxKeyB.appendAs(queryRange[LT.l_], fieldName); return {minKeyB.obj(), maxKeyB.obj()}; } FAIL("Invalid query"); MONGO_UNREACHABLE; } /** * Returns the first ShardEndpoint for the query from the mock ranges. Only handles queries of * the form { field : { $gte : , $lt : } }. */ StatusWith> _targetQuery(const BSONObj& query) const { const ChunkRange queryRange(_parseRange(query)); std::vector endpoints; for (const auto& range : _mockRanges) { if (queryRange.overlapWith(range.range)) { endpoints.push_back(range.endpoint); } } if (endpoints.empty()) return {ErrorCodes::UnknownError, "no mock ranges found for query"}; return endpoints; } NamespaceString _nss; std::vector _mockRanges; }; inline void assertEndpointsEqual(const ShardEndpoint& endpointA, const ShardEndpoint& endpointB) { ASSERT_EQUALS(endpointA.shardName, endpointB.shardName); ASSERT_EQUALS(endpointA.shardVersion.toLong(), endpointB.shardVersion.toLong()); ASSERT_EQUALS(endpointA.shardVersion.epoch(), endpointB.shardVersion.epoch()); } } // namespace mongo