CSE333  Assignment#3 Solved     

35.00 $

Category:

Description

5/5 - (1 vote)

In this assignment, you will  write a program that uses threads and synchronization to read from a file, modify its contents and write to the same file.  You will implement a program with four types of threads, structured like:

  • The Read Thread will read from a file line by line and store every line in and array.
  • The Upper Thread will read from the array, convert the string to uppercase letters and write back to the same index of the array.
  • The Replace Thread will read from the array, replace all spaces with underscore character and write back to the same index of the array.
  • The Write Thread will read from the array and store it to the text file, each line in the corrent place.

Program Details

  • The user will execute the program specifying the number of threads to be created of each kind.

You will then create the specified number of threads of each type.

  • The Read Threads will read from the file. However, they first should be assigned to which line of the file they should read. Each Read Thread has to aquire a unique line number. Note that you have to make sure no two Read Threads read the same line from the file. After they read their assigned line, they have to store the line they read into an array (or any other data structure you chose). If a Read Thread reads 0th line of the text file, it has to store it in 0th index of the array.
  • After there is at least one entry in the array, the Upper Threads will read the array indices one by one and change the content to uppercase. Note that all Upper Threads have to read a different array index. Note also that Upper Threads should work concurrently with Replace Threads.
  • After there is at least one entry in the array, the Replace Threads will read the array indices one by one and substitute all of the spaces with underscore characters. Note that all Replace Threads have to read a different array index. Note also that Replace Threads should work concurrently with Upper Threads, which means that a line can be modified first by a Replace Thread and then an Upper Thread or first by an Upper Thread and then a Replace Thread. However, no multiple modifications can be done at the same time. You have to make sure if one of Upper or Replace Threads is working on an index, the other one should not be able to.
  • After both of the modifications are done with at least one array index, the Writer Threads will update the file’s appropriate line with the array’s corresponding entry. Note that there could be only one Writer Thread that can write to the file. Note also that you have to make sure no same writer thread updates the same line of the file.
  • The main thread is responsible for creating all of the threads and waiting for them. Note that, all of the threads has to exist in the system at the same time, and you have to work on synchronizing them.
  • All the threads have to print information about their job on the screen (see the example execution below).
  • Note that there is global queue requested and the queue can be accessed by many threads of different types so a synchronization is necessary for the queue. This can be achieved by using the semophores.
  • The global queue has to be created at the very first time a thread needs to use it by that thread.
  • Preserving consistency and preventing deadlocks are major issues to be considered.
  • When a thread is done with its job, it has to check if there are more jobs to do. (e.g.: When a Replace Thread is done with one line, it has to check the array once more to see if there are more indices that are not modified by a Replace Thread yet.)
  • Multiple simultaneous  operations  on  different parts of the queue should be allowed in your solution.
  • Your program will be executed as follows:

o Example:

./project3.out -d deneme.txt -n 15 5 8 6 o The -d option represents the name of the file you will read from(a simple text file), -n option represents the numbers of threads to be created of each type (Read, Upper, Replace, Write, respectively).

  • Your program should produce output. o Example:

<Thread-type and ID>                        <Output>

Read_1 Read_1 read the line 1 which is “This is an example line.”
Read_2 Read_2 read the line 2 which is “This is another line.”
Upper_2 Upper_2 read index 2 and converted “This is another line.” to

“THIS IS ANOTHER LINE.”

Replace_2 Replace_2 read index 1 and converted “This is an example line.” to

“This_is_an_example_line.”

Upper_1 Upper_1 read index 1 and converted “This_is_an_example_line.” to

“THIS_IS_AN_EXAMPLE_LINE.”

Replace_1 Replace_1 read index 2 and converted “THIS IS ANOTHER LINE.” to “THIS_IS_ANOTHER_LINE.”
Writer_1 Writer_1 write line 1 back which is

“THIS_IS_AN_EXAMPLE_LINE.”

Writer_3 Writer_3 write line 2 back which is  “THIS_IS_ANOTHER_LINE.”

…..      … ….. ….

  • Project-3-3rg24q.zip