summaryrefslogtreecommitdiff
path: root/client/dbclient.cpp
blob: 7e68d35aac74f479a532a74d073c7d9b99997ccd (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
// dbclient.cpp - connect to a Mongo database as a database, from C++

/**
*    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 "stdafx.h"
#include "../db/pdfile.h"
#include "dbclient.h"
#include "../util/builder.h"
#include "../db/jsobj.h"
#include "../db/query.h"
#include "../db/json.h"
#include "../db/instance.h"

namespace mongo {

/* --- dbclientcommands --- */

inline bool DBClientWithCommands::isOk(const BSONObj& o) { 
	return o.getIntField("ok") == 1;
}

inline bool DBClientWithCommands::runCommand(const char *dbname, BSONObj cmd, BSONObj &info) { 
	string ns = string(dbname) + ".$cmd";
    info = findOne(ns.c_str(), cmd);
	return isOk(info);
}

/* note - we build a bson obj here -- for something that is super common like getlasterror you 
          should have that object prebuilt as that would be faster.
*/
bool DBClientWithCommands::simpleCommand(const char *dbname, BSONObj *info, const char *command) { 
	BSONObj o;
	if( info == 0 )
		info = &o;
	BSONObjBuilder b;
	b.appendInt(command, 1);
	return runCommand(dbname, b.done(), *info);
}

BSONObj ismastercmdobj = fromjson("{\"ismaster\":1}");

bool DBClientWithCommands::isMaster(bool& isMaster, BSONObj *info) {
	BSONObj o;	if( info == 0 )	info = &o;
	bool ok = runCommand("admin", ismastercmdobj, *info);
    isMaster = (info->getIntField("ismaster") == 1);
	return ok;
}

bool DBClientWithCommands::createCollection(const char *ns, unsigned size, bool capped, int max, BSONObj *info) { 
	BSONObj o;	if( info == 0 )	info = &o;
	BSONObjBuilder b;
	b.append("create", ns);
	if( size ) b.append("size", size);
	if( capped ) b.append("capped", true);
	if( max ) b.append("max", max);
	string db = nsToClient(ns);
	return runCommand(db.c_str(), b.done(), *info);
}

bool DBClientWithCommands::copyDatabase(const char *fromdb, const char *todb, const char *fromhost, BSONObj *info) { 
	assert( *fromdb && *todb );
	BSONObj o; if( info == 0 ) info = &o;
	BSONObjBuilder b;
	b.append("copydb", 1);
	b.append("fromhost", fromhost);
	b.append("fromdb", fromdb);
	b.append("todb", todb);
	return runCommand("admin", b.done(), *info);
}

bool DBClientWithCommands::setDbProfilingLevel(const char *dbname, ProfilingLevel level, BSONObj *info ) { 
	BSONObj o; if( info == 0 ) info = &o;

    if( level ) {
        // Create system.profile collection.  If it already exists this does nothing.  
		// TODO: move this into the db instead of here so that all 
		//       drivers don't have to do this.
		string ns = string(dbname) + ".system.profile";
		createCollection(ns.c_str(), 1024 * 1024, true, 0, info);
    }

	BSONObjBuilder b;
	b.append("profile", (int) level);
	return runCommand(dbname, b.done(), *info);
}

BSONObj getprofilingcmdobj = fromjson("{\"profile\":-1}");

bool DBClientWithCommands::getDbProfilingLevel(const char *dbname, ProfilingLevel& level, BSONObj *info) { 
	BSONObj o; if( info == 0 ) info = &o;
	if( runCommand(dbname, getprofilingcmdobj, *info) ) { 
		level = (ProfilingLevel) info->getIntField("was");
		return true;
	}
	return false;
}

bool DBClientWithCommands::eval(const char *dbname, const char *jscode, BSONObj& info, BSONElement& retValue, BSONObj *args) { 
	BSONObjBuilder b;
	b.appendCode("$eval", jscode);
	if( args ) 
		b.appendArray("args", *args);
	bool ok = runCommand(dbname, b.done(), info);
	if( ok ) 
		retValue = info.getField("retval");
	return ok;
}

bool DBClientWithCommands::eval(const char *dbname, const char *jscode) { 
	BSONObj info;
	BSONElement retValue;
	return eval(dbname, jscode, info, retValue);
}

/* TODO: unit tests should run this? */
void testDbEval() { 
	DBClientConnection c;
	string err;
	if( !c.connect("localhost", err) ) { 
		cout << "can't connect to server " << err << endl;
		return;
	}
	BSONObj info;
	BSONElement retValue;
	BSONObjBuilder b;
	b.append("0", 99);
	BSONObj args = b.done();
	bool ok = c.eval("dwight", "function() { return args[0]; }", info, retValue, &args);
	cout << "eval ok=" << ok << endl;
	cout << "retvalue=" << retValue.toString() << endl;
	cout << "info=" << info.toString() << endl;

	cout << endl;

	int x = 3;
	assert( c.eval("dwight", "function() { return 3; }", x) );

	cout << "***\n";

	BSONObj foo = fromjson("{\"x\":7}");
	cout << foo.toString() << endl;
	int res=0;
	ok = c.eval("dwight", "function(parm1) { return parm1.x; }", foo, res);
	cout << ok << " retval:" << res << endl;
}

int test2() { 
	testDbEval();
	return 0;
}

/* --- dbclientconnection --- */

BSONObj DBClientBase::findOne(const char *ns, BSONObj query, BSONObj *fieldsToReturn, int queryOptions) {
    auto_ptr<DBClientCursor> c =
        this->query(ns, query, 1, 0, fieldsToReturn, queryOptions);

    massert( "DBClientBase::findOne: transport error", c.get() );

    if ( !c->more() )
        return BSONObj();

    return c->next().copy();
}

bool DBClientConnection::connect(const char *_serverAddress, string& errmsg) {
    serverAddress = _serverAddress;

    int port = DBPort;
    string ip = hostbyname(_serverAddress);
    if ( ip.empty() )
        ip = serverAddress;

    size_t idx = ip.find( ":" );
    if ( idx != string::npos ) {
        //cout << "port string:" << ip.substr( idx ) << endl;
        port = atoi( ip.substr( idx + 1 ).c_str() );
        ip = ip.substr( 0 , idx );
        ip = hostbyname(ip.c_str());

    }
    if ( ip.empty() )
        ip = serverAddress;

    // we keep around SockAddr for connection life -- maybe MessagingPort
    // requires that?
    server = auto_ptr<SockAddr>(new SockAddr(ip.c_str(), port));
    p = auto_ptr<MessagingPort>(new MessagingPort());

    if ( !p->connect(*server) ) {
        stringstream ss;
        ss << "couldn't connect to server " << serverAddress << " " << ip << ":" << port;
        errmsg = ss.str();
        failed = true;
        return false;
    }
    return true;
}

void DBClientConnection::checkConnection() {
    if ( !failed )
        return;
    if ( lastReconnectTry && time(0)-lastReconnectTry < 2 )
        return;
    if ( !autoReconnect )
        return;

    lastReconnectTry = time(0);
    log() << "trying reconnect to " << serverAddress << endl;
    string errmsg;
    string tmp = serverAddress;
    failed = false;
    if ( !connect(tmp.c_str(), errmsg) )
        log() << "reconnect " << serverAddress << " failed " << errmsg << endl;
    else
        log() << "reconnect " << serverAddress << " ok" << endl;
}

auto_ptr<DBClientCursor> DBClientBase::query(const char *ns, BSONObj query, int nToReturn,
        int nToSkip, BSONObj *fieldsToReturn, int queryOptions) {
    auto_ptr<DBClientCursor> c( new DBClientCursor( this,
                                ns, query, nToReturn, nToSkip,
                                fieldsToReturn, queryOptions ) );
    if ( c->init() )
        return c;
    return auto_ptr< DBClientCursor >( 0 );
}

void DBClientBase::insert( const char * ns , BSONObj obj ){
    Message toSend;
    
    BufBuilder b;
    int opts = 0;
    b.append( opts );
    b.append( ns );
    obj.appendSelfToBufBuilder( b );
    
    toSend.setData( dbInsert , b.buf() , b.len() );

    say( toSend );
}

void DBClientBase::remove( const char * ns , BSONObj obj , bool justOne ){
    Message toSend;
    
    BufBuilder b;
    int opts = 0;
    b.append( opts );
    b.append( ns );
    
    int flags = 0;
    if ( justOne || obj.hasField( "_id" ) )
        flags &= 1;
    b.append( flags );

    obj.appendSelfToBufBuilder( b );
    
    toSend.setData( dbDelete , b.buf() , b.len() );

    say( toSend );
}

void DBClientBase::update( const char * ns , BSONObj query , BSONObj obj , bool upsert ){
    
    BufBuilder b;
    b.append( (int)0 ); // reserverd
    b.append( ns );
    
    b.append( (int)upsert );
    
    query.appendSelfToBufBuilder( b );
    obj.appendSelfToBufBuilder( b );

    Message toSend;
    toSend.setData( dbUpdate , b.buf() , b.len() );

    say( toSend );    
}

bool DBClientBase::ensureIndex( const char * ns , BSONObj keys , const char * name ){
    BSONObjBuilder toSave;
    toSave.append( "ns" , ns );
    toSave.append( "key" , keys );
    
    string cacheKey(ns);
    cacheKey += "--";
    
    if ( name ){
        toSave.append( "name" , name );
        cacheKey += name;
    }
    else {
        stringstream ss;
        
        bool first = 1;
        for ( BSONObjIterator i(keys); i.more(); ){
            BSONElement f = i.next();
            if ( f.eoo() )
                break;
            
            if ( first )
                first = 0;
            else
                ss << "_";
            
            ss << f.fieldName() << "_";
            
            if ( f.type() == NumberInt )
                ss << (int)(f.number() );
            else if ( f.type() == NumberDouble )
                ss << f.number();
            
        }

        toSave.append( "name" , ss.str() );
        cacheKey += ss.str();
    }

    if ( _seenIndexes.count( cacheKey ) )
        return 0;
    _seenIndexes.insert( cacheKey );

    insert( Namespace( ns ).getSisterNS( "system.indexes"  ).c_str() , toSave.doneAndDecouple() );
    return 1;
}

void DBClientBase::resetIndexCache(){
    _seenIndexes.clear();
}

/* -- DBClientCursor ---------------------------------------------- */

void assembleRequest( const string &ns, BSONObj query, int nToReturn, int nToSkip, BSONObj *fieldsToReturn, int queryOptions, Message &toSend ) {
    // see query.h for the protocol we are using here.
    BufBuilder b;
    int opts = queryOptions;
    assert( (opts&Option_ALLMASK) == opts );
    b.append(opts);
    b.append(ns.c_str());
    b.append(nToSkip);
    b.append(nToReturn);
    query.appendSelfToBufBuilder(b);
    if ( fieldsToReturn )
        fieldsToReturn->appendSelfToBufBuilder(b);
    toSend.setData(dbQuery, b.buf(), b.len());
}

void DBClientConnection::say( Message &toSend ) {
    port().say( toSend );
}

void DBClientConnection::sayPiggyBack( Message &toSend ) {
    port().piggyBack( toSend );
}

bool DBClientConnection::call( Message &toSend, Message &response, bool assertOk ) {
    if ( !port().call(toSend, response) ) {
        failed = true;
        if ( assertOk )
            massert("dbclient error communicating with server", false);
        return false;
    }
    return true;
}

void DBClientConnection::checkResponse( const char *data, int nReturned ) {
    /* check for errors.  the only one we really care about at
     this stage is "not master" */
    if ( clientPaired && nReturned ) {
        BSONObj o(data);
        BSONElement e = o.firstElement();
        if ( strcmp(e.fieldName(), "$err") == 0 &&
                e.type() == String && strncmp(e.valuestr(), "not master", 10) == 0 ) {
            clientPaired->isntMaster();
        }
    }
}

bool DBClientCursor::init() {
    Message toSend;
    assembleRequest( ns, query, nToReturn, nToSkip, fieldsToReturn, opts, toSend );
    if ( !connector->call( toSend, *m, false ) )
        return false;

    dataReceived();
    return true;
}

void DBClientCursor::requestMore() {
    assert( cursorId && pos == nReturned );

    BufBuilder b;
    b.append(opts);
    b.append(ns.c_str());
    b.append(nToReturn);
    b.append(cursorId);

    Message toSend;
    toSend.setData(dbGetMore, b.buf(), b.len());
    auto_ptr<Message> response(new Message());
    connector->call( toSend, *response );

    m = response;
    dataReceived();
}

void DBClientCursor::dataReceived() {
    QueryResult *qr = (QueryResult *) m->data;
    if ( qr->resultFlags() & QueryResult::ResultFlag_CursorNotFound ) {
        // cursor id no longer valid at the server.
        assert( qr->cursorId == 0 );
        cursorId = 0; // 0 indicates no longer valid (dead)
    }
    if ( cursorId == 0 ) {
        // only set initially: we don't want to kill it on end of data
        // if it's a tailable cursor
        cursorId = qr->cursorId;
    }
    nReturned = qr->nReturned;
    pos = 0;
    data = qr->data();

    connector->checkResponse( data, nReturned );
    /* this assert would fire the way we currently work:
        assert( nReturned || cursorId == 0 );
    */
}

bool DBClientCursor::more() {
    if ( pos < nReturned )
        return true;

    if ( cursorId == 0 )
        return false;

    requestMore();
    return pos < nReturned;
}

BSONObj DBClientCursor::next() {
    assert( more() );
    pos++;
    BSONObj o(data);
    data += o.objsize();
    return o;
}

DBClientCursor::~DBClientCursor(){
    if ( cursorId ){
        BufBuilder b;
        b.append( (int)0 ); // reserved
        b.append( (int)1 ); // number
        b.append( cursorId );
        
        Message m;
        m.setData( dbKillCursors , b.buf() , b.len() );
        
        connector->sayPiggyBack( m );
    }
        
}

/* ------------------------------------------------------ */

// "./db testclient" to invoke
extern BSONObj emptyObj;
void testClient() {
    cout << "testClient()" << endl;
//	DBClientConnection c(true);
    DBClientPaired c;
    string err;
    if ( !c.connect("10.211.55.2", "1.2.3.4") ) {
//    if( !c.connect("10.211.55.2", err) ) {
        cout << "testClient: connect() failed" << endl;
    }
    else {
        // temp:
        cout << "test query returns: " << c.findOne("foo.bar", fromjson("{}")).toString() << endl;
    }
again:
    cout << "query foo.bar..." << endl;
    auto_ptr<DBClientCursor> cursor =
        c.query("foo.bar", emptyObj, 0, 0, 0, Option_CursorTailable);
    DBClientCursor *cc = cursor.get();
    if ( cc == 0 ) {
        cout << "query() returned 0, sleeping 10 secs" << endl;
        sleepsecs(10);
        goto again;
    }
    while ( 1 ) {
        bool m;
        try {
            m = cc->more();
        } catch (AssertionException&) {
            cout << "more() asserted, sleeping 10 sec" << endl;
            goto again;
        }
        cout << "more: " << m << " dead:" << cc->isDead() << endl;
        if ( !m ) {
            if ( cc->isDead() )
                cout << "cursor dead, stopping" << endl;
            else {
                cout << "Sleeping 10 seconds" << endl;
                sleepsecs(10);
                continue;
            }
            break;
        }
        cout << cc->next().toString() << endl;
    }
}

/* --- class dbclientpaired --- */

string DBClientPaired::toString() {
    stringstream ss;
    ss << "state: " << master << '\n';
    ss << "left:  " << left.toStringLong() << '\n';
    ss << "right: " << right.toStringLong() << '\n';
    return ss.str();
}

DBClientPaired::DBClientPaired() :
        left(true), right(true)
{
    master = NotSetL;
}

/* find which server, the left or right, is currently master mode */
void DBClientPaired::_checkMaster() {
    for ( int retry = 0; retry < 2; retry++ ) {
        int x = master;
        for ( int pass = 0; pass < 2; pass++ ) {
            DBClientConnection& c = x == 0 ? left : right;
            try {
                bool im;
                BSONObj o;
				c.isMaster(im, &o);
                if ( retry )
                    log() << "checkmaster: " << c.toString() << ' ' << o.toString() << '\n';
                if ( im ) {
                    master = (State) (x + 2);
                    return;
                }
            }
            catch (AssertionException&) {
                if ( retry )
                    log() << "checkmaster: caught exception " << c.toString() << '\n';
            }
            x = x^1;
        }
        sleepsecs(1);
    }

    uassert("checkmaster: no master found", false);
}

inline DBClientConnection& DBClientPaired::checkMaster() {
    if ( master > NotSetR ) {
        // a master is selected.  let's just make sure connection didn't die
        DBClientConnection& c = master == Left ? left : right;
        if ( !c.isFailed() )
            return c;
        // after a failure, on the next checkMaster, start with the other
        // server -- presumably it took over. (not critical which we check first,
        // just will make the failover slightly faster if we guess right)
        master = master == Left ? NotSetR : NotSetL;
    }

    _checkMaster();
    assert( master > NotSetR );
    return master == Left ? left : right;
}

bool DBClientPaired::connect(const char *serverHostname1, const char *serverHostname2) {
    string errmsg;
    bool l = left.connect(serverHostname1, errmsg);
    bool r = right.connect(serverHostname2, errmsg);
    master = l ? NotSetL : NotSetR;
    if ( !l && !r ) // it would be ok to fall through, but checkMaster will then try an immediate reconnect which is slow
        return false;
    try {
        checkMaster();
    }
    catch (UserAssertionException&) {
        return false;
    }
    return true;
}

auto_ptr<DBClientCursor> DBClientPaired::query(const char *a, BSONObj b, int c, int d,
        BSONObj *e, int f)
{
    return checkMaster().query(a,b,c,d,e,f);
}

BSONObj DBClientPaired::findOne(const char *a, BSONObj b, BSONObj *c, int d) {
    return checkMaster().findOne(a,b,c,d);
}



} // namespace mongo