-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisk.c
251 lines (199 loc) · 7.06 KB
/
disk.c
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#include "oslabs.h"
#include <stdlib.h>
#include <stdio.h>
struct RCB NULLRCB = {0, 0, 0, 0, 0};
int rcb_compare(struct RCB j, struct RCB k)
{
return (
j.request_id == k.request_id &&
j.arrival_timestamp == k.arrival_timestamp &&
j.cylinder == k.cylinder &&
j.address == k.address &&
j.process_id == k.process_id
);
}
struct RCB handle_request_arrival_fcfs(struct RCB request_queue[QUEUEMAX], int *queue_cnt, struct RCB current_request, struct RCB new_request, int time_stamp)
{
if (rcb_compare(current_request, NULLRCB))
{
return new_request;
}
request_queue[*queue_cnt] = new_request;
*queue_cnt = *queue_cnt + 1;
return current_request;
}
struct RCB handle_request_completion_fcfs(struct RCB request_queue[QUEUEMAX],int *queue_cnt)
{
if (*queue_cnt == 0)
return NULLRCB;
int eai = 0;
for (int i = 1; i < *queue_cnt; i++)
{
if (request_queue[i].arrival_timestamp < request_queue[eai].arrival_timestamp)
{
eai = i;
}
}
struct RCB next_rcb = request_queue[eai];
for (int i = eai - 1; i < *queue_cnt - 1; i ++)
{
request_queue[i] = request_queue[i+1];
}
*queue_cnt = *queue_cnt - 1;
return next_rcb;
}
struct RCB handle_request_arrival_sstf(struct RCB request_queue[QUEUEMAX],int *queue_cnt, struct RCB current_request, struct RCB new_request, int time_stamp)
{
if (rcb_compare(current_request, NULLRCB))
{
return new_request;
}
request_queue[*queue_cnt] = new_request;
*queue_cnt = *queue_cnt + 1;
return current_request;
}
struct RCB handle_request_completion_sstf(struct RCB request_queue[QUEUEMAX],int *queue_cnt,int current_cylinder)
{
if (*queue_cnt == 0)
return NULLRCB;
struct REL_REQ { // struct to track rcbs in queue and their relative closeness to the current cylinder
struct RCB rcb; // an RCB in the queue
int dist_cylinder; // distance from the requested cylinder to the current cylinder
int is_closest; // marked as one of the rcb's requesting the next closest cylinder
};
struct REL_REQ rr[*queue_cnt];
int cr; // closest request made by any rcb
// calculates the distance to the next cylinder for each rcb
// marks the shortest distance for use later
for (int i = 0; i < *queue_cnt; i++)
{
rr[i].rcb = request_queue[i];
rr[i].is_closest = 0;
// This is kinda hackey. the online compiler does not include math.h.
// so this will effectively be distance squared, but it shouldnt matter
// larger numbers mean farther away, smaller means closer.
rr[i].dist_cylinder = (request_queue[i].cylinder - current_cylinder) * (request_queue[i].cylinder - current_cylinder);
if (i == 0)
cr = rr[i].dist_cylinder;
else if (cr > rr[i].dist_cylinder)
cr = rr[i].dist_cylinder;
}
// marks all rcb's which are requesting the next closest rcb
// the earliest arriving of these will be the next chosen
for (int i = 0; i < *queue_cnt; i++)
{
if (rr[i].dist_cylinder == cr)
rr[i].is_closest = 1;
}
// of the rcb's marked as requesting closest, determine which arrived first
int firsthit = 1;
struct RCB nextrcb;
int index_of_nextrcb;
for (int i = 0; i < *queue_cnt; i++)
{
if (firsthit == 1 && rr[i].is_closest == 1)
{
nextrcb = rr[i].rcb;
firsthit = 0;
index_of_nextrcb = i;
}
else if (rr[i].is_closest == 1 && rr[i].rcb.arrival_timestamp < nextrcb.arrival_timestamp)
{
nextrcb = rr[i].rcb;
index_of_nextrcb = i;
}
}
// we know which rcb will be returned and its position in the array. remove it from the array
for (int i = index_of_nextrcb; i < *queue_cnt - 1; i ++)
{
request_queue[i] = request_queue[i+1];
}
*queue_cnt = *queue_cnt - 1;
return nextrcb;
}
struct RCB handle_request_arrival_look(struct RCB request_queue[QUEUEMAX],int *queue_cnt, struct RCB current_request, struct RCB new_request, int time_stamp)
{
if (rcb_compare(current_request, NULLRCB))
{
return new_request;
}
request_queue[*queue_cnt] = new_request;
*queue_cnt = *queue_cnt + 1;
return current_request;
}
struct RCB handle_request_completion_look(struct RCB request_queue[QUEUEMAX],int *queue_cnt, int current_cylinder, int scan_direction)
{
if (*queue_cnt == 0)
return NULLRCB;
struct REL_REQ { // struct to track rcbs in queue and their relative closeness to the current cylinder
struct RCB rcb; // an RCB in the queue
int dist_cylinder; // distance from the requested cylinder to the current cylinder
int is_closest; // marked as one of the rcb's requesting the next closest cylinder
};
struct REL_REQ rr[*queue_cnt];
int cr; // closest request made by any rcb
// calculates the distance to the next cylinder for each rcb
// marks the shortest distance for use later
for (int i = 0; i < *queue_cnt; i++)
{
rr[i].rcb = request_queue[i];
rr[i].is_closest = 0;
// This is kinda hackey. the online compiler does not include math.h.
// so this will effectively be distance squared, but it shouldnt matter
// larger numbers mean farther away, smaller means closer.
rr[i].dist_cylinder = (request_queue[i].cylinder - current_cylinder) * (request_queue[i].cylinder - current_cylinder);
if (i == 0)
cr = rr[i].dist_cylinder;
else if (cr > rr[i].dist_cylinder)
cr = rr[i].dist_cylinder;
}
// marks all rcb's which are requesting the next closest rcb
// the earliest arriving of these will be the next chosen
for (int i = 0; i < *queue_cnt; i++)
{
if (rr[i].dist_cylinder == cr)
rr[i].is_closest = 1;
}
// of the rcb's marked as requesting closest, determine which arrived first
int firsthit = 1;
struct RCB nextrcb;
int index_of_nextrcb;
for (int i = 0; i < *queue_cnt; i++)
{
if (firsthit == 1 && rr[i].is_closest == 1)
{
nextrcb = rr[i].rcb;
firsthit = 0;
index_of_nextrcb = i;
}
else if (rr[i].is_closest == 1 && rr[i].rcb.arrival_timestamp < nextrcb.arrival_timestamp)
{
nextrcb = rr[i].rcb;
index_of_nextrcb = i;
}
}
// we know which rcb will be returned and its position in the array. remove it from the array
for (int i = index_of_nextrcb; i < *queue_cnt - 1; i ++)
{
request_queue[i] = request_queue[i+1];
}
*queue_cnt = *queue_cnt - 1;
return nextrcb;
}
/*
int main (int argc, char *argvp[])
{
struct RCB first = {1, 72, 45, 45, 1};
struct RCB second = {2, 71, 47, 47, 2};
struct RCB third = {3, 73,43, 43, 3};
struct RCB request_queue[10] = {first, second, third};
int queue_cnt = 3;
struct RCB nextrcb = handle_request_completion_sstf(request_queue, &queue_cnt, 48);
printf("The RID of the next process is: %d\n", nextrcb.request_id);
for (int i = 0; i < queue_cnt; i++)
{
printf("RID: %d\n", request_queue[i].request_id);
}
return 0;
}
*/