-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12_indexed_file_alloc.c
250 lines (217 loc) · 4.82 KB
/
12_indexed_file_alloc.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
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdbool.h>
#include <stdlib.h>
#include <assert.h>
#define DEMO
typedef char String[32];
#define TOTAL_SIZE_KiB (64)
#define BLOCK_SIZE_KiB (1)
#define MAX_FILES (64) // (TOTAL_SIZE_KiB / BLOCK_SIZE_KiB) // 64 index blocks; each file 0 KiB
#define MAX_BLOCKS (64) // (TOTAL_SIZE_KiB / BLOCK_SIZE_KiB)
#ifdef DEMO
#define prompt printf
#else
#define prompt
#endif
typedef struct Block
{
bool occupied;
int* arr;
int arr_size;
// occupied = true and arr = NULL means block is used for storage
// occupied = true and arr != NULL means block is used as index block
}Block;
Block disk[MAX_BLOCKS];
int nf_occupied_blocks = 0;
void print_disk()
{
if (!nf_occupied_blocks)
{
printf("Out of %d blocks, none are occupied. \n", MAX_BLOCKS);
return;
}
printf("Out of %d blocks, these are occupied: \n", MAX_BLOCKS);
for (int i = 0; i < MAX_BLOCKS; ++i)
{
if (disk[i].occupied)
printf("%d ", i);
}
printf("\n");
}
int find_first_unoccupied_block(int start)
{
for (int i = start; i < MAX_BLOCKS; ++i)
{
if (disk[i].occupied == false)
{
return i;
}
}
for (int i = 0; i < start; ++i)
{
if (disk[i].occupied == false)
{
return i;
}
}
return -1;
}
typedef struct File
{
String name;
int size_KiB;
Block* index_block;
}File;
typedef struct Directory
{
File* files;
int nf_files;
}Directory;
void initialize_dir(Directory* dir)
{
dir->files = calloc(sizeof(File), MAX_FILES);
dir->nf_files = 0;
}
void destroy_dir(Directory* dir)
{
free(dir->files);
}
void add_file(Directory* dir)
{
File new_file;
prompt("File name and file size: ");
scanf("%s %d", new_file.name, &new_file.size_KiB);
int nf_storage_blocks = ceil(new_file.size_KiB / (BLOCK_SIZE_KiB * 1.0));
if (nf_storage_blocks + 1 > MAX_BLOCKS - nf_occupied_blocks)
{
printf("Not enough disk space.\n");
return;
}
int index_block_no = find_first_unoccupied_block(rand() % MAX_BLOCKS);
printf("Index block at position %d.\n", index_block_no);
if (index_block_no == -1) // Shouldn't reach here
{
printf("No unoccupied blocks for index.\n");
return;
}
new_file.index_block = &disk[index_block_no];
new_file.index_block->occupied = true;
nf_occupied_blocks ++;
new_file.index_block->arr = calloc(sizeof(int), MAX_BLOCKS);
new_file.index_block->arr_size = 0;
for (int i = 0; i < nf_storage_blocks; ++i)
{
int block_no = find_first_unoccupied_block(rand() % MAX_BLOCKS);
if (block_no == -1) // Shouldn't reach here
{
printf("No unoccupied blocks for storage.\n");
return;
}
printf("Block %d at position %d.\n", i, block_no);
disk[block_no].occupied = true;
nf_occupied_blocks ++;
new_file.index_block->arr[new_file.index_block->arr_size ++] = block_no;
}
dir->files[dir->nf_files++] = new_file;
}
void seek_file(Directory* dir)
{
String item; int block_no;
// prompt("File name; block no. to seek: ")
scanf("%s %d", item, &block_no);
int position = -1;
for (int i = 0; i < dir->nf_files; ++i)
{
if (strcmp(dir->files[i].name, item) == 0)
{
position = i;
break;
}
}
if (position == -1)
{
printf("File not found.\n");
return;
}
File* file = &dir->files[position];
if (block_no < file->index_block->arr_size)
{
int block_no_on_disk = file->index_block->arr[block_no];
printf("The block no. on disk is %d.\n", block_no_on_disk);
}
else
{
printf("File does not have block %d.\n", block_no);
}
}
void delete_file(Directory* dir)
{
String item;
// prompt("File name: ");
scanf("%s", item);
int position = -1;
for (int i = 0; i < dir->nf_files; ++i)
{
if (strcmp(dir->files[i].name, item) == 0)
{
position = i;
break;
}
}
if (position == -1)
{
printf("File not found.\n");
return;
}
File* file = &dir->files[position];
for (int i = 0; i < file->index_block->arr_size; ++i)
{
disk[file->index_block->arr[i]].occupied = false;
nf_occupied_blocks --;
}
file->index_block->occupied = false;
nf_occupied_blocks --;
file->index_block->arr = NULL;
file->index_block->arr_size = 0;
for (int i = position; i < MAX_FILES - 1; ++i)
{
dir->files[i] = dir->files[i + 1];
}
dir->nf_files --;
}
void list_files(Directory* dir)
{
bool nonempty = false;
for(int i = 0; i < dir->nf_files; ++i)
{
nonempty = true;
printf("%s\n", dir->files[i].name);
}
if (!nonempty)
{
printf("Empty Directory.\n");
}
}
int main(int argc, char const *argv[])
{
Directory dir;
initialize_dir(&dir);
String command;
do
{
prompt(">>> ");
scanf("%s", command);
if (strcmp(command, "add") == 0) add_file(&dir);
else if (strcmp(command, "del") == 0) delete_file(&dir);
else if (strcmp(command, "list") == 0) list_files(&dir);
else if (strcmp(command, "seek") == 0) seek_file(&dir);
else if (strcmp(command, "disk") == 0) print_disk();
else break;
printf("\n");
}
while(true);
destroy_dir(&dir);
return 0;
}