blob: a18e5d52ead91dd3221b673d452d4b911845d06d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// d_writeback.cpp
/**
* Copyright (C) 2008 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "pch.h"
#include "../db/commands.h"
#include "../db/jsobj.h"
#include "../db/dbmessage.h"
#include "../db/query.h"
#include "../client/connpool.h"
#include "../util/queue.h"
#include "shard.h"
using namespace std;
namespace mongo {
map< string , BlockingQueue<BSONObj>* > writebackQueue;
mongo::mutex writebackQueueLock("sharding:writebackQueueLock");
BlockingQueue<BSONObj>* getWritebackQueue( const string& remote ){
scoped_lock lk (writebackQueueLock );
BlockingQueue<BSONObj>*& q = writebackQueue[remote];
if ( ! q )
q = new BlockingQueue<BSONObj>();
return q;
}
void queueWriteBack( const string& remote , const BSONObj& o ){
getWritebackQueue( remote )->push( o );
}
// Note, this command will block until there is something to WriteBack
class WriteBackCommand : public Command {
public:
virtual LockType locktype() const { return NONE; }
virtual bool slaveOk() const { return true; }
virtual bool adminOnly() const { return true; }
WriteBackCommand() : Command( "writebacklisten" ){}
void help(stringstream& h) const { h<<"internal"; }
bool run(const string& , BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
BSONElement e = cmdObj.firstElement();
if ( e.type() != jstOID ){
errmsg = "need oid as first value";
return 0;
}
const OID id = e.__oid();
BSONObj z = getWritebackQueue(id.str())->blockingPop();
log(1) << "WriteBackCommand got : " << z << endl;
result.append( "data" , z );
return true;
}
} writeBackCommand;
}
|