summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/working_set_computed_data.h
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2019-07-19 18:30:33 -0400
committerDavid Storch <david.storch@10gen.com>2019-07-26 16:05:59 -0400
commit94fcb7d03e08014bb6a20ab010539811548d9e83 (patch)
treee44d2d923f59e0430645a13c3844f367cfa1bdb3 /src/mongo/db/exec/working_set_computed_data.h
parentdc4db514a1ee737db0553f9535033453502b3ac7 (diff)
downloadmongo-94fcb7d03e08014bb6a20ab010539811548d9e83.tar.gz
SERVER-42288 Consolidate Document and WorkingSetMember metadata implementations.
Diffstat (limited to 'src/mongo/db/exec/working_set_computed_data.h')
-rw-r--r--src/mongo/db/exec/working_set_computed_data.h125
1 files changed, 0 insertions, 125 deletions
diff --git a/src/mongo/db/exec/working_set_computed_data.h b/src/mongo/db/exec/working_set_computed_data.h
deleted file mode 100644
index 3d71d4a815e..00000000000
--- a/src/mongo/db/exec/working_set_computed_data.h
+++ /dev/null
@@ -1,125 +0,0 @@
-/**
- * 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
- * <http://www.mongodb.com/licensing/server-side-public-license>.
- *
- * 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/db/exec/working_set.h"
-
-namespace mongo {
-
-class TextScoreComputedData : public WorkingSetComputedData {
-public:
- TextScoreComputedData(double score)
- : WorkingSetComputedData(WSM_COMPUTED_TEXT_SCORE), _score(score) {}
-
- double getScore() const {
- return _score;
- }
-
- TextScoreComputedData* clone() const final {
- return new TextScoreComputedData(_score);
- }
-
-private:
- double _score;
-};
-
-class GeoDistanceComputedData : public WorkingSetComputedData {
-public:
- GeoDistanceComputedData(double dist)
- : WorkingSetComputedData(WSM_COMPUTED_GEO_DISTANCE), _dist(dist) {}
-
- double getDist() const {
- return _dist;
- }
-
- GeoDistanceComputedData* clone() const final {
- return new GeoDistanceComputedData(_dist);
- }
-
-private:
- double _dist;
-};
-
-class IndexKeyComputedData : public WorkingSetComputedData {
-public:
- // Given an index key 'dehydratedKey' with no field names, returns a new BSONObj after adding
- // field names according to 'keyPattern'.
- static BSONObj rehydrateKey(const BSONObj& keyPattern, const BSONObj& dehydratedKey);
-
- IndexKeyComputedData(BSONObj key)
- : WorkingSetComputedData(WSM_INDEX_KEY), _key(key.getOwned()) {}
-
- BSONObj getKey() const {
- return _key;
- }
-
- IndexKeyComputedData* clone() const final {
- return new IndexKeyComputedData(_key);
- }
-
-private:
- BSONObj _key;
-};
-
-class GeoNearPointComputedData : public WorkingSetComputedData {
-public:
- GeoNearPointComputedData(BSONObj point)
- : WorkingSetComputedData(WSM_GEO_NEAR_POINT), _point(point.getOwned()) {}
-
- BSONObj getPoint() const {
- return _point;
- }
-
- GeoNearPointComputedData* clone() const final {
- return new GeoNearPointComputedData(_point);
- }
-
-private:
- BSONObj _point;
-};
-
-class SortKeyComputedData : public WorkingSetComputedData {
-public:
- SortKeyComputedData(BSONObj sortKey)
- : WorkingSetComputedData(WSM_SORT_KEY), _sortKey(sortKey.getOwned()) {}
-
- BSONObj getSortKey() const {
- return _sortKey;
- }
-
- SortKeyComputedData* clone() const final {
- return new SortKeyComputedData(_sortKey);
- }
-
-private:
- BSONObj _sortKey;
-};
-
-} // namespace mongo