2008-06-06 15:43:15 +02:00
|
|
|
// message.h
|
|
|
|
|
2009-10-27 20:58:27 +01:00
|
|
|
/* Copyright 2009 10gen Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2008-07-20 23:37:33 +02:00
|
|
|
|
2008-06-06 15:43:15 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../util/sock.h"
|
2010-01-26 01:32:00 +01:00
|
|
|
#include "../util/atomic_int.h"
|
2008-06-06 15:43:15 +02:00
|
|
|
|
2009-01-14 23:09:51 +01:00
|
|
|
namespace mongo {
|
|
|
|
|
2010-04-06 00:12:18 +02:00
|
|
|
extern bool noUnixSocket;
|
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
class Message;
|
|
|
|
class MessagingPort;
|
|
|
|
class PiggyBackData;
|
2010-01-26 01:32:00 +01:00
|
|
|
typedef AtomicUInt MSGID;
|
2009-01-15 16:17:11 +01:00
|
|
|
|
|
|
|
class Listener {
|
|
|
|
public:
|
2010-04-20 15:59:43 +02:00
|
|
|
Listener(const string &ip, int p, bool logConnect=true ) : _port(p), _ip(ip), _logConnect(logConnect) { }
|
2009-02-18 19:42:32 +01:00
|
|
|
virtual ~Listener() {}
|
2010-04-05 16:51:33 +02:00
|
|
|
void initAndListen(); // never returns unless error (start a thread)
|
2009-01-15 16:17:11 +01:00
|
|
|
|
|
|
|
/* spawn a thread, etc., then return */
|
2010-04-05 14:57:44 +02:00
|
|
|
virtual void accepted(int sock, const SockAddr& from);
|
|
|
|
virtual void accepted(MessagingPort *mp){
|
|
|
|
assert(!"You must overwrite one of the accepted methods");
|
|
|
|
}
|
|
|
|
|
2010-04-20 04:24:37 +02:00
|
|
|
const int _port;
|
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
private:
|
2010-04-07 15:34:14 +02:00
|
|
|
string _ip;
|
|
|
|
bool _logConnect;
|
2009-01-15 16:17:11 +01:00
|
|
|
};
|
2008-06-06 15:43:15 +02:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
class AbstractMessagingPort {
|
|
|
|
public:
|
2009-02-18 01:21:01 +01:00
|
|
|
virtual ~AbstractMessagingPort() { }
|
2009-01-15 16:17:11 +01:00
|
|
|
virtual void reply(Message& received, Message& response, MSGID responseTo) = 0; // like the reply below, but doesn't rely on received.data still being available
|
|
|
|
virtual void reply(Message& received, Message& response) = 0;
|
2009-09-11 22:14:14 +02:00
|
|
|
|
|
|
|
virtual unsigned remotePort() = 0 ;
|
2009-01-15 16:17:11 +01:00
|
|
|
};
|
2008-06-06 15:43:15 +02:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
class MessagingPort : public AbstractMessagingPort {
|
|
|
|
public:
|
2010-04-05 14:57:44 +02:00
|
|
|
MessagingPort(int sock, const SockAddr& farEnd);
|
2010-04-08 21:14:20 +02:00
|
|
|
|
|
|
|
// in some cases the timeout will actually be 2x this value - eg we do a partial send,
|
|
|
|
// then the timeout fires, then we try to send again, then the timeout fires again with
|
|
|
|
// no data sent, then we detect that the other side is down
|
2010-04-20 21:30:37 +02:00
|
|
|
MessagingPort(int timeout = 0, int logLevel = 0 );
|
2010-04-08 21:14:20 +02:00
|
|
|
|
2009-09-11 22:14:14 +02:00
|
|
|
virtual ~MessagingPort();
|
2008-06-06 15:43:15 +02:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
void shutdown();
|
2009-09-11 22:14:14 +02:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
bool connect(SockAddr& farEnd);
|
2008-06-06 15:43:15 +02:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
/* 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, MSGID responseTo);
|
|
|
|
void reply(Message& received, Message& response);
|
|
|
|
bool call(Message& toSend, Message& response);
|
|
|
|
void say(Message& toSend, int responseTo = -1);
|
2008-06-06 15:43:15 +02:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
void piggyBack( Message& toSend , int responseTo = -1 );
|
|
|
|
|
2009-09-11 22:14:14 +02:00
|
|
|
virtual unsigned remotePort();
|
2010-02-12 17:07:57 +01:00
|
|
|
|
2010-04-08 21:14:20 +02:00
|
|
|
// send len or throw SocketException
|
|
|
|
void send( const char * data , int len, const char *context );
|
|
|
|
// recv len or throw SocketException
|
|
|
|
void recv( char * data , int len );
|
|
|
|
|
|
|
|
int unsafe_recv( char *buf, int max );
|
2009-01-15 16:17:11 +01:00
|
|
|
private:
|
|
|
|
int sock;
|
|
|
|
PiggyBackData * piggyBackData;
|
|
|
|
public:
|
|
|
|
SockAddr farEnd;
|
2010-04-08 21:14:20 +02:00
|
|
|
int _timeout;
|
2010-04-20 21:30:37 +02:00
|
|
|
int _logLevel; // passed to log() when logging errors
|
2009-01-15 16:17:11 +01:00
|
|
|
|
|
|
|
friend class PiggyBackData;
|
2008-12-29 02:28:49 +01:00
|
|
|
};
|
|
|
|
|
2009-02-02 04:26:26 +01:00
|
|
|
//#pragma pack()
|
2009-01-15 16:17:11 +01:00
|
|
|
#pragma pack(1)
|
2008-12-29 02:28:49 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
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,
|
|
|
|
dbKillCursors = 2007
|
|
|
|
};
|
2008-12-29 02:28:49 +01:00
|
|
|
|
2009-03-17 22:24:38 +01:00
|
|
|
bool doesOpGetAResponse( int op );
|
|
|
|
|
2010-02-04 16:49:19 +01:00
|
|
|
inline const char * opToString( int op ){
|
|
|
|
switch ( op ){
|
2010-02-11 18:54:02 +01:00
|
|
|
case 0: return "none";
|
2010-02-04 16:49:19 +01:00
|
|
|
case opReply: return "reply";
|
|
|
|
case dbMsg: return "msg";
|
|
|
|
case dbUpdate: return "update";
|
|
|
|
case dbInsert: return "insert";
|
|
|
|
case dbQuery: return "query";
|
|
|
|
case dbGetMore: return "getmore";
|
|
|
|
case dbDelete: return "remove";
|
|
|
|
case dbKillCursors: return "killcursors";
|
2010-02-09 16:35:31 +01:00
|
|
|
default:
|
2010-02-11 18:54:02 +01:00
|
|
|
PRINT(op);
|
2010-02-09 16:35:31 +01:00
|
|
|
assert(0);
|
|
|
|
return "";
|
2010-02-04 16:49:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
struct MsgData {
|
|
|
|
int len; /* len of the msg, including this field */
|
|
|
|
MSGID id; /* request/reply id's match... */
|
|
|
|
MSGID responseTo; /* id of the message we are responding to */
|
|
|
|
int _operation;
|
|
|
|
int operation() const {
|
|
|
|
return _operation;
|
|
|
|
}
|
|
|
|
void setOperation(int o) {
|
|
|
|
_operation = o;
|
|
|
|
}
|
|
|
|
char _data[4];
|
|
|
|
|
|
|
|
int& dataAsInt() {
|
|
|
|
return *((int *) _data);
|
|
|
|
}
|
2009-03-02 15:57:22 +01:00
|
|
|
|
|
|
|
bool valid(){
|
|
|
|
if ( len <= 0 || len > ( 1024 * 1024 * 10 ) )
|
|
|
|
return false;
|
|
|
|
if ( _operation < 0 || _operation > 100000 )
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-15 16:17:11 +01:00
|
|
|
|
|
|
|
int dataLen(); // len without header
|
|
|
|
};
|
|
|
|
const int MsgDataHeaderSize = sizeof(MsgData) - 4;
|
|
|
|
inline int MsgData::dataLen() {
|
|
|
|
return len - MsgDataHeaderSize;
|
2008-12-29 02:28:49 +01:00
|
|
|
}
|
2008-06-06 15:43:15 +02:00
|
|
|
|
2009-02-02 04:21:32 +01:00
|
|
|
#pragma pack()
|
2009-01-09 23:06:14 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
class Message {
|
|
|
|
public:
|
|
|
|
Message() {
|
|
|
|
data = 0;
|
|
|
|
freeIt = false;
|
|
|
|
}
|
|
|
|
Message( void * _data , bool _freeIt ) {
|
|
|
|
data = (MsgData*)_data;
|
|
|
|
freeIt = _freeIt;
|
|
|
|
};
|
|
|
|
~Message() {
|
|
|
|
reset();
|
|
|
|
}
|
2010-03-22 16:47:37 +01:00
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
SockAddr from;
|
|
|
|
MsgData *data;
|
|
|
|
|
2010-03-22 16:47:37 +01:00
|
|
|
int operation() const {
|
|
|
|
return data->operation();
|
|
|
|
}
|
|
|
|
|
2009-01-15 16:17:11 +01:00
|
|
|
Message& operator=(Message& r) {
|
|
|
|
assert( data == 0 );
|
|
|
|
data = r.data;
|
|
|
|
assert( r.freeIt );
|
|
|
|
r.freeIt = false;
|
|
|
|
r.data = 0;
|
|
|
|
freeIt = true;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2010-01-28 23:21:26 +01:00
|
|
|
void setData(int operation, const char *msgdata, size_t len) {
|
2009-01-15 16:17:11 +01:00
|
|
|
assert(data == 0);
|
2010-01-28 23:21:26 +01:00
|
|
|
size_t dataLen = len + sizeof(MsgData) - 4;
|
2009-01-15 16:17:11 +01:00
|
|
|
MsgData *d = (MsgData *) malloc(dataLen);
|
|
|
|
memcpy(d->_data, msgdata, len);
|
|
|
|
d->len = fixEndian(dataLen);
|
|
|
|
d->setOperation(operation);
|
|
|
|
freeIt= true;
|
|
|
|
data = d;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool doIFreeIt() {
|
|
|
|
return freeIt;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool freeIt;
|
|
|
|
};
|
2009-01-14 23:09:51 +01:00
|
|
|
|
2009-02-06 22:21:49 +01:00
|
|
|
class SocketException : public DBException {
|
|
|
|
public:
|
|
|
|
virtual const char* what() const throw() { return "socket exception"; }
|
2009-12-28 23:06:07 +01:00
|
|
|
virtual int getCode(){ return 9001; }
|
2009-02-03 22:48:12 +01:00
|
|
|
};
|
|
|
|
|
2009-03-02 15:57:22 +01:00
|
|
|
MSGID nextMessageId();
|
|
|
|
|
2009-09-11 22:14:14 +02:00
|
|
|
void setClientId( int id );
|
2009-09-14 17:33:35 +02:00
|
|
|
int getClientId();
|
2010-04-20 18:58:04 +02:00
|
|
|
|
|
|
|
extern TicketHolder connTicketHolder;
|
|
|
|
|
2009-01-14 23:09:51 +01:00
|
|
|
} // namespace mongo
|