2008-12-06 20:49:27 +01:00
|
|
|
// database.h
|
|
|
|
|
2008-12-02 20:24:45 +01:00
|
|
|
/**
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-12-05 22:45:10 +01:00
|
|
|
#pragma once
|
|
|
|
|
2008-12-02 20:24:45 +01:00
|
|
|
/* Database represents a database database
|
|
|
|
Each database database has its own set of files -- dbname.ns, dbname.0, dbname.1, ...
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Database {
|
|
|
|
public:
|
2008-12-16 16:20:24 +01:00
|
|
|
Database(const char *nm, bool& justCreated, const char *_path = dbpath) :
|
|
|
|
name(nm),
|
|
|
|
path(_path) {
|
2008-12-19 15:52:54 +01:00
|
|
|
assert( !string( nm ).empty() );
|
2008-12-16 16:20:24 +01:00
|
|
|
justCreated = namespaceIndex.init(_path, nm);
|
2008-12-02 20:24:45 +01:00
|
|
|
profile = 0;
|
|
|
|
profileName = name + ".system.profile";
|
|
|
|
}
|
|
|
|
~Database() {
|
|
|
|
int n = files.size();
|
|
|
|
for( int i = 0; i < n; i++ )
|
|
|
|
delete files[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
PhysicalDataFile* getFile(int n) {
|
|
|
|
assert(this);
|
|
|
|
|
|
|
|
if( n < 0 || n >= DiskLoc::MaxFiles ) {
|
|
|
|
cout << "getFile(): n=" << n << endl;
|
|
|
|
assert( n >= 0 && n < DiskLoc::MaxFiles );
|
|
|
|
}
|
|
|
|
DEV {
|
|
|
|
if( n > 100 )
|
|
|
|
cout << "getFile(): n=" << n << "?" << endl;
|
|
|
|
}
|
|
|
|
while( n >= (int) files.size() )
|
|
|
|
files.push_back(0);
|
|
|
|
PhysicalDataFile* p = files[n];
|
|
|
|
if( p == 0 ) {
|
2008-12-16 16:20:24 +01:00
|
|
|
stringstream ss;
|
|
|
|
ss << name << '.' << n;
|
|
|
|
boost::filesystem::path fullName;
|
2008-12-17 00:01:00 +01:00
|
|
|
fullName = boost::filesystem::path(path) / ss.str();
|
2008-12-16 16:20:24 +01:00
|
|
|
string fullNameString = fullName.string();
|
2008-12-27 18:07:20 +01:00
|
|
|
p = new PhysicalDataFile(n);
|
|
|
|
try {
|
|
|
|
p->open(n, fullNameString.c_str() );
|
|
|
|
}
|
|
|
|
catch( AssertionException& u ) {
|
|
|
|
delete p;
|
|
|
|
throw u;
|
|
|
|
}
|
|
|
|
files[n] = p;
|
2008-12-02 20:24:45 +01:00
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
PhysicalDataFile* addAFile() {
|
|
|
|
int n = (int) files.size();
|
|
|
|
return getFile(n);
|
|
|
|
}
|
|
|
|
|
2008-12-02 21:51:00 +01:00
|
|
|
PhysicalDataFile* suitableFile(int sizeNeeded) {
|
|
|
|
PhysicalDataFile* f = newestFile();
|
|
|
|
for( int i = 0; i < 8; i++ ) {
|
|
|
|
if( f->getHeader()->unusedLength >= sizeNeeded )
|
|
|
|
break;
|
|
|
|
f = addAFile();
|
|
|
|
if( f->getHeader()->fileLength > 1500000000 ) // this is as big as they get so might as well stop
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2008-12-02 20:24:45 +01:00
|
|
|
PhysicalDataFile* newestFile() {
|
|
|
|
int n = (int) files.size();
|
|
|
|
if( n > 0 ) n--;
|
|
|
|
return getFile(n);
|
|
|
|
}
|
|
|
|
|
|
|
|
void finishInit(); // ugly...
|
|
|
|
|
|
|
|
vector<PhysicalDataFile*> files;
|
|
|
|
string name; // "alleyinsider"
|
2008-12-17 20:09:37 +01:00
|
|
|
string path;
|
2008-12-02 20:24:45 +01:00
|
|
|
NamespaceIndex namespaceIndex;
|
|
|
|
int profile; // 0=off.
|
|
|
|
string profileName; // "alleyinsider.system.profile"
|
|
|
|
QueryOptimizer optimizer;
|
|
|
|
|
|
|
|
bool haveLogged() { return _haveLogged; }
|
|
|
|
void setHaveLogged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// see dbinfo.h description. if true, we have logged to the replication log.
|
|
|
|
bool _haveLogged;
|
|
|
|
};
|
|
|
|
|