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

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

C语言代写 | implement a simulated file system

C语言代写 | implement a simulated file system

这个任务是用C语言实现文件模拟系统

Introduction

Your task in this assignment is to implement a simulated file system. The simulated file system (simfs) is stored in a single Unix file. There is only one directory in this file system, and there are limits on the number of files (MAXFILES) it can store and the amount of space (MAXBLOCKS) it can occupy. The key file system structures are already defined; your job is to add functions: the ability to create a file, delete a file, write to a file, and read from a file.

A fentry contains:

  • file name: An array to store a name of maximum length 11.
  • size: An unsigned short integer giving the size of the actual file. Note that a file might not use all of the space in the blocks allocated to it.
  • firstblock: An index into the array of fnodes. The specified fnode knows where the first block of data in the file is stored and how to get information about the next (second) block of data.

An fnode contains:

  • blockindex: The index of the data block storing the file data associated with this fnode. The magnitude of the index is always the index of the fnode in its array; it’s negative if the data block is not in use.
  • nextblock: An index into the array of fnodes. The specified fnode contains info about the next block of data in the file. This value is -1 if there is no next block in the file.

There are a fixed number of fentries and a fixed number of fnodes, so it’s possible to calculate how much space they will take. The array of fentries is stored at the very beginning of the file, followed immediately after by the array of fnodes. The number of blocks required to store the fentries and fnodes depends on how many of them there are (MAXFILES and MAXBLOCKS). See simfstypes.h for the definitions of these constants as well as for the structs defined in the previous bullets.

For example, suppose the maximum number of files is 4 and the maximum number of fnodes is 6. The block size is set to 128. The fentry and fnode arrays take 88 bytes ((16*4) + (4 * 6) = 88), so they can fit in a single block. As a result, the first fnode is in use (block 0 contains metadata), and file data begins in the second block (index 1). The real file containing the simulated file system would be arranged as shown in the following diagram. Please note that the boxes are not scaled according to the number of bytes they occupy.

 

Note that it’s a good idea to set the maximum number of files and blocks so that they fit in exactly N blocks (where N is an integer), to avoid wasting space. However, like the example above, you may not assume this is the case; there may be wasted bytes between them and the start of the file data.

Also note that file data blocks for a particular file will not necessarily be next to each other, though the example above does have them together. It is possible for a file to be in blocks 1 and 3, for example, with another file at block 2.

Starter Code

In your repository, you will find several files containing starter code. You may not modify the structs defined in simfstypes.h Edit Feb 5: (and should not make any changes to it that you commit), and you should not change the Makefile, but you may modify any other code. You may find that you want to refactor some of the provided code to pull out common code snippets into helper functions.

The following subsections describe the contents of the provided files.

Makefile

The file for building the program. The makefile is structured so that only the files that are changed need to be recompiled. Please do not modify this file; your code should compile with the flags specified.

simfstypes.h

Contains the type definitions for the metadata structures that locate files in the file system and defines file system parameters, such as MAXFILES.

You will probably want to change the constants to smaller values when you are developing your program. It will make it easier to see the results. Later, you may want to increase the values in order to test more complex operations. However, none of your changes will affect our testing; we will replace this file with our own when we test. Edit Feb 5: As a result, you should commit no changes to this file; your code should work with the original version.

simfs.h

Contains function prototypes that are shared among the files. You are welcome to add more prototypes as you add or refactor code.

simfs.c

The main program. The main function parses the arguments, and calls the functions for the appropriate commands. You will need to modify the switch statement as you add new commands.

initfs.c

Contains the initfs function that initializes the the file system structure in the file specified by the filename argument to initfs. Warning: If the file already exists, then initfs will overwrite it.

Start by creating a filesystem using initfs. Then, examine that file system file with both xxd and printfs. Try varying the MAXFILE and MAXBLOCK values to see how that affects what is written.

printfs.c

The printfs function prints the contents of the file that stores the simulated filesystem in a readable form. This is a convenience function. You could use xxd to read the binary data, but it’s more convenient to have a command to print the metadata in a human readable format.

simfs_ops.c

You’ll do the majority of your work here. The file already contains two helper functions that open a file system. You should add other helper functions and functions for the four required file system operations here.

Your Task

You will write functions to implement the operations below. These operations should work for any positive, valid values of BLOCKSIZE, MAXFILES, or MAXBLOCKS. (Valid values will not cause the short values in the structs to overflow.)

Creating a file (createfile)

The createfile command takes a single argument: a simulated file name. It will create an empty file of that name on the file system if it is possible to do so, using the first available fentry. If there are not enough resources on the file system, an error should be emitted.

Deleting a file (deletefile)

The deletefile command also takes a single argument: a simulated file name. It should remove the file from the file system, including freeing any blocks used to store the file. To avoid malicious use of old data, your operation should overwrite the file data with zeroes.

Reading a file (readfile)

The readfile command takes 3 arguments:

  • file name: The name of the simulated file to read from.
  • start: The offset into the file to start reading.
  • length: The length of the chunk of data to read.

When this command is received, the file system will print the requested data to stdout. If any part of the request cannot be completed, an error should be emitted to stderr: if the start position is larger than size of the file, for example. (In the case of an error, we don’t care what, if anything, is emitted to stdout.)

Writing a file (writefile)

The writefile command takes 3 arguments:

  • file name: The name of the simulated file to write to
  • start: The offset into the file to start writing at.
  • length: The length of the chunk of data to write.

When this command is received, the file system will write the requested data from stdin. Like the read operation, if any part of this request cannot be completed, an error should be emitted. For example, if the start position is larger than the current size of the file, an error should be emitted, since we don’t know what to write in the intervening bytes. Also, if the file system doesn’t have enough free blocks available for the write, then an error should be emitted.

In any error case, it is imperative that no changes be made to the filesystem. The file system cannot be left in an inconsistent state; the whole operation must be completed, or none of it.

Whenever a new data block is allocated, initialize it to zeros (the binary value, not the ASCII character). This will help with debugging.

 

bestdaixie

评论已关闭。