-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.h
87 lines (68 loc) · 2.24 KB
/
database.h
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
/*
Copyright (c) Ferruccio Barletta ([email protected]), 2010
This file is part of BDBVu.
BDBVu is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
BDBVu 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with BDBVu. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DATABASE_H
#define DATABASE_H
#include <db_cxx.h>
#include <QList>
#include <QStringList>
#include <vector>
//
// create our own exception class so that we can use something more flexible than a char* for messages
//
class dbexception : public std::exception
{
public:
dbexception(const QString& message) : std::exception() { this->message = message; }
virtual ~dbexception() throw() {}
const char* what() const throw() { return message.toAscii(); }
private:
QString message;
};
//
// maps displayed keys to searchable keys
//
class dbkey
{
public:
QString display; // what is displayed to user
std::vector<char> key; // actual db key
};
//
// encapsulate BDB database
//
class database
{
public:
database();
virtual ~database();
QStringList sdblist; // sub-database list
QList<dbkey> keylist; // key list
QString sdbtype; // sub-database type
bool isopen() { return db != 0; }
void open(const char* filename);
void close();
void opensubdb(const QString& dbname);
QString getRecord(int index);
private:
QString filename; // db filename
DbEnv env; // BDB environment
Db *db; // current database
Db *sdb; // current sub-database
bool multiple; // does database contain sub-databases
void buildDatabaseList();
void closesubdb();
void buildKeyList();
};
#endif // DATABASE_H