-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBFile.cc
78 lines (63 loc) · 1.57 KB
/
DBFile.cc
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
#include "TwoWayList.h"
#include "Record.h"
#include "Schema.h"
#include "File.h"
#include "Comparison.h"
#include "ComparisonEngine.h"
#include "DBFile.h"
#include "Defs.h"
#include <stdlib.h>
#include <unistd.h>
#include <iostream>
#include <string>
#include <string.h>
using namespace std;
DBFile::DBFile() {
}
int DBFile::Create(const char *f_path, fType f_type, void *startup) {
switch (f_type)
{
case heap:
genericDBFile = new HeapFile();
break;
case sorted:
genericDBFile = new SortedFile();
break;
default:
break;
}
genericDBFile->Create(f_path, startup);
}
void DBFile::Load(Schema &f_schema, const char *loadpath) {
genericDBFile->Load(f_schema, loadpath);
}
int DBFile::Open(const char *f_path) {
string metadataFileName(f_path);
metadataFileName += ".data";
FILE *metadata = fopen(metadataFileName.c_str(), "r");
char arr[10];
fscanf(metadata, "%s", arr);
fclose(metadata);
if(!strcmp(arr, "heap")){
genericDBFile = new HeapFile();
} else {
genericDBFile = new SortedFile();
}
genericDBFile->Open(f_path);
genericDBFile->MoveFirst();
}
void DBFile::MoveFirst() {
genericDBFile->MoveFirst();
}
int DBFile::Close() {
genericDBFile->Close();
}
void DBFile::Add(Record *rec) {
genericDBFile->Add(rec);
}
int DBFile::GetNext(Record &fetchme) {
genericDBFile->GetNext(fetchme);
}
int DBFile::GetNext(Record &fetchme, CNF &cnf, Record &literal) {
genericDBFile->GetNext(fetchme, cnf, literal);
}