logo Use CA10RAM to get 10%* Discount.
Order Nowlogo
(5/5)

Your program must create a child thread per integer value in the input file.  Each child thread will send a request to the server with the integer value to encode using stream sockets

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

You must write two programs to implement a distributed version of the Elias-Gamma coding algorithm (https://en.wikipedia.org/wiki/Elias_gamma_coding). These programs are:

The client program:

The user will execute this program using the following syntax:

./exec_filename hostname port_no < input_filename

where exec_filename is the name of your executable file, hostname is the address where the server program is located, port_no is the port number used by the server program, and input_filename is the name of the file with the integer values to encode.

Your program must create a child thread per integer value in the input file.  Each child thread will send a request to the server with the integer value to encode using stream sockets. After the child threads receive the binary code and the Elias-Gamma code from the server, they will write the generated codes on a memory location available to the main thread. Finally, the main thread will print the information about the binary code and Elias-Gamma code for each number in the input file.

The child threads will execute the following tasks:

  1. Send the integer number to the server program using sockets.
  2. Wait for the generated codes (binary and Elias-Gamma) from the server program.
  3. Write the received information into a memory location accessible by the main thread.
  4. Finish its execution.

Input Format: Your program should read its input from stdin (C++ cin) and use input redirection.
 
The input file will have n+1 integer values, where the first value is the number of integer values in the file, and the next n values are the integer values that your program will read to generate the codes (binary and Elias-Gamma).

Example Input File:

7
1
10
13
2
5
4
8

The server program:

The user will execute this program using the following syntax:

./exec_filename port_no

where exec_filename is the name of your executable file, and port_no is the port number to create the socket.

This program receives requests from the child threads of the client program using sockets. It creates a child process per request. For this reason, the parent process needs to handle zombies processes implementing the fireman() call in the primer. Each child process will generate the binary code and the Elias-Gamma code of the requested input file, returning the results to the client program using sockets.

The server program will not print any information to STDOUT.

Example:

Given de previous input file the expected output for the client program is:   

Value: 1, Binary Code: 1, Elias-Gamma code: 1Value: 10, Binary Code: 1010, Elias-Gamma code: 0001010Value: 13, Binary Code: 1101, Elias-Gamma code: 0001101Value: 2, Binary Code: 10, Elias-Gamma code: 010Value: 5, Binary Code: 101, Elias-Gamma code: 00101Value: 4, Binary Code: 100, Elias-Gamma code: 00100Value: 8, Binary Code: 1000, Elias-Gamma code: 0001000

(5/5)
Attachments:

Expert's Answer

940 Times Downloaded

Related Questions

. Introgramming & Unix Fall 2018, CRN 44882, Oakland University Homework Assignment 6 - Using Arrays and Functions in C

DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma

. The standard path finding involves finding the (shortest) path from an origin to a destination, typically on a map. This is an

Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t

. Develop a program to emulate a purchase transaction at a retail store. This program will have two classes, a LineItem class and a Transaction class. The LineItem class will represent an individual

Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th

. SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

. Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

940 Times Downloaded

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Um e HaniScience

818 Answers

Hire Me
expert
Muhammad Ali HaiderFinance

720 Answers

Hire Me
expert
Husnain SaeedComputer science

716 Answers

Hire Me
expert
Atharva PatilComputer science

681 Answers

Hire Me

Get Free Quote!

307 Experts Online