0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/db/btreebuilder.h
2011-05-02 18:16:03 -04:00

54 lines
1.3 KiB
C++

#pragma once
#include "btree.h"
namespace mongo {
/**
* build btree from the bottom up
*/
template< class V >
class BtreeBuilder {
typedef typename V::KeyOwned KeyOwned;
typedef typename V::Key Key;
bool dupsAllowed;
IndexDetails& idx;
/** Number of keys added to btree. */
unsigned long long n;
/** Last key passed to addKey(). */
typename V::Key keyLast;
BSONObj order;
Ordering ordering;
/** true iff commit() completed successfully. */
bool committed;
DiskLoc cur, first;
BtreeBucket<V> *b;
void newBucket();
void buildNextLevel(DiskLoc);
void mayCommitProgressDurably();
public:
~BtreeBuilder();
BtreeBuilder(bool _dupsAllowed, IndexDetails& _idx);
/**
* Preconditions: 'key' is > or >= last key passed to this function (depends on _dupsAllowed)
* Postconditions: 'key' is added to intermediate storage.
*/
void addKey(BSONObj& key, DiskLoc loc);
/**
* commit work. if not called, destructor will clean up partially completed work
* (in case exception has happened).
*/
void commit();
unsigned long long getn() { return n; }
};
}