Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help, This assignment is meant to give students practice working on projects that contain multiple source code files. It will require the students to

Please help, This assignment is meant to give students practice working on projects that contain multiple source code files. It will require the students to construct a Makefile and appropriate header files. It will also require the use of getopt to handle command line options, and manipulation of data read in from a file.

The following functions will be of use to you (and read and write are mandatory).

  • read (section 2)
  • write (section 2)
  • getopt (section 3)

Description

For this assignment, you will take the cat program you wrote for the last assignment and upgrade it to add more features. We will call it dog instead of cat, because canines are better than felines. These new features

will include:

  • The ability to specify a command line option (s x) to change the size of the buffer used for calls to read and write to be x bytes.
  • The ability to specify a command line option (n x) to change the number of bytes read from each file to x. (Instead of reading the whole file as we would have without this option.)
  • The ability to specify a command line option (c x) to have the program apply a Caesar cipher with a shift of x to alphabetical characters in the data read before writing its results.
  • The ability to specify a command line option (r x) to have the program apply a rotation of x to each byte read from the file before sending the data to be output.
  • The ability to specify a command line option (x) to output the data in the file as hexadecimal.
  • The ability to specify a command line option (b) to output in binary notation, most significant bit first.

Requirements

  • The main loop should be in your main function in one source code file. The functions that process the data (binary/hex/Caesar cipher/rotation) should be found in another file. Their declarations will need to be in a header file, so that they can be called from main even though they will be implemented in that other file.
  • You must make a Makefile that has rules sufficient to compile your program when a user types make in the same directory as your source code. Only files that have changed or that have had their dependencies change should be recompiled.
  • You must use the system calls read for the input from the files and write for the output. You may use cerr and perror to display error messages, but cout is disallowed, as are printf and fprintf, for the output data.
  • Obviously, your source code must be well documented. If it is not, there will be a large point penalty. This requirement holds for all coding assignments in this course, whether this line is in the description of the assignment or not.
  • The features enabled by the command line options listed in the description section above must be implemented.
    • Note: If both r and c are specified, the behavior can change depending on which is executed first. Dont allow a user to specify both. Give them an error message and exit if they try. Also: Binary and hexadecimal notation flags are mutually exclusive, as it would not be possible to represent the data as both simultaneously. If both binary and hexadecimal modes are specified, it is an error. Print a warning and quit.
    • The other command line parameters can all be on at the same time without any problem. Make sure that they work together.
  • If no command line options are specified, this program should behave the same as cat would have, as was specified in the previous program.

Caesarcipher

A Caesar cipher is a very primitive method of encrypting text data. It involves taking the letters of the input and shifting them upwards alphabetically by some number of letters. This number is given as the option parameter in the command line option that turns on the Caesar shift. If that parameter was not an integer, do not perform any shift. Only letters (uppercase and lowercase) should have any shift applied at all. Leave any other characters untouched. You should assume the files are using the ASCII encoding for this purpose.

(man 7 ascii).

Binaryrotation

While the Caesar cipher above was interpreting the bytes that you read as text, changing only alphabetical characters, this option should apply to any value, alphabetical or not. The principle is the same, but instead of applying it to AZ and az, it is applied to each one-byte value interpreted as 0255.

Hexadecimalrepresentation

All numbers are stored as collections of binary bits on the computer. A char is one byte long, which is 8 bits. When dealing with files that are not meant to be read by a human (binary mode as opposed to text mode), it can be convenient to encode the data in a format called hexadecimal.

Hexadecimal, the base-16 number system, is useful because it is based on a power of 2 (24 = 16), and so each hexadecimal digit represents 4 bits. Numbers represented as decimal (base-10) do not line up in the same

way, so it can be hard to know which bits are on and which are off.

Each byte is 8 bits, and can be represented as 2 hex digits. Your program should be able to output the data in this format (2 hex digits per input byte) whenever the x command line parameter is enabled. Keep in mind that there will be two characters of output for every character of input in this mode.

Since you are not allowed to use cout for the output, you wont be able to use the hex IO manipulator to accomplish this. Likewise, functions from the printf family using a format of %x are not permitted either.

Hint: You can use the bitwise operators in C++ (&, |) to isolate the high order 4 bits from the low order 4 bits in a byte, and the bitshift operators (>>, <<) can make the high order ones easier to deal with.

Binaryrepresentation

= 1287 +646 +325 +164 +83 +42 +21 +10

Every byte is made up of 8 bits, 0 to 7 . When interpreting them as an unsigned number, each bit, answers the question of whether 2is part of the number represented. When you output the data in binary format, you will output a 1 if the bit is true, or a 0 if the bit is false, for all 8 bits, starting from the most significant one (7 , which represents 128). Notice that the output data will be eight times longer than the input data. Someexamplesofoutput

% cat file1

Hello World

% ./dog file1

Hello World

% ./dog n 5 file1

Hello

% ./dog n 5 c 1 file1

Ifmmp

% ./dog n 5 x file1

65486c6c6f

% ./dog n 5 b file1

0110010101001000011011000110110001101111

What to turn in?

  • The C++ source file containing your main function.
  • The C++ source file containing the functions implementing the new features added.
  • A Makefile set up as shown in class. The rules should be set up so that only the files that have changed need to be recompiled.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Summarize some human resource management training initiatives.

Answered: 1 week ago

Question

Summarize the training and development process.

Answered: 1 week ago

Question

Explain the concept of careers and career paths.

Answered: 1 week ago