Sale!

CSE 461 Lab 5 solved

Original price was: $35.00.Current price is: $30.00.

Download Details:

  • Name: Lab-5-orvnc4.zip
  • Type: zip
  • Size: 8.54 KB

Category:

Description

5/5 - (6 votes)

This laboratory is designed to complete the second part of the project.

Here is the interface for the filesystem :
Class Filesys: public Sdisk
{
Public :
Filesys(string filename);
int fsclose();
int fssynch();
int newfile(string file);
int rmfile(string file);
int getfirstblock(string file);
int addblock(string file, string block);
int delblock(string file, int blocknumber);
int readblock(string file, int blocknumber, string& buffer);
int writeblock(string file, int blocknumber, string buffer);
int nextblock(string file, int blocknumber);
Private :
int rootsize; // maximum number of entries in ROOT
int fatsize; // number of blocks occupied by FAT
vector filename; // filenames in ROOT
vector firstblock; // firstblocks in ROOT
vector fat; // FAT
};
Make sure you have everything from Laboratory 3 and Laboratory 4 working.
First work on checkblock which checks if a block belongs to a file. Add the function to the private area of the interface.
Work on readblock, writeblock, and nextblock. Note that these functions should have very little code if using checkblock.
Now work on delblock. You can test your software with the test main program here.