mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
203 lines
6.7 KiB
C++
203 lines
6.7 KiB
C++
// btreecursor.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 "stdafx.h"
|
|
#include "btree.h"
|
|
#include "pdfile.h"
|
|
#include "jsobj.h"
|
|
|
|
namespace mongo {
|
|
|
|
extern int otherTraceLevel;
|
|
|
|
BtreeCursor::BtreeCursor( NamespaceDetails *_d, int _idxNo, const IndexDetails &_id,
|
|
const BSONObj &_startKey, const BSONObj &_endKey, bool endKeyInclusive, int _direction ) :
|
|
d(_d), idxNo(_idxNo),
|
|
startKey( _startKey ),
|
|
endKey( _endKey ),
|
|
endKeyInclusive_( endKeyInclusive ),
|
|
multikey( d->isMultikey( idxNo ) ),
|
|
indexDetails( _id ),
|
|
order( _id.keyPattern() ),
|
|
direction( _direction ),
|
|
boundIndex_()
|
|
{
|
|
audit();
|
|
init();
|
|
}
|
|
|
|
BtreeCursor::BtreeCursor( NamespaceDetails *_d, int _idxNo, const IndexDetails& _id, const vector< pair< BSONObj, BSONObj > > &_bounds, int _direction )
|
|
:
|
|
d(_d), idxNo(_idxNo),
|
|
endKeyInclusive_( true ),
|
|
multikey( d->isMultikey( idxNo ) ),
|
|
indexDetails( _id ),
|
|
order( _id.keyPattern() ),
|
|
direction( _direction ),
|
|
bounds_( _bounds ),
|
|
boundIndex_()
|
|
{
|
|
assert( !bounds_.empty() );
|
|
audit();
|
|
initInterval();
|
|
}
|
|
|
|
void BtreeCursor::audit() {
|
|
dassert( d->idxNo((IndexDetails&) indexDetails) == idxNo );
|
|
|
|
if ( otherTraceLevel >= 12 ) {
|
|
if ( otherTraceLevel >= 200 ) {
|
|
out() << "::BtreeCursor() qtl>200. validating entire index." << endl;
|
|
indexDetails.head.btree()->fullValidate(indexDetails.head, order);
|
|
}
|
|
else {
|
|
out() << "BTreeCursor(). dumping head bucket" << endl;
|
|
indexDetails.head.btree()->dump();
|
|
}
|
|
}
|
|
}
|
|
|
|
void BtreeCursor::init() {
|
|
bool found;
|
|
bucket = indexDetails.head.btree()->
|
|
locate(indexDetails, indexDetails.head, startKey, order, keyOfs, found, direction > 0 ? minDiskLoc : maxDiskLoc, direction);
|
|
skipUnusedKeys();
|
|
checkEnd();
|
|
}
|
|
|
|
void BtreeCursor::initInterval() {
|
|
do {
|
|
startKey = bounds_[ boundIndex_ ].first;
|
|
endKey = bounds_[ boundIndex_ ].second;
|
|
init();
|
|
} while ( !ok() && ++boundIndex_ < bounds_.size() );
|
|
}
|
|
|
|
/* skip unused keys. */
|
|
void BtreeCursor::skipUnusedKeys() {
|
|
int u = 0;
|
|
while ( 1 ) {
|
|
if ( !ok() )
|
|
break;
|
|
BtreeBucket *b = bucket.btree();
|
|
_KeyNode& kn = b->k(keyOfs);
|
|
if ( kn.isUsed() )
|
|
break;
|
|
bucket = b->advance(bucket, keyOfs, direction, "skipUnusedKeys");
|
|
u++;
|
|
}
|
|
if ( u > 10 )
|
|
OCCASIONALLY log() << "btree unused skipped:" << u << '\n';
|
|
}
|
|
|
|
// Return a value in the set {-1, 0, 1} to represent the sign of parameter i.
|
|
int sgn( int i ) {
|
|
if ( i == 0 )
|
|
return 0;
|
|
return i > 0 ? 1 : -1;
|
|
}
|
|
|
|
// Check if the current key is beyond endKey.
|
|
void BtreeCursor::checkEnd() {
|
|
if ( bucket.isNull() )
|
|
return;
|
|
if ( !endKey.isEmpty() ) {
|
|
int cmp = sgn( endKey.woCompare( currKey(), order ) );
|
|
if ( ( cmp != 0 && cmp != direction ) ||
|
|
( cmp == 0 && !endKeyInclusive_ ) )
|
|
bucket = DiskLoc();
|
|
}
|
|
}
|
|
|
|
bool BtreeCursor::advance() {
|
|
checkForInterrupt();
|
|
if ( bucket.isNull() )
|
|
return false;
|
|
bucket = bucket.btree()->advance(bucket, keyOfs, direction, "BtreeCursor::advance");
|
|
skipUnusedKeys();
|
|
checkEnd();
|
|
if( !ok() && ++boundIndex_ < bounds_.size() )
|
|
initInterval();
|
|
return !bucket.isNull();
|
|
}
|
|
|
|
void BtreeCursor::noteLocation() {
|
|
if ( !eof() ) {
|
|
BSONObj o = bucket.btree()->keyAt(keyOfs).copy();
|
|
keyAtKeyOfs = o;
|
|
locAtKeyOfs = bucket.btree()->k(keyOfs).recordLoc;
|
|
}
|
|
}
|
|
|
|
/* Since the last noteLocation(), our key may have moved around, and that old cached
|
|
information may thus be stale and wrong (although often it is right). We check
|
|
that here; if we have moved, we have to search back for where we were at.
|
|
|
|
i.e., after operations on the index, the BtreeCursor's cached location info may
|
|
be invalid. This function ensures validity, so you should call it before using
|
|
the cursor if other writers have used the database since the last noteLocation
|
|
call.
|
|
*/
|
|
void BtreeCursor::checkLocation() {
|
|
if ( eof() )
|
|
return;
|
|
|
|
multikey = d->isMultikey(idxNo);
|
|
|
|
if ( keyOfs >= 0 ) {
|
|
BtreeBucket *b = bucket.btree();
|
|
|
|
assert( !keyAtKeyOfs.isEmpty() );
|
|
|
|
// Note keyAt() returns an empty BSONObj if keyOfs is now out of range,
|
|
// which is possible as keys may have been deleted.
|
|
if ( b->keyAt(keyOfs).woEqual(keyAtKeyOfs) &&
|
|
b->k(keyOfs).recordLoc == locAtKeyOfs ) {
|
|
if ( !b->k(keyOfs).isUsed() ) {
|
|
/* we were deleted but still exist as an unused
|
|
marker key. advance.
|
|
*/
|
|
skipUnusedKeys();
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
/* normally we don't get to here. when we do, old position is no longer
|
|
valid and we must refind where we left off (which is expensive)
|
|
*/
|
|
|
|
bool found;
|
|
|
|
/* TODO: Switch to keep indexdetails and do idx.head! */
|
|
bucket = indexDetails.head.btree()->locate(indexDetails, indexDetails.head, keyAtKeyOfs, order, keyOfs, found, locAtKeyOfs, direction);
|
|
RARELY log() << " key seems to have moved in the index, refinding. found:" << found << endl;
|
|
if ( found )
|
|
skipUnusedKeys();
|
|
}
|
|
|
|
/* ----------------------------------------------------------------------------- */
|
|
|
|
struct BtreeCursorUnitTest {
|
|
BtreeCursorUnitTest() {
|
|
assert( minDiskLoc.compare(maxDiskLoc) < 0 );
|
|
}
|
|
} btut;
|
|
|
|
} // namespace mongo
|