This repository has been archived by the owner on Apr 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleOS.cpp
519 lines (446 loc) · 13.3 KB
/
SimpleOS.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
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/* Name : Dumitru
** Class : CS 330 - 001
** Date : Jan/Feb 2007
**
** Description: SimpleOS.cpp
Implements the functions of the simple operating system class.
******************************************************************************/
#ifndef SIMPLE_OS_CPP // avoid multiple declarations
#define SIMPLE_OS_CPP
#include "SimpleOS.h"
SimpleOS::SimpleOS()
/******************************************************************************
Default constructor. Sets the default values of the operating system.
******************************************************************************/
{ // assign default values
for(int i = 0; i < MAX_NUM_FS;i++)
diskTable[i] = NULL;
}
void SimpleOS::InstallDisk(string dName, int nBytes, fstream & output)
/******************************************************************************
Checks for valid parameters and if they are valid, it installs the disk refered
to by dName on the operating system.
******************************************************************************/
{
int index = -1;
// check for valid disk name
if(!isValidName(dName,15,false))
{ // Error: Invalid Parameter
output << ERROR[3] << endl;
return;
}
// check the disk size
// should be > 0 and < MAX_DISK_BYTE_SIZE
if(nBytes <= 0 || nBytes > MAX_DISK_BYTE_SIZE)
{ // Error: Invalid Parameter
output << ERROR[3] << endl;
return;
}
// check if the dName disk is already installed
for(int i = 0; i < MAX_NUM_FS; i++)
{
if(diskTable[i] != NULL && (dName == diskTable[i]->diskName))
{ // Error: Disk is already installed
output << ERROR[19] << endl; return;
}
}
// check if we have enough space to install a new disk
for(int i = 0; i < MAX_NUM_FS; i++)
{
if(diskTable[i] == NULL)
{
index = i; break;
}
}
if(index == -1)
{ // Error: Mount table is full
output << ERROR[13] << endl; return;
}
// if we got here we can install a new disk at [index]
diskTable[index] = new DiskObj;
diskTable[index]->diskName = dName;
diskTable[index]->fs = new FileSystem;
diskTable[index]->fs->SetName("");
diskTable[index]->fs->Install(dName,nBytes,output);
diskTable[index]->mounted = false;
diskTable[index]->isCurrent = false;
}
void SimpleOS::FormatDisk(string dName, string fsType,
int nBytes, int nFiles, fstream & output)
/******************************************************************************
Checks for valid parameters and if they are valid it formats the disk refered
to by dName with the file system type fsType with a maximum no of bytes nBytes
and a maximum number of files nFiles
******************************************************************************/
{
int index = -1;
// check for valid disk name
if(!isValidName(dName,15,false))
{ // Error: Invalid Parameter
output << ERROR[3] << endl; return;
}
// check for valid filesystem type
if(isFsType(fsType))
{ // Error: Unsupported Filesystem Type
output << ERROR[5] << endl; return;
}
// check for number of files
if(nFiles > MAX_NUM_FILES || nFiles < 1)
{ // Error: Invalid Parameter
output << ERROR[3] << endl; return;
}
// checks if the disk is installed
for(int i = 0; i < MAX_NUM_FS; i++)
{
if((diskTable[i] != NULL) && (diskTable[i]->diskName == dName))
{
index = i; break;
}
}
if(index == -1)
{ // Error: Disk not installed
output << ERROR[21] << endl; return;
}
if(nBytes > diskTable[index]->fs->GetNumMaxBytes())
{ // Error: Invalid Parameter
output << ERROR[3] << endl; return;
}
diskTable[index]->fs->Format(dName,fsType,nBytes,nFiles,output);
}
void SimpleOS::MountDisk(string dName, string fsName, fstream & output)
/******************************************************************************
Checks for valid parameters and if they are valid, it mounts the file system
refered to by fsName on the disk refered to by dName
******************************************************************************/
{
bool diskTableFull = true;
int index = -1;
// check for valid disk name
if(!isValidName(dName,15,false))
{ // Error: Invalid Parameter
output << ERROR[3] << endl;
return;
}
// check for valid filesystem name
if(!isValidName(fsName,15,true))
{ // Error: Invalid Parameter
output << ERROR[3] << endl;
return;
}
// check if there's enough room on the mount table
for(int i = 0; i < MAX_NUM_FS;i++)
{
if(diskTable[i] == NULL)
{
diskTableFull = false;
break;
}
}
if(diskTableFull)
{ // Error: Mount table is full
output << ERROR[13] << endl;
return;
}
// --- IF THE FILE TABLE IS NOT FULL
// if fsName is valid, it has a ':' char at the end
// remove the ':'
fsName = fsName.substr(0,fsName.length()-1);
// look for the disk refered to by dName
for(int i = 0; i < MAX_NUM_FS; i++)
{
if(diskTable[i] != NULL && (diskTable[i]->diskName == dName))
{
index = i; break;
}
}
if(index == -1) // disk not found
{ // Error: Cannot read filesystem
output << ERROR[11] << endl; return;
}
// disk found:
// check if it is already mounted or not
if(diskTable[index]->mounted)
{ // Error: Filesystem is already mounted
output << ERROR[17] << endl; return;
}
// mount the disk
diskTable[index]->mounted = true;
diskTable[index]->isCurrent = false;
diskTable[index]->fs->SetName(fsName);
}
void SimpleOS::UnmountDisk(string fsName, fstream& output)
/******************************************************************************
Checks for valid parameters and if they are valid, unmounts the file system
refered to by fsName from the operating system.
******************************************************************************/
{
int index = -1;
// check for valid file system name
// if not valid, it's not in the system to start with
if(!isValidName(fsName,15,true))
{ // Error: Invalid parameter
output << ERROR[3] << endl; return;
}
// if it is a valid file system name, it has a ':'
// at the end, strip it
fsName = fsName.substr(0,fsName.length()-1);
// look for the file system in the table
for(int i = 0; i < MAX_NUM_FS; i++)
{
if(diskTable[i] != NULL && (diskTable[i]->fs->GetName() == fsName))
{
index = i; break;
}
}
if(index == -1) // not in table
{ // Error: Filesystem is not mounted
output << ERROR[14] << endl; return;
}
// if the this file system is the current one
// it cannot be unmounted
if(diskTable[index]->isCurrent)
{ // Error: Filesystem is in use
output << ERROR[18] << endl; return;
}
// unmount file system
diskTable[index]->mounted = false;
}
void SimpleOS::ShowMounts(fstream & output)
/******************************************************************************
Displays the mounted file systems.
******************************************************************************/
{
output << "+++++++++++++++++++++++++++++++++++++++++++++++" << endl
<< "+ FSId FS_Name FS_Disk +" << endl;
for(int i = 0; i < MAX_NUM_FS; i++)
{ // if it's mounted, display it
if(diskTable[i] != NULL && diskTable[i]->mounted)
{ // formatting and output
output << "+" << setw(5) << right << i << " "
<< left << setw(16) << diskTable[i]->fs->GetName()
<< setw(17) << diskTable[i]->diskName;
// indicate if the file system is the current file system
if(diskTable[i]->isCurrent) output << "+++++ +";
else output << right << setw(7) << "+";
output << endl;
}
}
output << "+++++++++++++++++++++++++++++++++++++++++++++++" << endl;
}
void SimpleOS::ChangeFs(string fsName, fstream & output)
/******************************************************************************
Check for valid input and if it is valid, change the current file system to
the file system refered by fsName
******************************************************************************/
{
int index = -1;
// check for valid filesystem name
if(!isValidName(fsName,15,true))
{ // Error: Invalid Parameter
output << ERROR[3] << endl;
return;
}
// if fsName is valid, it has a ':' char at the end
// remove the ':'
fsName = fsName.substr(0,fsName.length()-1);
// look for the file system
for(int i = 0; i < MAX_NUM_FS; i++)
{
if(diskTable[i] != NULL)
{
if(diskTable[i]->fs->GetName() == fsName)
{
index = i; break;
}
}
}
if(index == -1 || !(diskTable[index]->mounted))
{ // Error: Filesystem is not mounted
output << ERROR[14] << endl; return;
}
// find the current file system and change its state
for(int i = 0; i < MAX_NUM_FS; i++)
{
if(diskTable[i] != NULL && diskTable[i]->isCurrent)
{
diskTable[i]->isCurrent = false;
break;
}
}
// set new current file system
diskTable[index]->isCurrent = true;
}
void SimpleOS::DumpFs(int startByte, int nBytes, fstream & output)
/******************************************************************************
Check for valid parameters and if they are valid, display the contents of the
disk from startByte to (startByte + nBytes)
******************************************************************************/
{
int index = -1;
// check for valid startByte and nBytes
// they should be >= 0 and divisible by 4
if(startByte < 0 || nBytes < 0)
{
// Error: Invalid Parameter
output << ERROR[3] << endl;
return;
}
if((startByte % 4 != 0) || (nBytes % 4 != 0))
{
// Error: Invalid Parameter
output << ERROR[3] << endl;
return;
}
// find the current file system
for(int i = 0; i < MAX_NUM_FS; i++)
{
if(diskTable[i] != NULL && (diskTable[i]->isCurrent))
{
index = i; break;
}
}
if(index == -1)
{ // Error: No filesystem has been specified
output << ERROR[16] << endl; return;
}
// display contents
diskTable[index]->fs->Dump(diskTable[index]->diskName,startByte,nBytes,output);
}
void SimpleOS::ShowFs(fstream & output)
/******************************************************************************
Displays the information about the current file system
******************************************************************************/
{
int index = -1;
float percent = -1.0;
// find the current file system
for(int i = 0; i < MAX_NUM_FS; i++)
{
if(diskTable[i] != NULL && diskTable[i]->isCurrent)
{
index = i; break;
}
}
if(index == -1)
{ // Error: No filesystem has been specified
output << ERROR[16] << endl; return;
}
// display header
output << "++++++++++++++++++++++++++++++++++++++"
<< "+++++++++++++++++++++++++++++++++++++" << endl;
output << "+ Filesystem Type UsedF MaxF"
<< " UsedB MaxB %Used Diskfile +" << endl;
// calculate the percent of used bytes
percent = ((float)diskTable[index]->fs->GetNumUsedBytes()/
(float)diskTable[index]->fs->GetNumMaxBytes()) * 100;
// format and output information
output << "+ " << setw(16) << left << diskTable[index]->fs->GetName() << right
<< setw(8) << diskTable[index]->fs->GetType() << " "
<< setw(5) << right << diskTable[index]->fs->GetNumUsedFiles()
<< setw(6) << diskTable[index]->fs->GetNumMaxFiles()
<< setw(6) << diskTable[index]->fs->GetNumUsedBytes()
<< setw(6) << diskTable[index]->fs->GetNumMaxBytes()
<< setw(6) << (int)percent
<< " " << diskTable[index]->diskName
<< setw(18-(int)(diskTable[index]->diskName).length()) << right << "+" << endl;
// display footer
output << "++++++++++++++++++++++++++++++++++++++"
<< "+++++++++++++++++++++++++++++++++++++" << endl;
}
/*########################### PHASE II ######################################*/
void SimpleOS::ImportFile(string fName, fstream& output)
{
int index = -1;
index = GetCurrFSindex();
if(index == -1)
{
output << ERROR[16] << endl; return;
}
if(!isValidName(fName,15,false))
{
output << ERROR[3] << endl; return;
}
diskTable[index]->fs->ImportFile(fName,diskTable[index]->diskName,output);
}
void SimpleOS::CpFile(string f1, string f2, fstream& output)
{
int index = -1;
if(!isValidName(f1,15,false) || !isValidName(f2,15,false) || f1 == f2)
{
output << ERROR[3] << endl; return;
}
index = GetCurrFSindex();
if(index == -1)
{
output << ERROR[16] << endl; return;
}
diskTable[index]->fs->Cp(diskTable[index]->diskName,f1,f2,output);
}
void SimpleOS::RenameFile(string f1, string f2, fstream& output)
{
int index = -1;
if(!isValidName(f1,15,false) || !isValidName(f2,15,false))
{
output << ERROR[3] << endl; return;
}
index = GetCurrFSindex();
if(index == -1)
{
output << ERROR[16] << endl; return;
}
diskTable[index]->fs->Rename(diskTable[index]->diskName,f1,f2,output);
}
void SimpleOS::ListFiles(fstream& output)
{
int index = -1;
index = GetCurrFSindex();
if(index == -1)
{
output << ERROR[16] << endl; return;
}
diskTable[index]->fs->Dir(output);
}
void SimpleOS::ChgOwner(string fName, int newOwner, fstream& output)
{
int index = -1;
if(newOwner < 0 || (!isValidName(fName,15,false)))
{
output << ERROR[3] << endl; return;
}
index = GetCurrFSindex();
if(index == -1)
{
output << ERROR[16] << endl; return;
}
diskTable[index]->fs->Owner(fName,newOwner,output);
}
void SimpleOS::ChangePerm(string fName, string newPerms, fstream& output)
{
}
void SimpleOS::ExportFile(string fName, fstream& output)
{
int index = -1;
if(!isValidName(fName,15,false))
{
output << ERROR[3] << endl; return;
}
index = GetCurrFSindex();
if(index == -1)
{
output << ERROR[16] << endl; return;
}
diskTable[index]->fs->Export(fName,diskTable[index]->diskName,output);
}
int SimpleOS::GetCurrFSindex()
{
for(int i = 0; i < MAX_NUM_FS;i++)
{
if(diskTable[i] != NULL)
{
if(diskTable[i]->isCurrent)
return i;
}
}
return -1;
}
#endif // SIMPLE_OS_CPP