OBJECTIVES

To develop a C program that uses both fork() and pipe() process system calls to implement a full duplex communication between two processes.

PROBLEM

You are to use the Ubuntu operating system to create two C programs. Program consumerProducer.c and program producerConsumer.c. These two programs will implement full duplex communication.

The producerConsumer program will

1) create a text file with the name editSource.txt and will write all sentences of the created file on one pipe to be read by the consumerProducer program.

The consumerProducer program will

1) read from the pipe and it will
2) count the number of characters,
3) the number of words, and
4) the number of lines in the received sentences. It will then
5) create a file named theCount.txt,
6) write the produced output to theCount.txt, and will
7) write the contents of the file theCount.txt on a second pipe to be read the producerConsumer process.

The producerConsumer process will display the received file on standard output.

The contents of the editSource.txt file is as follows:

Source code
represents the part of
process that
contains the programming
language itself. You may
use a text editor to
write your source code file.

You may use the fork(), pipe(), dup(), dup2(), read(), write(), creat(), as well as any of the exec() family of system calls.

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.