I'm implementing a C file that should run similarly to the command ar in Unix.
Here is more spcifically what needs to be implemented. I just need a jump start to this problem. Thanks.
-q quickly append named files to archive
-x extract named files
-t print a concise table of contents of the archive
-v print a verbose table of contents of the archive
-d delete named files from archive
-A quickly append all “regular” files in the current directory (except the archive itself)
-w EC: for a given timeout, add all modified files to the archive. (except the archive itself)
The archive file maintained must use exactly the standard format defined in /usr/inc1ude/ar.h, and in fact maybe tested with archives created with the ar command. The options listed above are compatible with the options
having the same name in the ar command, except for the following exceptions. The -v and -t command take nofurther argument, and list all files in the archive. -v is short for -t -v on the ar command. The -A command in anew option not in the usual ar command.
Notes:
- For the -q command myar should create an archive file if it doesn’t exist, using permissions “666”. For the other commands myar reports an error if the archive does not exist, or is in the wrong format.
- You will have to use the system calls stat and utime to properly deal with extracting and restoring the proper timestamps. Since the archive format only allows one timestamp, store the mtime and use it to restore both the atime and mtime. Permissions should also be restored to the original value, subject to umask limitation.
- The -q and -A commands do not check to see if a file by the chosen name already exists. It simply appends the files to the end of the archive.
- The -x and -d commands operate on the first file matched in the archive, without checking for further matches.
- In the case of the -d option, you will have to build a new archive file to recover the space. Do this by unlinking the original file after it is opened, and creating a new archive with the original name.
- You are required to handle multiple file names as arguments.
- Since file I/O is expensive, do not make more than one pass through the archive file, an issue especially relevant to the multiple delete case.
- For the -w flag, the command will take as long as specified by the timeout argument. You should print out a status message upon adding a new file. This may result in many different copies of the same file in the archive.
- For extra credit, any time a file is added that already exists, remove the old copy from the archive, but ONLY if it is not the same. If identical, do not add the new file.
arprogram; it's freely available. – mah Oct 10 '12 at 16:26