mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
a07fb60cd4
readable output
131 lines
3.6 KiB
C++
131 lines
3.6 KiB
C++
// protosend.cpp
|
|
|
|
/* todo: redo locking! */
|
|
|
|
#include "stdafx.h"
|
|
#include "protocol.h"
|
|
#include "boost/thread.hpp"
|
|
#include "../util/goodies.h"
|
|
#include "../util/sock.h"
|
|
#include "protoimpl.h"
|
|
using namespace boost;
|
|
typedef boost::mutex::scoped_lock lock;
|
|
|
|
/* todo: granularity? */
|
|
boost::mutex mutexs;
|
|
boost::condition msgSent;
|
|
|
|
bool erasePending(ProtocolConnection *pc, int id);
|
|
|
|
inline bool MS::complain(unsigned now) {
|
|
if( tdiff(lastComplainTime, now) < (int) complainInterval )
|
|
return false;
|
|
if( complainInterval > 4000 ) {
|
|
ptrace( cout << ".no ack of send after " << complainInterval/1000 << " seconds " << to.toString() << endl; )
|
|
if( complainInterval > 35000 ) {
|
|
ptrace( cout << ".GIVING UP on sending message" << endl; )
|
|
erasePending(&pc, msgid);
|
|
return true;
|
|
}
|
|
}
|
|
complainInterval *= 2;
|
|
lastComplainTime = now;
|
|
__sendREQUESTACK(&pc, to, msgid, fragments.size()-1);
|
|
return false;
|
|
}
|
|
|
|
// where's my ack?
|
|
void senderComplainThread() {
|
|
while( 1 ) {
|
|
sleepmillis(50);
|
|
{
|
|
lock lk(mutexs);
|
|
unsigned now = curTimeMillis();
|
|
for( EndPointToPC::iterator i = pcMap.begin(); i != pcMap.end(); i++ ) {
|
|
ProtocolConnection *pc = i->second;
|
|
for( vector<MS*>::iterator j = pc->cs.pendingSend.begin(); j < pc->cs.pendingSend.end(); j++ )
|
|
if( (*j)->complain(now) )
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
boost::thread sender(senderComplainThread);
|
|
|
|
// received a MISSING message from the other end. retransmit.
|
|
void gotMISSING(F* fr, ProtocolConnection *pc, EndPoint& from) {
|
|
ptrace( cout << ".gotmis"; )
|
|
lock lk(mutexs);
|
|
int id = fr->__msgid();
|
|
ptrace( cout << "sing() msgid:" << id << endl; )
|
|
vector<MS*>::iterator it;
|
|
for( it = pc->cs.pendingSend.begin(); it<pc->cs.pendingSend.end(); it++ ) {
|
|
MS *m = *it;
|
|
if( m->msgid == id ) {
|
|
int n;
|
|
short* s = fr->__getMissing(n);
|
|
assert( n > 0 && n < 5000 );
|
|
for( int i = 0; i < n; i++ ) {
|
|
ptrace( cout << ".. resending frag #" << s[i] << ' ' << m->to.toString() << endl; )
|
|
__sendFrag(pc, m->to, m->fragments[s[i]], true);
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
ptrace( cout << ".warning: got missing rq for an unknown msg id:" << id << ' ' << from.toString() << endl; )
|
|
}
|
|
|
|
bool erasePending(ProtocolConnection *pc, int id) {
|
|
vector<MS*>::iterator it;
|
|
for( it = pc->cs.pendingSend.begin(); it < pc->cs.pendingSend.end(); it++ ) {
|
|
MS *m = *it;
|
|
if( m->msgid == id ) {
|
|
pc->cs.pendingSend.erase(it);
|
|
ptrace( cout << "..gotACK/erase: found pendingSend msg:" << id << endl; )
|
|
delete m;
|
|
msgSent.notify_one();
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// received an ACK message. so we can discard our saved copy we were trying to send, we
|
|
// are done with it.
|
|
void gotACK(F* fr, ProtocolConnection *pc, EndPoint& from) {
|
|
lock lk(mutexs);
|
|
if( erasePending(pc, fr->__msgid()) )
|
|
return;
|
|
ptrace( cout << ".warning: got ack for an unknown msg id:" << fr->__msgid() << ' ' << from.toString() << endl; )
|
|
}
|
|
|
|
void MS::send() {
|
|
/* flow control */
|
|
ptrace( cout << "..MS::send() pending="; )
|
|
lock lk(mutexs);
|
|
ptrace( cout << pc.cs.pendingSend.size() << endl; )
|
|
|
|
if( pc.first ) {
|
|
pc.first = false;
|
|
if( pc.myEnd.channel >= 0 )
|
|
__sendRESET(&pc, to);
|
|
pc.to = to;
|
|
}
|
|
|
|
while( pc.cs.pendingSend.size() >= 10 )
|
|
msgSent.wait(lk);
|
|
lastComplainTime = curTimeMillis();
|
|
pc.cs.pendingSend.push_back(this);
|
|
/* todo: pace */
|
|
for( unsigned i = 0; i < fragments.size(); i++ )
|
|
__sendFrag(&pc, to, fragments[i]);
|
|
}
|
|
|
|
void CS::resetIt() {
|
|
lock lk(mutexs);
|
|
for( vector<MS*>::iterator i = pendingSend.begin(); i < pendingSend.end(); i++ )
|
|
delete (*i);
|
|
pendingSend.clear();
|
|
}
|