File: database.h

package info (click to toggle)
bdbvu 0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 176 kB
  • ctags: 84
  • sloc: cpp: 528; makefile: 4
file content (87 lines) | stat: -rw-r--r-- 2,263 bytes parent folder | download | duplicates (3)
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 (ferruccio.barletta@gmail.com), 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.toLatin1(); }

private:
    QString message;
};

//
//  maps displayed keys to searchable keys
//
class dbkey
{
public:
    QString             display;    // what is displayed to user
    QString data;
};

//
//  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