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
|
// database.h
/**
* 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/>.
*/
#pragma once
#include "cmdline.h"
namespace mongo {
class ClientCursor;
struct ByLocKey;
typedef map<ByLocKey, ClientCursor*> CCByLoc;
/**
* Database represents a database database
* Each database database has its own set of files -- dbname.ns, dbname.0, dbname.1, ...
* NOT memory mapped
*/
class Database {
public:
static bool _openAllFiles;
Database(const char *nm, /*out*/ bool& newDb, const string& _path = dbpath);
private:
~Database();
public:
/* you must use this to close - there is essential code in this method that is not in the ~Database destructor.
thus the destructor is private. this could be cleaned up one day...
*/
static void closeDatabase( const char *db, const string& path );
void openAllFiles();
void finishInit();
/**
* tries to make sure that this hasn't been deleted
*/
bool isOk() const { return magic == 781231; }
bool isEmpty() { return ! namespaceIndex.allocated(); }
/**
* total file size of Database in bytes
*/
long long fileSize() const;
int numFiles() const { return (int)files.size(); }
/**
* returns file valid for file number n
*/
boost::filesystem::path fileName( int n ) const;
bool exists(int n) const { return boost::filesystem::exists( fileName( n ) ); }
/**
* return file n. if it doesn't exist, create it
*/
MongoDataFile* getFile( int n, int sizeNeeded = 0, bool preallocateOnly = false );
MongoDataFile* addAFile( int sizeNeeded, bool preallocateNextFile );
/**
* makes sure we have an extra file at the end that is empty
* safe to call this multiple times - the implementation will only preallocate one file
*/
void preallocateAFile() { getFile( numFiles() , 0, true ); }
MongoDataFile* suitableFile( int sizeNeeded, bool preallocate );
Extent* allocExtent( const char *ns, int size, bool capped );
MongoDataFile* newestFile();
/**
* @return true if success. false if bad level or error creating profile ns
*/
bool setProfilingLevel( int newLevel , string& errmsg );
void flushFiles( bool sync ) const;
/**
* @return true if ns is part of the database
* ns=foo.bar, db=foo returns true
*/
bool ownsNS( const string& ns ) const {
if ( ! startsWith( ns , name ) )
return false;
return ns[name.size()] == '.';
}
static bool validDBName( const string& ns );
public: // this should be private later
vector<MongoDataFile*> files;
const string name; // "alleyinsider"
const string path;
NamespaceIndex namespaceIndex;
int profile; // 0=off.
const string profileName; // "alleyinsider.system.profile"
CCByLoc ccByLoc;
int magic; // used for making sure the object is still loaded in memory
};
} // namespace mongo
|