mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
a07fb60cd4
readable output
115 lines
2.7 KiB
C++
115 lines
2.7 KiB
C++
// message.h
|
|
|
|
#pragma once
|
|
|
|
#include "../util/sock.h"
|
|
#include "protocol.h"
|
|
|
|
class Message;
|
|
|
|
class MessagingPort {
|
|
public:
|
|
enum { DBPort = 27017 };
|
|
|
|
/* channels: if you are a server you can pass ANYCHANNEL to indicate you never initiate a
|
|
msg to someone yourself. the default will assign a new channel id to the messagingport.
|
|
*/
|
|
enum { AUTOASSIGNCHANNEL = -1, ANYCHANNEL = -2 };
|
|
MessagingPort(int channel = AUTOASSIGNCHANNEL);
|
|
~MessagingPort();
|
|
|
|
void shutdown() { if( pc ) pc->shutdown(); pc = 0; }
|
|
|
|
void init(int myUdpPort = 0 );
|
|
|
|
/* it's assumed if you reuse a message object, that it doesn't cross MessagingPort's.
|
|
also, the Message data will go out of scope on the subsequent recv call.
|
|
*/
|
|
bool recv(Message& m);
|
|
void reply(Message& received, Message& response);
|
|
bool call(SockAddr& to, Message& toSend, Message& response);
|
|
void say(int channel, SockAddr& to, Message& toSend, int responseTo = -1);
|
|
void say(SockAddr& to, Message& toSend, int responseTo = -1) {
|
|
say(channel(), to, toSend, responseTo);
|
|
}
|
|
|
|
int channel() { return myChannel; }
|
|
private:
|
|
ProtocolConnection *pc;
|
|
UDPConnection conn;
|
|
int myChannel;
|
|
enum { BufSize = 64 * 1024 };
|
|
char buf[BufSize];
|
|
};
|
|
|
|
#pragma pack(push)
|
|
#pragma pack(1)
|
|
|
|
enum Operations {
|
|
opReply = 1, /* reply. responseTo is set. */
|
|
|
|
dbMsg = 1000, /* generic msg command followed by a string */
|
|
|
|
dbUpdate = 2001, /* update object */
|
|
dbInsert = 2002,
|
|
// dbGetByOID = 2003,
|
|
dbQuery = 2004,
|
|
dbGetMore = 2005,
|
|
dbDelete = 2006
|
|
};
|
|
|
|
struct MsgData {
|
|
int len; /* len of the msg, including this field */
|
|
MSGID id; /* request/reply id's match... */
|
|
int responseTo; /* id of the message we are responding to */
|
|
int operation;
|
|
char _data[4];
|
|
|
|
int dataLen();
|
|
};
|
|
const int MsgDataHeaderSize = sizeof(MsgData) - 4;
|
|
inline int MsgData::dataLen() { return len - MsgDataHeaderSize; }
|
|
|
|
#pragma pack(pop)
|
|
|
|
class Message {
|
|
public:
|
|
Message() { data = 0; freeIt = false; channel = -1000; }
|
|
~Message() { reset(); }
|
|
|
|
SockAddr from;
|
|
MsgData *data;
|
|
int channel;
|
|
|
|
// int channel() { return data->channel; }
|
|
|
|
void reset() {
|
|
if( freeIt && data )
|
|
free(data);
|
|
data = 0; freeIt = false;
|
|
}
|
|
|
|
void setData(MsgData *d, bool _freeIt) {
|
|
assert( data == 0 );
|
|
freeIt = _freeIt;
|
|
data = d;
|
|
}
|
|
void setData(int operation, const char *msgtxt) {
|
|
setData(operation, msgtxt, strlen(msgtxt)+1);
|
|
}
|
|
void setData(int operation, const char *msgdata, int len) {
|
|
assert(data == 0);
|
|
int dataLen = len + sizeof(MsgData) - 4;
|
|
MsgData *d = (MsgData *) malloc(dataLen);
|
|
memcpy(d->_data, msgdata, len);
|
|
d->len = dataLen;
|
|
d->operation = operation;
|
|
freeIt= true;
|
|
data = d;
|
|
}
|
|
|
|
private:
|
|
bool freeIt;
|
|
};
|
|
|