I currently have an assignment to create a filesystem in Java. I am trying to implement it to be FAT-like. My concern is that I am not storing or reading each FCB efficiently. Each file has a FCB, which I currently have as:
___________________
| |
| size of file name |
|___________________|
| |
| file name |
|___________________|
| |
| # of data pointers|
|___________________|
| data pointer #1 |
|-------------------|
| bytes to read |
|-------------------|
| data pointer #2 |
|-------------------|
| bytes to read |
|-------------------|
| ... |
|-------------------|
| data pointer n |
|-------------------|
| bytes to read |
|___________________|
When I want to read the FCB, I do the following:
1. Get the first four bytes
2. Convert to int -> bytes in file name
3. Read that many bytes for file name
4. Read next four bytes
5. Convert to int -> number of pointers
6. Read 4 * number of pointers
6a. Read address from pointer #1
6b. Read number of bytes, starting from address
In the end, my filesystem will be stored as
___________________
| number of pointers|
|-------------------|
| FCB#1 |
|-------------------|
| ... |
|-------------------|
| FCB N |
|-------------------|
| Data |
| |
| |
|___________________|
I am concerned that my overhead is going to be too expensive when storing the FCBs. Is this how I am supposed to do it, though, for FAT, or am I totally misunderstanding it?