/** * Copyright (C) 2014 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. */ #include "mongo/platform/basic.h" #include "mongo/db/catalog/database.h" #include "mongo/db/client.h" #include "mongo/db/catalog/collection.h" #include "mongo/db/commands.h" #include "mongo/db/curop.h" #include "mongo/db/exec/count.h" #include "mongo/db/query/get_executor.h" #include "mongo/db/query/explain.h" #include "mongo/db/repl/repl_coordinator_global.h" #include "mongo/util/log.h" namespace mongo { /* select count(*) */ class CmdCount : public Command { public: virtual bool isWriteCommandForConfigServer() const { return false; } CmdCount() : Command("count") { } virtual bool slaveOk() const { // ok on --slave setups return repl::getGlobalReplicationCoordinator()->getSettings().slave == repl::SimpleSlave; } virtual bool slaveOverrideOk() const { return true; } virtual bool maintenanceOk() const { return false; } virtual bool adminOnly() const { return false; } virtual void help( stringstream& help ) const { help << "count objects in collection"; } virtual void addRequiredPrivileges(const std::string& dbname, const BSONObj& cmdObj, std::vector* out) { ActionSet actions; actions.addAction(ActionType::find); out->push_back(Privilege(parseResourcePattern(dbname, cmdObj), actions)); } virtual Status explain(OperationContext* txn, const std::string& dbname, const BSONObj& cmdObj, ExplainCommon::Verbosity verbosity, BSONObjBuilder* out) const { CountRequest request; Status parseStatus = parseRequest(dbname, cmdObj, &request); if (!parseStatus.isOK()) { return parseStatus; } request.explain = true; // Acquire the db read lock. AutoGetCollectionForRead ctx(txn, request.ns); Collection* collection = ctx.getCollection(); PlanExecutor* rawExec; Status getExecStatus = getExecutorCount(txn, collection, request, &rawExec); if (!getExecStatus.isOK()) { return getExecStatus; } scoped_ptr exec(rawExec); exec->setYieldPolicy(PlanExecutor::YIELD_AUTO); return Explain::explainStages(txn, exec.get(), verbosity, out); } virtual bool run(OperationContext* txn, const string& dbname, BSONObj& cmdObj, int, string& errmsg, BSONObjBuilder& result, bool fromRepl) { CountRequest request; Status parseStatus = parseRequest(dbname, cmdObj, &request); if (!parseStatus.isOK()) { return appendCommandStatus(result, parseStatus); } AutoGetCollectionForRead ctx(txn, request.ns); Collection* collection = ctx.getCollection(); PlanExecutor* rawExec; Status getExecStatus = getExecutorCount(txn, collection, request, &rawExec); if (!getExecStatus.isOK()) { return appendCommandStatus(result, getExecStatus); } scoped_ptr exec(rawExec); exec->setYieldPolicy(PlanExecutor::YIELD_AUTO); // Store the plan summary string in CurOp. if (NULL != txn->getCurOp()) { txn->getCurOp()->debug().planSummary = Explain::getPlanSummary(exec.get()); } Status execPlanStatus = exec->executePlan(); if (!execPlanStatus.isOK()) { return appendCommandStatus(result, execPlanStatus); } // Plan is done executing. We just need to pull the count out of the root stage. invariant(STAGE_COUNT == exec->getRootStage()->stageType()); CountStage* countStage = static_cast(exec->getRootStage()); const CountStats* countStats = static_cast(countStage->getSpecificStats()); result.appendNumber("n", countStats->nCounted); return true; } /** * Parses a count command object, 'cmdObj'. * * On success, fills in the out-parameter 'request' and returns an OK status. * * Returns a failure status if 'cmdObj' is not well formed. */ Status parseRequest(const std::string& dbname, const BSONObj& cmdObj, CountRequest* request) const { long long skip = 0; if (cmdObj["skip"].isNumber()) { skip = cmdObj["skip"].numberLong(); if (skip < 0) { return Status(ErrorCodes::BadValue, "skip value is negative in count query"); } } else if (cmdObj["skip"].ok()) { return Status(ErrorCodes::BadValue, "skip value is not a valid number"); } long long limit = 0; if (cmdObj["limit"].isNumber()) { limit = cmdObj["limit"].numberLong(); } else if (cmdObj["limit"].ok()) { return Status(ErrorCodes::BadValue, "limit value is not a valid number"); } // For counts, limit and -limit mean the same thing. if (limit < 0) { limit = -limit; } // We don't validate that "query" is a nested object due to SERVER-15456. BSONObj query = cmdObj.getObjectField("query"); BSONObj hintObj; if (Object == cmdObj["hint"].type()) { hintObj = cmdObj["hint"].Obj(); } else if (String == cmdObj["hint"].type()) { const std::string hint = cmdObj.getStringField("hint"); hintObj = BSON("$hint" << hint); } // Parsed correctly. Fill out 'request' with the results. request->ns = parseNs(dbname, cmdObj); request->query = query; request->hint = hintObj; request->limit = limit; request->skip = skip; // By default, count requests are regular count not explain of count. request->explain = false; return Status::OK(); } } cmdCount; static long long applySkipLimit(long long num, const BSONObj& cmd) { BSONElement s = cmd["skip"]; BSONElement l = cmd["limit"]; if (s.isNumber()) { num = num - s.numberLong(); if (num < 0) { num = 0; } } if (l.isNumber()) { long long limit = l.numberLong(); if (limit < 0) { limit = -limit; } // 0 means no limit. if (limit < num && limit != 0) { num = limit; } } return num; } long long runCount(OperationContext* txn, const string& ns, const BSONObj &cmd, string &err, int &errCode) { AutoGetCollectionForRead ctx(txn, ns); Collection* collection = ctx.getCollection(); if (NULL == collection) { err = "ns missing"; return -1; } const NamespaceString nss(ns); CountRequest request; CmdCount* countComm = static_cast(Command::findCommand("count")); Status parseStatus = countComm->parseRequest(nss.db().toString(), cmd, &request); if (!parseStatus.isOK()) { err = parseStatus.reason(); errCode = parseStatus.code(); return -1; } if (request.query.isEmpty()) { return applySkipLimit(collection->numRecords(txn), cmd); } PlanExecutor* rawExec; Status getExecStatus = getExecutorCount(txn, collection, request, &rawExec); if (!getExecStatus.isOK()) { err = getExecStatus.reason(); errCode = parseStatus.code(); return -1; } scoped_ptr exec(rawExec); exec->setYieldPolicy(PlanExecutor::YIELD_AUTO); // Store the plan summary string in CurOp. if (NULL != txn->getCurOp()) { txn->getCurOp()->debug().planSummary = Explain::getPlanSummary(exec.get()); } Status execPlanStatus = exec->executePlan(); if (!execPlanStatus.isOK()) { err = execPlanStatus.reason(); errCode = execPlanStatus.code(); return -2; } // Plan is done executing. We just need to pull the count out of the root stage. invariant(STAGE_COUNT == exec->getRootStage()->stageType()); CountStage* countStage = static_cast(exec->getRootStage()); const CountStats* countStats = static_cast(countStage->getSpecificStats()); return countStats->nCounted; } } // namespace mongo