-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix_cursor.cpp
55 lines (50 loc) · 1.57 KB
/
matrix_cursor.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
#include "global.h"
Matrix_Cursor::Matrix_Cursor(string matrixName, int pageIndex)
{
logger.log("Matrix_Cursor::Matrix_Cursor");
this->matrix_page = matrix_bufferManager.getPage(matrixName, pageIndex);
this->pagePointer = 0;
this->matrixName = matrixName;
this->pageIndex = pageIndex;
}
/**
* @brief This function reads the next row from the matrix_page. The index of the
* current row read from the matrix_page is indicated by the pagePointer(points to row
* in matrix_page the cursor is pointing to).
*
* @return vector<int>
*/
vector<int> Matrix_Cursor::getNext()
{
logger.log("Matrix_Cursor::geNext");
vector<int> result = this->matrix_page.getRow(this->pagePointer);
this->pagePointer++;
if(result.empty()){
matrixCatalogue.getMatrix(this->matrixName)->getNextPage(this);
if(!this->pagePointer){
result = this->matrix_page.getRow(this->pagePointer);
this->pagePointer++;
}
}
return result;
}
vector<int> Matrix_Cursor::getRandomPageRow()
{
logger.log("Matrix_Cursor::getRandomPageRow");
vector<int> result = this->matrix_page.getRow(this->pagePointer);
this->pagePointer++;
return result;
}
/**
* @brief Function that loads Matrix_Page indicated by pageIndex. Now the cursor starts
* reading from the new matrix_page.
*
* @param pageIndex
*/
void Matrix_Cursor::nextPage(int pageIndex)
{
logger.log("Matrix_Cursor::nextPage");
this->matrix_page = matrix_bufferManager.getPage(this->matrixName, pageIndex);
this->pageIndex = pageIndex;
this->pagePointer = 0;
}