BEST代写-线上编程学术专家

Best代写-最专业靠谱代写IT | CS | 留学生作业 | 编程代写Java | Python |C/C++ | PHP | Matlab | Assignment Project Homework代写

C语言代写 | OS代写 | 300698 Operating Systems Programming

C语言代写 | OS代写 | 300698 Operating Systems Programming

1 Introduction
Practical Case Study E Operating Systems Programming – 300698
In this workshop you will be implementing a file system simulator, loosely based on historic file systems. The file system will be have the following properties:
• it is a single level directory system.
• the directory entry has the following format:
struct entry {
char user;
char name[9];
char extension[4]; short blockcount; short block[8];
};
With the name and extension fields being C strings. This structure is 32 bytes in size.
• The disk size is 320 kbyte. (This is roughly a 5 1 ′′ inch disk.)
4
• The smallest unit of allocation is 4 kbyte.
• The main directory occupies the first block of the disk (block 0), and its size is fixed at 1 block, so there can
only be 128 files in this file system.
• As the directory always occupies only the first block, therefore no control information about it needs to be
stored in the directory (i.e. no . entry).
• the only user is user 1
• user −1 is not a valid user, and could be used to mark free directory entries.
• alongside the directory you also need a bitmap that is capable of representing all of the blocks available on the disk, this can be a free space bitmap or an allocation bitmap, this is your choice. This structure is not stored on the disk but would be computed by the operating system when the disk was inserted.
You are not supposed to implement the actual storage, only the control structures of the file system. When implementing the free bitmap you must use a bitmap, i.e. it should be an array, but each element of the array should represent several blocks.
1

2 Programming Tasks
When your program starts, it will assume that the disk is unformatted, you should provide a menu that imple- ments the following options:
Initialise Disk initialise disk control structures, setting the first block of the disk to used in the bitmap, and marking all directory entries as being available.
ListFilesintheDirectory Listthenames,extensionsandblockcountsofallthevalidfilesinthedirectory. DisplaytheFreeBitmap printthevalueofeachofthebitsinthebitmap.Thisneednotbepretty,justalonglist
of 1’s and 0’s is sufficient
Open/CreateFile scansthedirectoryandifthenameprovideddoesn’texistthenaddsthatfiletothedirectory. This file will be used in all subsequent operations until a new file is opened or it is deleted.
Read File list the blocks occupied by the currently open file (not the content of these blocks as you don’t store this information)
Write File allocate another block to the currently open file. You should not preallocate blocks for the file, you should allocate the first available block, by scanning the bitmap for the first block that is available. Each write shall add another block to the file until there are no more slots to allocate blocks to, or the disk runs out of blocks. (There are only 8 slots available for each file.)
DeleteFile deallocateallblocksforthecurrentfileinthebitmap,andmarksasfreethedirectoryentryforthat file
You need to pay close attention to multiple boundary conditions, which exist in this file system, including the total size of the disk, maximum size of a file, maximum number of files etc.
2

3 File: fs.h
#ifndef FS_H
#define FS_H
/* Prevent multiple inclusion */
/* fs.h
* Various definitions for OSP Practical Case Study E
*/
/* The bitmap */
extern unsigned char bitmap[8];
/* 320Kb disk with 4Kb blocks-> 8 bytes for bitmap
*/
/* The directory entry */
struct entry {
char user;
char name[9];
char extension[4]; short blockcount; short block[8];
};
/* The Directory */
extern struct entry directory[128];
/* extern means its defined in another
file, prevents multiple definition
errors
*/
int toggle_bit(int block);
/* Toggles the value of the bit ’block’, in
the external array ’bitmap’.
returns the current value of the bit
Does NOT validate ’block’!!!
*/
int block_status(int block);
/* Returns the status of ’block’,
in the external array bitmap
returns 0 if bitmap bit is 0,
not 0 if bitmap bit is 1
Does NOT validate block!!!
*/
#endif
3

4 File: fs.c
/* fs.c
Some useful functions for OSP Practical Case Study E
*/
#include”fs.h”
unsigned char bitmap[12];
struct entry directory[128]; int toggle_bit(int block)
{
}
int elem=block/8; int pos=block%8; int mask=1<<pos;
bitmap[elem]ˆ=mask; return bitmap[elem]&mask;
int block_status(int block) {
}
int elem=block/8; int pos=block%8; int mask=1<<pos;
return bitmap[elem]&mask;
5 File: main.c
#include<stdio.h>
/* stdio.h will be found in the system path */ #include”fs.h”
/* fs.h will be found in the local path */
int main(int ac, char**av) {
}
printf(“Please make me useful\n”); return 0;
4

6 File: makefile all: caseE
caseE: main.o fs.o
$(CC) -o $@ $ˆ
5

bestdaixie

评论已关闭。