Create a console-based application that spawns two threads: a producer and a consumer. Use any programming language.

The producer should open an input file and repeatedly copy values to a circular buffer.

The consumer should open an output file and repeatedly copy values from the same circular buffer to the file.

For both the producer and consumer, a random number of bytes between 1 and n, inclusive, should be copied each iteration, where n is specified by the user. The number of bytes should be randomized each iteration.

If the producer is unable to write to the buffer (because it does not contain enough empty elements), or if the consumer is unable to read from the buffer (because it does not contain enough unread items), then it should proceed to the next iteration, choosing a new random number of bytes to copy. (Exception: Once the producer has already read the entire file, then the consumer does not have to continue generating random numbers until it gets an exact hit; instead, it should write the rest of the buffer to complete the copy.)

When the program completes, the output file should be an exact copy of the input file.

The syntax of the program should be as follows:

copyfile input output n m

where

  • copyfile is the name of your executable.
  • input is the name of the input file
  • output is the name of the output file
  • n is the maximum number of bytes to copy in any given iteration (described above)
  • m is the size of the circular buffer, in bytes
Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.