-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtable.h
57 lines (39 loc) · 1.43 KB
/
table.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
#ifndef TABLE_H
#define TABLE_H
#include "struct.h"
#include<stdlib.h>
#include<unistd.h>
#include<fcntl.h>
#include<pthread.h>
#include<time.h>
#include<iostream>
#include "BPlusTree.h"
#define RECORD_FILE "record.bat" //表存储文件名
class table {
public:
static table *GetTable();//获取table对象指针
void InsertRecord();//添加记录
void SearchRecord(int left, int right, int col); //查询第col列属性值位于区间(left,right)的所有记录
private:
table();
~table();
Record CreateRecord(); //创建一条随机记录
bool AppendRecord(const Record &record); //保存一条记录
BPlusTreeNode* CreateBPlusTree(int col);//为第col列的属性创建B+树
void UpdateIndexFile(int col);//更新索引文件
void CreateIndexFile(BPlusTreeNode* root, int col);
void DisplayRecord(const Record &record);//显示记录
bool Is_Index_File_Exists(int col);//判断索引文件是否存在
void InitializeTable();//初始化表格
static pthread_mutex_t *InitializeMutex();//初始化
private:
int m_Fd;//文件描述符
int64_t record_num;//表中现有记录数量
Record* records;//存储记录
BPlusTree* tree;//B+树
pthread_mutex_t *m_pMutexForOperatingTable;//互斥访问表
//用于table实例的创建,保证只创建一个table实例
static pthread_mutex_t *m_pMutexForCreatingTable;
static table *m_table;
};
#endif // TABLE_H