summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/killcursors_common.h
diff options
context:
space:
mode:
authorQingyang Chen <qingyang.chen@10gen.com>2015-08-12 18:10:50 -0400
committerQingyang Chen <qingyang.chen@10gen.com>2015-08-14 14:13:11 -0400
commit7ef276007ccf21dd4bb36f7e7087df2f2e1b4c73 (patch)
tree31bbae99460783bd788c1cbd4c9ddc4624654ca5 /src/mongo/db/commands/killcursors_common.h
parent0e588ccffa48945c6435eab8930bc11ae6213085 (diff)
downloadmongo-7ef276007ccf21dd4bb36f7e7087df2f2e1b4c73.tar.gz
SERVER-5811 ClusterKillCursorsCmd
Diffstat (limited to 'src/mongo/db/commands/killcursors_common.h')
-rw-r--r--src/mongo/db/commands/killcursors_common.h95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/mongo/db/commands/killcursors_common.h b/src/mongo/db/commands/killcursors_common.h
new file mode 100644
index 00000000000..f8d0ed4fd44
--- /dev/null
+++ b/src/mongo/db/commands/killcursors_common.h
@@ -0,0 +1,95 @@
+/**
+ * Copyright (C) 2015 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 <http://www.gnu.org/licenses/>.
+ *
+ * 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.
+ */
+
+#define MONGO_LOG_DEFAULT_COMPONENT ::mongo::logger::LogComponent::kQuery
+
+#include "mongo/db/commands.h"
+#include "mongo/db/cursor_id.h"
+
+namespace mongo {
+
+/**
+ * Base class for the killCursors command, which attempts to kill all given cursors. Contains code
+ * common to mongos and mongod implementations.
+ */
+class KillCursorsCmdBase : public Command {
+public:
+ KillCursorsCmdBase() : Command("killCursors") {}
+
+ bool isWriteCommandForConfigServer() const final {
+ return false;
+ }
+
+ bool slaveOk() const final {
+ return false;
+ }
+
+ bool slaveOverrideOk() const final {
+ return true;
+ }
+
+ bool maintenanceOk() const final {
+ return false;
+ }
+
+ bool adminOnly() const final {
+ return false;
+ }
+
+ void help(std::stringstream& help) const final {
+ help << "kill a list of cursor ids";
+ }
+
+ bool shouldAffectCommandCounter() const final {
+ return true;
+ }
+
+ Status checkAuthForCommand(ClientBasic* client,
+ const std::string& dbname,
+ const BSONObj& cmdObj) final;
+
+ bool run(OperationContext* txn,
+ const std::string& dbname,
+ BSONObj& cmdObj,
+ int options,
+ std::string& errmsg,
+ BSONObjBuilder& result) final;
+
+private:
+ /**
+ * Kill the cursor with id 'cursorId' in namespace 'nss'. Use 'txn' if necessary.
+ *
+ * Returns Status::OK() if the cursor was killed, or ErrorCodes::CursorNotFound if there is no
+ * such cursor, or ErrorCodes::OperationFailed if the cursor cannot be killed.
+ */
+ virtual Status _killCursor(OperationContext* txn,
+ const NamespaceString& nss,
+ CursorId cursorId) = 0;
+};
+
+} // namespace mongo