Create multiple process ipc setup depending parameters

Assignment Help Computer Engineering
Reference no: EM13997742

Project: Word-Count With Fork and Pipes

Important Reminder: As per the course Academic Honesty Statement, cheating of any kind will minimally result in receiving an F letter grade for the entire course.

Aims of This Project - The aims of this project are as follows:

To get familiarity with creating processes under Unix.

To implement interprocess communication using anonymous pipes.

To gain experience with creating a multiple process IPC setup depending on dynamic parameters.

Project Specification

Write a program to output the N most frequently occurring words from one or more input files. Specifically, submit a prj2.tar.gz archive such that unpacking that archive into a directory and typing make within that directory builds a word-count executable which when invoked as:

$ ./word-count N STOP_WORDS FILE1...

outputs on standard output the N most frequently occurring words in one-or-more files FILE1... which are not in the file STOP_WORDS.

A word is a maximal sequence of characters for which the standard C library function isalnum() returns non-zero or is a single quote ' (apostrophe '\''). So is'nt will be treated as a single word.

Words which differ merely in case are regarded as identical.

The output should consist of N lines with each line containing a lower-cased word followed by a single space character followed by the count of that word across all files FILE1.... The lines should be sorted in non-increasing order by count; ties where words have the same count should be broken with the lexicographically greater word preceeding the lexicographically smaller word.

The program should handle files which do not necessarily end with newline.

If the arguments to word-count are in error, then the program should print a suitable error message on standard error and terminate.

The program should also detect any runtime errors (like memory allocation errors, I/O errors, process errors) and terminate after outputting a suitable error message on standard error.

The program must meet the following implementation restrictions:

The program may not directly or indirectly use any languages other than C.

The process started at program invocation must create a separate child processes for handling each of the files FILE1, FILE2, ..., FILEM. Child process i should return a count of the distinct words in FILEi to the parent process using anonymous pipes. The child processes should be allowed to execute concurrently, at least partially.

The parent process must combine the individual results from each file to produce the top N most frequently occurring words across all of FILE1, FILE2, ..., FILEM.

The program should not terminate until all child processes have terminated. This should be the case even if a child process fails with a runtime error.

The program may assume that all distinct words in all of FILE1... and their counts can fit within memory.

There should not be any implementation restrictions on the size of entities except those defined by available resources. Hence there should not be any restriction on the size of a word or a line.

Provided Files
The ./files directory contains the following: Makefile
This file assumes that the project is contained entirely within a main.c main program. It provides
the following targets:

word-count
This will build the word-count program.

clean
This will clean out all generated files.

submit
This will build the required prj2.tar.gz archive.
Typing simply make will build the word-count program, typing make clean will remove all generated files and typing make submit will create a prj2.tar.gz compressed archive which can be submitted.

You will probably use multiple source files for your project; please edit the Makefile accordingly. When editing, watch out for tabs (the first character of any command-line must be a tab character).

README
A template README; replace the XXX with your name, B-number and email. You may add any other information you believe is relevant to your project submission.

main.c
A driver with a dummy main() function to be filled-in by you.

Hints
You may choose to follow the following hints (they are not by any means required).

Before getting started, it is probably a good idea to review the fork(), wait() and pipe() systems calls as well as I/O redirection. Also decide on how you will dynamically create and track the necessary M pipes.

1. Use your solution to prj2 or the provided solution to create a function which given a data-structure containing the stop-words and the name of a data file outputs a word-count of the words in the data file on standard output.

2. Write a driver program in main.c. Make sure it prints appropriate error messages if given incorrect arguments.

3. When given a single data file, invoke the function from (1) on that data file.

4. When given multiple data files FILE1, ..., FILEM, invoke the function from (1) on each data file using a separate process. The output from the multiple child processes will be interspersed.

5. Ensure that the invoking process does not terminate until all parent processes have terminated.

6. Set up a single pipe per child process to send its results back to the parent rather than to standard output. Have the parent process simply copy the data from each child pipe's to standard output.

7. Change the parent to only output up to the top N words across all M data files.

8. Test and review your code until it meets all requirements.

Reference no: EM13997742

Questions Cloud

What angular frequency does the loop rotate : A single conducting loop with an area of 2.0 m2 rotates in a uniform magnetic field so that the induced emf has a sinusoidal time dependence as shown.With what angular frequency does the loop rotate?
Use the dot product determine v and w are orthogonal : Use the dot product to determine whether v and w are orthogonal. Find projwv. Then decompose v into two vectors, v1 and v2, where v1 is parallel to w and v2 is orthogonal to w
What is the uncertainty in the time constant found : An apparatus similar to the one used in RC Circuits experiment is used. What is the time constant? What is the uncertainty in the time constant found above?
What distance is the second minima located from the center : A single slit is illuminated with light of wavelength 632.8 nm. The width of the slit is 79.5micrometers and the light is reflecting off a screen 1.90m behind the slit. At what distance is the first maxima located from the center of the pattern?
Create multiple process ipc setup depending parameters : Get familiarity with creating processes under Unix - implement interprocess communication using anonymous pipes and gain experience with creating a multiple process IPC setup depending on dynamic parameters.
What is the distance from the central maximum : What is the distance from the central maximum to the sixth order diffraction minimum? What is the distance from the central maximum to the fifth order interference maximum?
Which of the following does an organization chart do : A group of employees in American Game Technology Inc., a manufacturer of gaming machines, got together to arrange a paper recycling drive in the office. Though they came from different departments, they shared a common belief in environmentalism, ..
Why is pfizer interested in improving diversity : Why is Pfizer interested in improving diversity and inclusion at the company? How does a proactive focus on diversity and inclusion improve Pfizer's legal compliance
What is the ruling density of the diffraction grating : An apparatus similar to the one used in diffraction grating experiment is used. What is the slit spacing of this diffraction grating? What is the ruling density of this diffraction grating?

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd