-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGenericDBFile.h
65 lines (38 loc) · 1.23 KB
/
GenericDBFile.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
#ifndef GENERICDBFILE_H
#define GENERICDBFILE_H
#include "File.h"
#include <cstring>
class GenericDBFile {
private:
void DoFileOpenCheck();
protected:
char dbFileName[100];
File dbFile;
bool isDBFileOpen;
bool isInWriteMode;
Page readBufferPage;
off_t currentlyBeingReadPageNumber;
ComparisonEngine comparisonEngine;
off_t GetLengthInPages();
bool GetPageFromDataFile(Page &page, off_t pageNumber);
void AddPageToDataFile(Page &page, off_t pageNumber);
int GetRecordFromReadBufferPage(Record &rec);
// Child classes should add implementation of following methods.
virtual void SwitchToWriteMode() = 0;
virtual void SwitchToReadMode() = 0;
virtual void AddToDBFile(Record &addme) = 0;
virtual int GetNextFromDBFile(Record &fetchme) = 0;
virtual int GetNextFromDBFile(Record &fetchme, CNF &cnf, Record &literal) = 0;
public:
GenericDBFile();
~GenericDBFile();
int Create(const char *fpath);
int Open(const char *fpath);
void Add(Record &addme);
void Load(Schema &myschema, const char *loadpath);
void MoveFirst();
int GetNext(Record &fetchme);
int GetNext(Record &fetchme, CNF &cnf, Record &literal);
int Close();
};
#endif