Get Instant Help From 5000+ Experts For
question

Writing: Get your essay and assignment written from scratch by PhD expert

Rewriting: Paraphrase or rewrite your friend's essay with similar meaning at reduced cost

Editing:Proofread your work by experts and improve grade at Lowest cost

And Improve Your Grades
myassignmenthelp.com
loader
Phone no. Missing!

Enter phone no. to receive critical updates and urgent messages !

Attach file

Error goes here

Files Missing!

Please upload all relevant files for quick & complete assistance.

Guaranteed Higher Grade!
Free Quote
wave
Implementing a Simple Version of Tar - Assignment

Task

In this assignment. you are asked to implement a simple version of 'tar'. The program (call it mytar) can either create an archive file from a list of files or extract the files from a given archive file. The program takes the follow arguments: 


mytar {-t | -c | -x | -u} -f [list_of_files]

 
-t List the contents of the archive file to stdout

-c Create a new archive containing the list of one or more files

-x Extract the files from the archive

-u Add one or more new files to an existing archive 

All four options above requires the name of the archive file be provided using the -f option. 

Only the -c and -u options require the user to provide the list of file names (there could be one or more files). The list is ignored for the other options. You can assume that the files in the list must be from the current directory. 

The -t option lists the files stored in the archive (including the name and the size of each file). The list of the files should be sorted. 

The -x option extracts files from the archive and place them in the current directory. 

1. You should use the getopt() function to process the command-line arguments. (You learned how to use this function in interactive activity 6.)

2. The archive file is a binary file with the following format:

• The first four bytes contain an integer which is the number of files contained by the archive.

• The next 480 bytes contain a directory. It's an array of 20 elements, each being the following data structure: 

struct directory_entry_t {

char name(20]; /• file name as a null-terminated string •/

int size; /• the size of the file in bytes •/

int offset; /• the location (offset from the start of the archive file in bytes) of the file placed in the archive •/

}
This means the archive must not contain more than 20 files. And each file's name must not exceed 19 characters (an a null character). 


• Starting from byte 484 will be the content of the files listed one after another (with their starting offsets registered in the corresponding directory entry).

3. The -c option creates a new archive, meaning that you need to format the archive file accordingly (putting the number of files, creating the directory, and placing the content of the files). The -u option, however, only needs to add additional files (updating the directory, and appending the content of the new files at the end of the archive). The -t option lists the content of the archive. You should print both the name and the size (in bytes) of each file. Also, you need to sort the files according to their names. The -x option extract all the files stored in the archive. You need to create a new file of the given name, and copy the content from the archive.

4. Your code should be able to handle normal error conditions:

A. Either -c, -t, -x, or -u option should be provided. And only one of them is provided.

B. The -f option must be provided.

C. The list of file names (to be archived) cannot be longer than 19.

D. For -c and -u options, one must provide one or more file names.

E. The -u option requires an existing archive.

F. The files to be archived must exist in the current directory (as regular files, not directories). They can be read.

G. The total number of archived files must not exceed 20.

H. The same file cannot be archived twice.

I. The -x option extracts the files by writing them to the current directory. One cannot overwrite an existing file already in the directory (for safety reason). 

support
Whatsapp
callback
sales
sales chat
Whatsapp
callback
sales chat
close