0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/db/curop.h

83 lines
2.3 KiB
C
Raw Normal View History

// curop.h
#pragma once
#include "namespace.h"
#include "security.h"
#include "client.h"
namespace mongo {
struct CurOp {
void reset(time_t now, const sockaddr_in &_client) {
active = true;
opNum++;
startTime = now;
ns[0] = '?'; // just in case not set later
*query = 0;
killCurrentOp = 0;
client = _client;
}
bool active;
unsigned opNum;
time_t startTime;
int op;
char ns[Namespace::MaxNsLen+2];
char query[128];
2009-12-08 17:34:57 +01:00
char zero; // what's this for?
struct sockaddr_in client;
CurOp() {
active = false;
opNum = 0;
2009-12-07 21:42:26 +01:00
startTime = 0;
op = 0;
// These addresses should never be written to again. The zeroes are
// placed here as a precaution because currentOp may be accessed
// without the db mutex.
2009-12-07 21:42:26 +01:00
memset(ns, 0, sizeof(ns));
memset(query, 0, sizeof(query));
2009-12-08 17:34:57 +01:00
zero = 0;
}
BSONObj info() {
AuthenticationInfo *ai = currentClient.get()->ai;
if( !ai->isAuthorized("admin") ) {
BSONObjBuilder b;
b.append("err", "unauthorized");
return b.obj();
}
return infoNoauth();
}
BSONObj infoNoauth() {
BSONObjBuilder b;
b.append("opid", opNum);
b.append("active", active);
if( active )
b.append("secs_running", (int) (time(0)-startTime));
if( op == 2004 )
b.append("op", "query");
else if( op == 2005 )
b.append("op", "getMore");
else if( op == 2001 )
b.append("op", "update");
else if( op == 2002 )
b.append("op", "insert");
else if( op == 2006 )
b.append("op", "delete");
else
b.append("op", op);
b.append("ns", ns);
b.append("query", query);
2009-12-07 21:42:26 +01:00
// b.append("inLock", ??
stringstream clientStr;
clientStr << inet_ntoa( client.sin_addr ) << ":" << ntohs( client.sin_port );
b.append("client", clientStr.str());
return b.obj();
}
};
}