-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix_bufferManager.cpp
121 lines (112 loc) · 3.45 KB
/
matrix_bufferManager.cpp
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include "global.h"
Matrix_BufferManager::Matrix_BufferManager()
{
logger.log("Matrix_BufferManager::Matrix_BufferManager");
}
/**
* @brief Function called to read a matrix_page from the buffer manager. If the matrix_page is
* not present in the pool, the matrix_page is read and then inserted into the pool.
*
* @param matrixName
* @param pageIndex
* @return Matrix_Page
*/
Matrix_Page Matrix_BufferManager::getPage(string matrixName, int pageIndex)
{
logger.log("Matrix_BufferManager::getPage");
string pageName = "../data/temp/"+matrixName + "_Page" + to_string(pageIndex);
if (this->inPool(pageName))
return this->getFromPool(pageName);
else
return this->insertIntoPool(matrixName, pageIndex);
}
/**
* @brief Checks to see if a matrix_page exists in the pool
*
* @param pageName
* @return true
* @return false
*/
bool Matrix_BufferManager::inPool(string pageName)
{
logger.log("Matrix_BufferManager::inPool");
for (auto matrix_page : this->matrix_pages)
{
if (pageName == matrix_page.pageName)
return true;
}
return false;
}
/**
* @brief If the matrix_page is present in the pool, then this function returns the
* matrix_page. Note that this function will fail if the matrix_page is not present in the
* pool.
*
* @param pageName
* @return Matrix_Page
*/
Matrix_Page Matrix_BufferManager::getFromPool(string pageName)
{
logger.log("Matrix_BufferManager::getFromPool");
for (auto matrix_page : this->matrix_pages)
if (pageName == matrix_page.pageName)
return matrix_page;
}
/**
* @brief Inserts matrix_page indicated by matrixName and pageIndex into pool. If the
* pool is full, the pool ejects the oldest inserted matrix_page from the pool and adds
* the current matrix_page at the end. It naturally follows a queue data structure.
*
* @param matrixName
* @param pageIndex
* @return Matrix_Page
*/
Matrix_Page Matrix_BufferManager::insertIntoPool(string matrixName, int pageIndex)
{
logger.log("Matrix_BufferManager::insertIntoPool");
Matrix_Page matrix_page(matrixName, pageIndex);
if (this->matrix_pages.size() >= BLOCK_COUNT)
matrix_pages.pop_front();
matrix_pages.push_back(matrix_page);
return matrix_page;
}
/**
* @brief The buffer manager is also responsible for writing matrix_pages. This is
* called when new matrixs are created using assignment statements.
*
* @param matrixName
* @param pageIndex
* @param rows
* @param rowCount
*/
void Matrix_BufferManager::writePage(string matrixName, int pageIndex, vector<vector<int>> rows, int rowCount)
{
logger.log("Matrix_BufferManager::writePage");
Matrix_Page matrix_page(matrixName, pageIndex, rows, rowCount);
matrix_page.writePage();
}
/**
* @brief Deletes file names fileName
*
* @param fileName
*/
void Matrix_BufferManager::deleteFile(string fileName)
{
if (remove(fileName.c_str()))
logger.log("Matrix_BufferManager::deleteFile: Err");
else
logger.log("Matrix_BufferManager::deleteFile: Success");
}
/**
* @brief Overloaded function that calls deleteFile(fileName) by constructing
* the fileName from the matrixName and pageIndex.
*
* @param matrixName
* @param pageIndex
*/
void Matrix_BufferManager::deleteFile(string matrixName, int pageIndex)
{
logger.log("Matrix_BufferManager::deleteFile");
string fileName = "../data/temp/"+matrixName + "_Matrix_Page" + to_string(pageIndex);
this->deleteFile(fileName);
}