blob: 6de55d89299107ae9c4ee7b26afbc21322aba8e0 (
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
|
#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(). */
auto_ptr< typename V::KeyOwned > 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; }
};
}
|