0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/s/request.h
2009-03-01 23:43:00 -05:00

75 lines
1.4 KiB
C++

// request.h
#pragma once
#include "../stdafx.h"
#include "../util/message.h"
#include "../db/dbmessage.h"
#include "config.h"
namespace mongo {
class Request : boost::noncopyable {
public:
Request( Message& m, AbstractMessagingPort* p );
// ---- message info -----
const char * getns(){
return _d.getns();
}
int op(){
return _m.data->operation();
}
bool expectResponse(){
return op() == dbQuery || op() == dbGetMore;
}
MSGID id(){
return _id;
}
DBConfig * getConfig(){
return _config;
}
ShardManager * getShardManager(){
return _shardInfo;
}
// ---- remote location info -----
string singleServerName();
const char * primaryName(){
return _config->getPrimary().c_str();
}
// ---- low level access ----
void reply( Message & response ){
_p->reply( _m , response , _id );
}
Message& m(){ return _m; }
DbMessage& d(){ return _d; }
AbstractMessagingPort* p(){ return _p; }
void process();
private:
Message& _m;
DbMessage _d;
AbstractMessagingPort* _p;
MSGID _id;
DBConfig * _config;
ShardManager * _shardInfo;
};
}
#include "strategy.h"