-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssfs.cpp
1179 lines (996 loc) · 34.2 KB
/
ssfs.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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "ssfs.hpp"
using namespace std;
pthread_t op_thread[4];
pthread_t SCH_thread;
char* SUPER;
char* FREE_MAP;
char* INODE_MAP = new char[MAX_INODES];
/*Lock to protect output to console to ensure clean printing */
pthread_mutex_t CONSOLE_OUT_LOCK = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t REQUESTS_LOCK = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t BMAP_LOCK = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t IMAP_LOCK = PTHREAD_MUTEX_INITIALIZER;
/* Workload queue that will be serviced by the disk scheduler*/
queue<disk_io_request*>* requests = new queue<disk_io_request*>;
bool shut=0;
bool isShutdown() {return shut;}
//Just an alias that I'm too scared to consolidate
int
getBitmapSize()
{
return getFreeMapSize();
}
/* Return the block number of a block that is not currently assigned to a file
* @return if successful, return block# of free block, otherwise return -1 (no free blocks)
*/
int getUnusedBlock()
{
for(int i = getUserDataStart(); i < getNumBlocks(); i++)
{
pthread_mutex_init(&BMAP_LOCK, NULL);
pthread_mutex_lock(&BMAP_LOCK);
// Maybe need to do i % blockSize() here or something to index into individual bytes
if(FREE_MAP[i] == 0)
{
FREE_MAP[i] = 1;
writeToBlock(i, new char[getBlockSize()]());
return i; //returns the block # of the unassigned block
}
}
pthread_mutex_unlock(&BMAP_LOCK);
return -1;
/* DEPRECATED
for(int i=257;i<getNumBlocks();i++)
{
int asdf = getFreeByteMapInBlock(i);
if(asdf != -1) return asdf;
}
return -1;
*/
}
//Push a request onto the disk scheduler workload queue
void addRequest(disk_io_request* req)
{
pthread_mutex_lock(&REQUESTS_LOCK);
requests->push(req);
pthread_mutex_unlock(&REQUESTS_LOCK);
}
/* Return the block number of an inode that is not currently assigned to a file
* @return block number of found empty inode, otherwise return -1 (no free blocks)
*/
int getEmptyInode()
{
pthread_mutex_init(&IMAP_LOCK,NULL);
pthread_mutex_lock(&IMAP_LOCK);
for(int i = 0; i < MAX_INODES; i++)
{
if(INODE_MAP[i] == 0)
{
INODE_MAP[i] = 1;
return i+getInodesStart();
}
}
pthread_mutex_unlock(&IMAP_LOCK);
cerr << "Disk cannot fit any more files" << endl;
return -1; // DISK IS FULL
}
/*
Retrieve the index of an inode that contains argument file name
@param file : name of file associated with the inode
@return the block number of the inode if it exists, -1 if it doesn't exist
*/
int getInode(const char* file)
{
bool found=0;
int i;
pthread_mutex_init(&IMAP_LOCK,NULL);
pthread_mutex_lock(&IMAP_LOCK);
for(i=0;i<MAX_INODES && !found;i++)
{
if(!INODE_MAP[i])
{
//I think this will skip requests to unallocated blocks but im autistic so it could be completely wrong
continue;
}
char* data = readFromBlock(i+getInodesStart());
if(strncmp(data, file, MAX_FILENAME_SIZE) == 0)
found = 1;
delete[](data);
}
pthread_mutex_unlock(&IMAP_LOCK);
if(found) return i-1+getInodesStart();
else return -1;
}
/*
Retrieve inode data from index number given by passing filename into getInode() func
@param ind : index in inode table of the inode bytes
@return a pointer to the inode constructed by the casting of data in block \ind
*/
inode* getInodeFromBlockNumber(int ind)
{
return (inode*) readFromBlock(ind);
}
/*
Adds an io_WRITE request to the disk scheduler workload buffer
@param
- block : block number to write to (offset write() syscall by block*blocksize)
- data : char[blocksize] containing the data that will be written by the syscall
@return void
*/
void writeToBlock(int block, char* data)
{
disk_io_request* req = new disk_io_request;
req->op = io_WRITE;
req->data = data;
req->block_number = block;
req->done = 0;
pthread_mutex_init( &req->lock, NULL);
pthread_cond_init( &req->waitFor, NULL);
addRequest(req);
pthread_mutex_lock(&req->lock);
while(!req->done)
pthread_cond_wait(&req->waitFor, &req->lock);
pthread_mutex_unlock(&req->lock);
}
/*
Adds an io_READ request to the disk scheduler workload buffer
@param
- block : block number to read from (offset read() syscall by block*blocksize)
@return char[blocksize] pointer to buffer containing data read from disk
*/
char* readFromBlock(int block)
{
disk_io_request* req = new disk_io_request;
req->op = io_READ;
req->data = new char[getBlockSize()]();
req->block_number = block;
req->done = 0;
pthread_mutex_init( &req->lock, NULL);
pthread_cond_init(& req->waitFor, NULL);
addRequest(req);
pthread_mutex_lock(&req->lock);
while(!req->done)
pthread_cond_wait(&req->waitFor, &req->lock);
pthread_mutex_unlock(&req->lock);
return req->data;
}
/*
-- SPEC --
Causes SSFS to create a new file named <SSFS file name>. If <SSFS file name> exists, the command should fail. SSFS does not support directories/folders, so all file names should be unique.
----------
@param filename: name of file to be created (inode->filename)
@return void
*/
void CREATE(const char* filename)
{
if(filename[0] == 0)
{
cerr << "Invalid filename entered into CREATE argument " << endl;
}
// if(getInode(filename) != -1) return;
int inod = getEmptyInode();
if(inod != -1)
{
char* data = new char[getBlockSize()]();
memcpy(data, filename, strlen(filename));
writeToBlock(inod, data);
}
}
/*
-- SPEC --
This command causes the contents of <SSFS file name>, if any, to be overwritten by the contents of the linux file (in the CS file system) named <unix file name>. If a file named <SSFS file name> does not yet exist in SSFS, then a new one should be created to contain the contents of <unix file name>.
----------
Reads from unixFileName in blocksize chunks and pushes io_WRITE requests to the scheduler buffer to write the blocks to ssfsFileName
@param
- ssfsFile : name of file on disk to be overwritten | created
- unixFileName : name of file to be imported into SSFS
@return void
*/
void IMPORT(const char* ssfsFile, const char* unixFilename){
/* Initializing */
int block_size = getBlockSize();
int num_blocks = getNumBlocks();
int byteOffs = block_size + MAX_INODES*block_size + (num_blocks/block_size);
int max_file_size = block_size * (1 + NUM_DIRECT_BLOCKS + (block_size/sizeof(int)) + ((block_size*block_size)/(sizeof(int)*sizeof(int)))); //max number of blocks we can hold in a single file * num of bytes in a block
int fd;
if((fd = open(unixFilename, O_RDONLY)) < 0)
{
cerr << "Error opening file stream from " << unixFilename << endl;
return;
}
/* Gets & checks the total bytes of unixFilename file */
int filesize;
struct stat sb;
if(fstat(fd, &sb) == -1)
{
cerr << "Failed to read file size from fstat(fd, &sb) in func IMPORT" << endl;
return;
}
else
{
filesize = sb.st_size;
}
/* Checks if we have room in the file structure to store all the data */
if(filesize > max_file_size - 1) // - 1 to make room for trailing bytes
{
cerr << "Unable to read unix file: file is too large in func IMPORT" << endl;
return;
}
/* Begins to read from unix file and inject blocks into the disk */
DELETE(ssfsFile);
CREATE(ssfsFile);
int inodeBlock = getInode(ssfsFile);
inode* inode = getInodeFromBlockNumber(inodeBlock);
inode->fileSize = filesize;
int* indirect = 0;
int* doubleIndirect = 0;
int addrsPerBlock = getBlockSize() / 4;
//i represents the # of blocks read at point in loop
for(int i = 0; i < (filesize + block_size)/block_size; i++) //add block size to filesize to avoid truncating
{
char* read_buffer = new char[block_size]();
int bytes_read;
if((bytes_read = read(fd, read_buffer, block_size)) <= 0)
{
if(bytes_read == -1)
cerr << "Error reading file" << endl;
break;
}
if(i<NUM_DIRECT_BLOCKS)
{
int block = inode->direct[i];
if(block == 0) block = (inode->direct[i] = getUnusedBlock());
if(block == -1) break;
writeToBlock(block, read_buffer);
}
else if (i < NUM_DIRECT_BLOCKS + getBlockSize()/4)
{
if(inode->indirect == 0) if((inode->indirect = getUnusedBlock()) == -1) break;
if(indirect == 0) indirect = (int*)readFromBlock(inode->indirect);
if(indirect[i-NUM_DIRECT_BLOCKS] == 0) if((indirect[i-NUM_DIRECT_BLOCKS] = getUnusedBlock()) == -1) break;
writeToBlock(indirect[i-NUM_DIRECT_BLOCKS], read_buffer);
}
else
{
if(inode->doubleIndirect == 0) inode->doubleIndirect = getUnusedBlock();
if(doubleIndirect == 0) doubleIndirect = (int*) readFromBlock(inode->doubleIndirect);
int doubIndex = (i-NUM_DIRECT_BLOCKS-addrsPerBlock)/addrsPerBlock;
int doubIndexIntoBlock = (i-NUM_DIRECT_BLOCKS-addrsPerBlock)%addrsPerBlock;
if(doubleIndirect[doubIndex] == 0) doubleIndirect[doubIndex] = getUnusedBlock();
int* currentBlock = (int*)readFromBlock(doubleIndirect[doubIndex]);
if(currentBlock[doubIndexIntoBlock] == 0) currentBlock[doubIndexIntoBlock] = getUnusedBlock();
writeToBlock(currentBlock[doubIndexIntoBlock], read_buffer);
writeToBlock(doubleIndirect[doubIndex], (char*)currentBlock);
}
}
if(indirect)writeToBlock(inode->indirect, (char*)indirect);
if(doubleIndirect) writeToBlock(inode->doubleIndirect, (char*)doubleIndirect);
writeToBlock(inodeBlock, (char*)inode);
}
void fillData(char* data, char c, int start, int num, int i)
{
int startBlock = start/getBlockSize();
int endBlock = (start+num)/getBlockSize();
if(i != startBlock && i != endBlock) for(int j=0;j<getBlockSize();j++)data[j]=c;
else if (i==startBlock&&i!=endBlock)for(int j = start%getBlockSize();j<getBlockSize();j++)data[j]=c;
else if (i != startBlock && i==endBlock)for(int j=0;j<(start+num)%getBlockSize();j++)data[j]=c;
else if (i == startBlock && i==endBlock)for(int j =start%getBlockSize();j<(start+num)%getBlockSize();j++)data[j]=c;
}
void WRITE(const char* fileName, char c, int start, int num)
{
int inodeBlock = getInode(fileName);
if(inodeBlock == -1) CREATE(fileName);
inodeBlock = getInode(fileName);
if(inodeBlock == -1) return;
inode* inode = getInodeFromBlockNumber(inodeBlock);
int startBlock = start/getBlockSize();
int endBlock = (start+num)/getBlockSize();
inode->fileSize = max(inode->fileSize, start+num);
int* indirect = 0;
int* doubleIndirect = 0;
int addrsPerBlock = getBlockSize()/4;
for(int i = startBlock;i<=endBlock;i++)
{
if(i<NUM_DIRECT_BLOCKS)
{
int block = inode->direct[i];
if(block == 0) block = (inode->direct[i] = getUnusedBlock());
if(block == -1) break;
char* data = readFromBlock(block);
fillData(data, c, start, num, i);
writeToBlock(block, data);
}
else if (i < NUM_DIRECT_BLOCKS + getBlockSize()/4)
{
if(inode->indirect == 0) if((inode->indirect = getUnusedBlock()) == -1) break;
if(indirect == 0) indirect = (int*)readFromBlock(inode->indirect);
if(indirect[i-NUM_DIRECT_BLOCKS] == 0) if((indirect[i-NUM_DIRECT_BLOCKS] = getUnusedBlock()) == -1) break;
char* data = readFromBlock(indirect[i-NUM_DIRECT_BLOCKS]);
fillData(data,c,start,num,i);
writeToBlock(indirect[i-NUM_DIRECT_BLOCKS], data);
}
else if ( i < 12+addrsPerBlock+addrsPerBlock*addrsPerBlock)
{
if(inode->doubleIndirect == 0) inode->doubleIndirect = getUnusedBlock();
if(doubleIndirect == 0) doubleIndirect = (int*) readFromBlock(inode->doubleIndirect);
int doubIndex = (i-NUM_DIRECT_BLOCKS-addrsPerBlock)/addrsPerBlock;
int doubIndexIntoBlock = (i-NUM_DIRECT_BLOCKS-addrsPerBlock)%addrsPerBlock;
if(doubleIndirect[doubIndex] == 0) doubleIndirect[doubIndex] = getUnusedBlock();
int* currentBlock = (int*)readFromBlock(doubleIndirect[doubIndex]);
if(currentBlock[doubIndexIntoBlock] == 0) currentBlock[doubIndexIntoBlock] = getUnusedBlock();
char* data = readFromBlock(currentBlock[doubIndexIntoBlock]);
fillData(data, c, start, num, i);
writeToBlock(currentBlock[doubIndexIntoBlock], data);
writeToBlock(doubleIndirect[doubIndex], (char*)currentBlock);
}
else
{
cerr << "Attempted to write past max file size, truncated" << endl;
inode->fileSize = (12+addrsPerBlock+addrsPerBlock*addrsPerBlock)*getBlockSize();
break;
}
}
if(indirect)writeToBlock(inode->indirect, (char*)indirect);
if(doubleIndirect) writeToBlock(inode->doubleIndirect, (char*)doubleIndirect);
writeToBlock(inodeBlock, (char*)inode);
}
/*
-- SPEC --
This command displays the contents of <SSFS file name> on the screen, just like the unix cat command.
----------
Issues read requests for blocks of fileName and pushes them into a buffer, then outputs each character in the buffer one at a time to the output stream
@param fileName : name of file on disk to be read from
@return void
*/
void CAT(const char* fileName){
int indirect_max_size = NUM_DIRECT_BLOCKS + getBlockSize()/sizeof(int); // # of blocks that can be refferenced by an indirect block
int double_indirect_max_size = indirect_max_size + (getBlockSize()/sizeof(int)) * (getBlockSize()/sizeof(int));
int ino = getInode(fileName);
if(ino == -1)
{
printf("File doesnt exist\n");
return;
}
inode* inod = getInodeFromBlockNumber(ino);
READ(fileName, 0, inod->fileSize);
}
/*
-- SPEC --
Remove the file named <SSFS file name> from SSFS, and free all of its blocks, including the inode, all data blocks, and all indirect blocks associated with the file.
----------
Removes inode associated with fileName from the tables that mark it as being in use, allowing it to be readily overwritten
- We DO NOT wipe the data
@param
- fileName : name of file on disk to be deleted
@return void
*/
void DELETE(const char* fileName)
{
int ino = getInode(fileName);
if(ino == -1) return;
inode* inod = getInodeFromBlockNumber(ino);
for(int i =0;i<NUM_DIRECT_BLOCKS;i++)
{
FREE_MAP[inod->direct[i]]=0;
}
if(inod->indirect)
{
int* indirect_block = (int*) readFromBlock(inod->indirect);
FREE_MAP[inod->indirect] = 0;
for(int i =0;i<getBlockSize()/4;i++)
{
FREE_MAP[indirect_block[i]] = 0;
}
delete[] (char*) indirect_block;
}
if(inod->doubleIndirect)
{
int* dindirect_block = (int*) readFromBlock(inod->doubleIndirect);
for(int i =0;i<getBlockSize()/4;i++)
{
int* indir_block = (int*) readFromBlock(dindirect_block[i]);
for(int j=0;j<getBlockSize()/4;j++)
{
FREE_MAP[indir_block[j]] = 0;
}
FREE_MAP[dindirect_block[i]] = 0;
delete[] indir_block;
}
delete[] dindirect_block;
}
FREE_MAP[inod->doubleIndirect] = 0;
delete[] inod;
char* asdf = new char[getBlockSize()]();
writeToBlock(ino, asdf);
INODE_MAP[ino-getInodesStart()] = 0;
}
/*
-- SPEC --
This command should display <num bytes> of file <SSFS file name>, starting at byte <start byte>.
----------
Read n bytes from file starting at given start point and send to cout
@param
- fileName : name of file on disk to be read
- start : byte number to start reading at
- num : number of bytes to read
@return void
*/
void READ(const char* fileName, int start, int num)
{
int indirect_max_size = NUM_DIRECT_BLOCKS + getBlockSize()/sizeof(int); // # of blocks that can be refferenced by an indirect block
int double_indirect_max_size = indirect_max_size + (getBlockSize()/sizeof(int)) * (getBlockSize()/sizeof(int));
int ino = getInode(fileName);
if(ino == -1)
{
printf("File doesnt exist\n");
return;
}
inode* inod = getInodeFromBlockNumber(ino);
int* indirect_block = (int*) readFromBlock(inod->indirect);
int* doubleIndirect = 0;
int fs = inod->fileSize;
int start_block_num = start/getBlockSize();
int start_block_index = start % getBlockSize();
int end_block_num = (start+num)/getBlockSize();
int end_block_index = (start + num)/getBlockSize();
int buffer_blocks = 1 + (end_block_num - start_block_num); //I swear there's a good reason for this seperation
char* read_buffer = new char[buffer_blocks * getBlockSize()]();
int addrsPerBlock = getBlockSize()/4;
int b = 0;
for(int i = start_block_num; i <= end_block_num; i++)
{
if(i < NUM_DIRECT_BLOCKS)
{
char* block_buffer = readFromBlock(inod->direct[i]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
}
else if(i < indirect_max_size)
{
char* block_buffer = readFromBlock(indirect_block[i - NUM_DIRECT_BLOCKS]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
}
else
{
int* dindirect_block = (int*) readFromBlock(inod->doubleIndirect);
for(int i =0;i<getBlockSize()/4;i++)
{
if(!dindirect_block[i])continue;
int* indir_block = (int*) readFromBlock(dindirect_block[i]);
for(int j=0;j<getBlockSize()/4;j++)
{
if(!indir_block[j]) continue;
char* block_buffer = readFromBlock(indir_block[j]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
b++;
}
delete[] indir_block;
}
delete[] dindirect_block;
break;
}
b++;
}
//mutex to console to ensure contig. output
pthread_mutex_lock(&CONSOLE_OUT_LOCK);
cout << start % getBlockSize() << endl;
cout << (start + num) % getBlockSize() << endl;
int x = 0;
for(int i = start%getBlockSize(); i < (start%getBlockSize() + num); i++)
{
printf("%c", read_buffer[i]);
x++;
}
printf("\nPrinted %d characters\n",x);
pthread_mutex_unlock(&CONSOLE_OUT_LOCK);
if(inod->indirect)
delete[] indirect_block;
delete[] inod;
}
char* READ_with_return(const char* fileName, int start, int num)
{
int indirect_max_size = NUM_DIRECT_BLOCKS + getBlockSize()/sizeof(int); // # of blocks that can be refferenced by an indirect block
int double_indirect_max_size = indirect_max_size + (getBlockSize()/sizeof(int)) * (getBlockSize()/sizeof(int));
int ino = getInode(fileName);
if(ino == -1)
{
printf("File doesnt exist\n");
return NULL;
}
inode* inod = getInodeFromBlockNumber(ino);
int* indirect_block = (int*) readFromBlock(inod->indirect);
int* doubleIndirect = 0;
int fs = inod->fileSize;
int start_block_num = start/getBlockSize();
int start_block_index = start % getBlockSize();
int end_block_num = (start+num)/getBlockSize();
int end_block_index = (start + num)/getBlockSize();
int buffer_blocks = 1 + (end_block_num - start_block_num); //I swear there's a good reason for this seperation
char* read_buffer = new char[buffer_blocks * getBlockSize()]();
int addrsPerBlock = getBlockSize()/4;
int b = 0;
for(int i = start_block_num; i <= end_block_num; i++)
{
if(i < NUM_DIRECT_BLOCKS)
{
char* block_buffer = readFromBlock(inod->direct[i]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
}
else if(i < indirect_max_size)
{
char* block_buffer = readFromBlock(indirect_block[i - NUM_DIRECT_BLOCKS]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
}
else
{
int* dindirect_block = (int*) readFromBlock(inod->doubleIndirect);
for(int i =0;i<getBlockSize()/4;i++)
{
if(!dindirect_block[i])continue;
int* indir_block = (int*) readFromBlock(dindirect_block[i]);
for(int j=0;j<getBlockSize()/4;j++)
{
if(!indir_block[j]) continue;
char* block_buffer = readFromBlock(indir_block[j]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
b++;
}
delete[] indir_block;
}
delete[] dindirect_block;
break;
}
b++;
}
/*
//mutex to console to ensure contig. output
pthread_mutex_lock(&CONSOLE_OUT_LOCK);
cout << start % getBlockSize() << endl;
cout << (start + num) % getBlockSize() << endl;
int x = 0;
for(int i = start%getBlockSize(); i < (start%getBlockSize() + num); i++)
{
printf("%c", read_buffer[i]);
x++;
}
printf("\nPrinted %d characters\n",x);
pthread_mutex_unlock(&CONSOLE_OUT_LOCK);
*/
if(inod->indirect)
delete[] indirect_block;
delete[] inod;
return read_buffer;
}
void READ_file_redirect(const char* fileName, int start, int num)
{
int indirect_max_size = NUM_DIRECT_BLOCKS + getBlockSize()/sizeof(int); // # of blocks that can be refferenced by an indirect block
int double_indirect_max_size = indirect_max_size + (getBlockSize()/sizeof(int)) * (getBlockSize()/sizeof(int));
int ino = getInode(fileName);
if(ino == -1)
{
printf("File doesnt exist\n");
return;
}
inode* inod = getInodeFromBlockNumber(ino);
int* indirect_block = (int*) readFromBlock(inod->indirect);
int* doubleIndirect = 0;
int fs = inod->fileSize;
int start_block_num = start/getBlockSize();
int start_block_index = start % getBlockSize();
int end_block_num = (start+num)/getBlockSize();
int end_block_index = (start + num)/getBlockSize();
int buffer_blocks = 1 + (end_block_num - start_block_num); //I swear there's a good reason for this seperation
char* read_buffer = new char[buffer_blocks * getBlockSize()]();
int addrsPerBlock = getBlockSize()/4;
int b = 0;
for(int i = start_block_num; i <= end_block_num; i++)
{
if(i < NUM_DIRECT_BLOCKS)
{
char* block_buffer = readFromBlock(inod->direct[i]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
}
else if(i < indirect_max_size)
{
char* block_buffer = readFromBlock(indirect_block[i - NUM_DIRECT_BLOCKS]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
}
else
{
int* dindirect_block = (int*) readFromBlock(inod->doubleIndirect);
for(int i =0;i<getBlockSize()/4;i++)
{
if(!dindirect_block[i])continue;
int* indir_block = (int*) readFromBlock(dindirect_block[i]);
for(int j=0;j<getBlockSize()/4;j++)
{
if(!indir_block[j]) continue;
char* block_buffer = readFromBlock(indir_block[j]);
memcpy(read_buffer + (b*getBlockSize()), block_buffer, getBlockSize());
delete[] block_buffer;
b++;
}
delete[] indir_block;
}
delete[] dindirect_block;
break;
}
b++;
}
/*
//mutex to console to ensure contig. output
pthread_mutex_lock(&CONSOLE_OUT_LOCK);
cout << start % getBlockSize() << endl;
cout << (start + num) % getBlockSize() << endl;
int x = 0;
for(int i = start%getBlockSize(); i < (start%getBlockSize() + num); i++)
{
printf("%c", read_buffer[i]);
x++;
}
printf("\nPrinted %d characters\n",x);
pthread_mutex_unlock(&CONSOLE_OUT_LOCK);
*/
if(inod->indirect)
delete[] indirect_block;
delete[] inod;
}
/*
-- SPEC --
Closes the DISK file after the Disk Scheduler thread has finished servicing all pending requests, and exits the ssfs
process.
----------
Signals the system to shutdown - which will block injections into the request queue and allow the system to finish servicing pending requests
@return void
*/
void SHUTDOWN()
{
shut = 1;
}
/*
-- SPEC --
List all the names and sizes of the files in SSFS.
----------
Read each valid inode and print out its filename and filesize members
@return void
*/
void LIST()
{
pthread_mutex_lock(&CONSOLE_OUT_LOCK);
cout << "FILE CONTENTS " << endl;
for(int i = 0; i < MAX_INODES; i++)
{
if(INODE_MAP[i] == 0) continue;
inode* inod = getInodeFromBlockNumber(i+getInodesStart());
cout << "FILE:\t" << inod->fileName << "\t" << inod->fileSize << endl;
}
pthread_mutex_unlock(&CONSOLE_OUT_LOCK);
}
int thread = 0;
/*
Thread worker function to process text files and build appropriate requests for the disk scheduler thread (max 4 threads)
@param file_arg as text file containing valid commands to input to the fs
@return void*
*/
void*
process_ops(void* file_arg)
{
//string op_file_name = "thread1ops.txt";
char* op_file_name = (char*)file_arg;
cout << "Thread created:\t" << op_file_name << endl;
int threadNum = thread++;
/* Parsing */
ifstream input_stream(op_file_name);
string linebuff;
while(getline(input_stream, linebuff))
{
if(shut) break;
stringstream ss(linebuff);
string command;
ss >> command;
if(command == "#")
{
continue;
}
else if(command == "EXPORT")
{
string file1;
string file2;
ss >> file1;
ss >> file2;
EXPORT(file1.c_str(), file2.c_str());
}
else if(command == "CREATE")
{
string fileName;
ss >> fileName;
CREATE(fileName.c_str());
}
else if (command == "IMPORT")
{
string file1;
string file2;
ss >> file1;
ss >> file2;
IMPORT(file1.c_str(), file2.c_str());
}
else if (command == "CAT")
{
string file1;
ss >> file1;
CAT(file1.c_str());
}
else if (command == "DELETE")
{
string file1;
ss >> file1;
DELETE(file1.c_str());
}
else if (command == "WRITE")
{
string file1;
char c;
int start;
int num;
ss >> file1;
ss >> c;
ss >> start;
ss >> num;
WRITE(file1.c_str(), c, start, num);
}
else if (command == "READ")
{
string file1;
int start;
int num;
ss >> file1;
ss >> start;
ss >> num;
READ(file1.c_str(), start, num);
}
else if (command == "LIST")
{
LIST();
}
else if (command == "SHUTDOWN")
{
SHUTDOWN();
}
else if(command == "MV")
{
string file1;
string file2;
ss >> file1;
ss >> file2;
MV(file1.c_str(), file2.c_str());
}
else if(command == "CP")
{
string file1;
string file2;
ss >> file1;
ss >> file2;
CP(file1.c_str(), file2.c_str());
}
else
{
printf("Unrecognized thread operation, skipping to the next operation\n");
}
}
return NULL;
}
char* getFREE_MAP(){return FREE_MAP; }
char* getINODE_MAP(){return INODE_MAP; }
char* getSUPER(){return SUPER; }
int
getNumBlocks()
{
return ((int*) SUPER)[0];
}
int
getBlockSize()
{
return ((int*) SUPER)[1];
}
int
getFreeMapStart()
{
return ((int*) SUPER)[2];
}
int
getFreeMapSize()
{
return ((int*) SUPER)[3];
}
int
getInodeMapStart()
{
return ((int*) SUPER)[4];
}
int
getInodeMapSize()
{
return ((int*) SUPER)[5];
}
int
getInodesStart()
{
return ((int*) SUPER)[6];
}
int
getUserDataStart()
{
return ((int*) SUPER)[7];
}
/* AUXILIARY FUNCTIONS */
//Copies all metadata/data blocks to new locations effectively duplicating the file
//This does NOT just make a new inode that points to the same location
void CP(const char* fileName, const char* newFileName)
{
int block_size = getBlockSize();
int num_blocks = getNumBlocks();
int byteOffs = block_size + MAX_INODES*block_size + (num_blocks/block_size);
int max_file_size = block_size * (1 + NUM_DIRECT_BLOCKS + (block_size/sizeof(int)) + ((block_size*block_size)/(sizeof(int)*sizeof(int)))); //max number of blocks we can hold in a single file * num of bytes in a block
DELETE(newFileName);
CREATE(newFileName);
int orig_inode_block = getInode(fileName);
inode* orig = getInodeFromBlockNumber(orig_inode_block);
int inodeBlock = getInode(newFileName);
inode* inode = getInodeFromBlockNumber(inodeBlock);
inode->fileSize = orig->fileSize;
int filesize = inode->fileSize;