forked from MatiasBjorling/flashsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssd_page.cpp
112 lines (86 loc) · 2.61 KB
/
ssd_page.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
/* Copyright 2009, 2010 Brendan Tauras */
/* ssd_page.cpp is part of FlashSim. */
/* FlashSim is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version. */
/* FlashSim is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. */
/* You should have received a copy of the GNU General Public License
* along with FlashSim. If not, see <http://www.gnu.org/licenses/>. */
/****************************************************************************/
/* Page class
* Brendan Tauras 2009-04-06
*
* The page is the lowest level data storage unit that is the size unit of
* requests (events). Pages maintain their state as events modify them. */
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <stdexcept>
#include "ssd.h"
namespace ssd {
/*
* Buffer used for accessing data pages.
*/
void *global_buffer;
}
using namespace ssd;
Page::Page(const Block &parent, double read_delay, double write_delay):
state(EMPTY),
parent(parent),
read_delay(read_delay),
write_delay(write_delay)
{
if(read_delay < 0.0){
fprintf(stderr, "Page warning: %s: constructor received negative read delay value\n\tsetting read delay to 0.0\n", __func__);
this -> read_delay = 0.0;
}
if(write_delay < 0.0){
fprintf(stderr, "Page warning: %s: constructor received negative write delay value\n\tsetting write delay to 0.0\n", __func__);
this -> write_delay = 0.0;
}
return;
}
Page::~Page(void)
{
return;
}
enum status Page::_read(Event &event)
{
assert(read_delay >= 0.0);
event.incr_time_taken(read_delay);
if (!event.get_noop() && PAGE_ENABLE_DATA)
global_buffer = (char*)page_data + event.get_address().get_linear_address() * PAGE_SIZE;
return SUCCESS;
}
enum status Page::_write(Event &event)
{
assert(write_delay >= 0.0);
event.incr_time_taken(write_delay);
if (PAGE_ENABLE_DATA && event.get_payload() != NULL && event.get_noop() == false)
{
void *data = (char*)page_data + event.get_address().get_linear_address() * PAGE_SIZE;
memcpy (data, event.get_payload(), PAGE_SIZE);
}
if (event.get_noop() == false)
{
assert(state == EMPTY);
state = VALID;
}
return SUCCESS;
}
const Block &Page::get_parent(void) const
{
return parent;
}
enum page_state Page::get_state(void) const
{
return state;
}
void Page::set_state(enum page_state state)
{
this -> state = state;
}