removing the csql.db file when test fails
[csql.git] / include / DatabaseManagerImpl.h
blob6e1a51015dfd5c44268eaa39ae6e79561c679ae7
1 /***************************************************************************
2 * Copyright (C) 2007 by www.databasecache.com *
3 * Contact: praba_tuty@databasecache.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 ***************************************************************************/
16 #ifndef DATABASE_MANAGER_IMPL_H
17 #define DATABASE_MANAGER_IMPL_H
18 #include<os.h>
19 #include<CatalogTables.h>
20 #include<Lock.h>
21 #include<DatabaseManager.h>
22 #include<Process.h>
23 #include<Util.h>
24 //Note::DatabaseManagerImpl is used to hide functionalites from normal database user.
25 //User is exposed to DatabaseManagerImpl, for our tools we shall type cast DatabaseManager
26 //to DatabaseManagerImpl to retreive internal information such as db statistics, etc
27 class Database;
28 class SessionImpl;
29 class TableDef;
30 class Table;
31 class FieldNameList;
32 class ChunkIterator;
33 class Chunk;
34 class TransactionManager;
35 class CSqlProcInfo
37 public:
38 CSqlProcInfo() { sysDbAttachAddr = userDbAttachAddr = NULL;}
39 void *sysDbAttachAddr;
40 void *userDbAttachAddr;
43 //Global object
44 static CSqlProcInfo csqlProcInfo;
46 class DatabaseManagerImpl : public DatabaseManager
48 private:
49 Database* systemDatabase_;
50 //pointer to system Database
52 Database* db_;
53 //pointer to database
55 LockManager *lMgr_;
57 TransactionManager *tMgr_;
60 ProcessManager *pMgr_;
61 int procSlot;
63 List tableHandleList; // list of table handles
65 //only SessionImpl creates object of this class
66 DatabaseManagerImpl() { systemDatabase_ = NULL; tMgr_ = NULL; lMgr_ = NULL;
67 pMgr_ = NULL; db_ = NULL; }
68 ~DatabaseManagerImpl();
70 DbRetVal openSystemDatabase();
71 DbRetVal closeSystemDatabase();
72 ChunkIterator getSystemTableIterator(CatalogTableID id);
73 Chunk* getSystemTableChunk(CatalogTableID id);
75 void createLockManager();
76 void createTransactionManager();
78 Chunk* createUserChunk(size_t size = 0);
79 DbRetVal deleteUserChunk(Chunk *chunk);
82 DbRetVal createHashIndex(const char *indName, const char *tableName,
83 FieldNameList &fldList, int bucketSize, bool isUnique, bool isPrimary = false);
84 void initHashBuckets(Bucket *buck, int bucketSize);
86 DbRetVal dropIndexInt(const char *name, bool takeLock);
88 public:
90 Database* db() { return db_; }
91 Database* sysDb() { return systemDatabase_; }
92 void setSysDb(Database *db) { systemDatabase_ = db; }
93 void setDb(Database *db) { db_ = db; }
95 void setProcSlot();
96 TransactionManager* txnMgr() { return tMgr_; }
97 LockManager* lockMgr() { return lMgr_; }
99 //for user database file there is no limit for the number
100 //of tables or chunks
101 DbRetVal createDatabase(const char *name, size_t size);
102 DbRetVal deleteDatabase(const char *name);
104 DbRetVal openDatabase(const char *name);
105 DbRetVal closeDatabase();
109 DbRetVal createTable(const char *name, TableDef &def);
110 DbRetVal dropTable(const char *name);
111 Table* openTable(const char *name);
112 void closeTable(Table *table);
113 DbRetVal createIndex(const char *indName, IndexInitInfo *info);
114 DbRetVal dropIndex(const char *name);
115 List getAllTableNames();
117 DbRetVal registerThread();
118 DbRetVal deregisterThread();
119 bool isAnyOneRegistered();
120 void printUsageStatistics();
121 void printDebugLockInfo();
122 void printDebugTransInfo();
123 void printDebugChunkInfo();
124 void printDebugProcInfo();
125 DbRetVal printIndexInfo(char *name);
126 friend class SessionImpl;
128 #endif