Solved-C Language Lab 4 -Solution

$30.00 $19.00

Overview Write spelling checker programs to work together via pipes and signals. Each unique word of input in an input le will be checked against a le of words (zipped dictionary le attached as part of this assignment) and printed with a message stating it is/is not spelled correctly. This is a 60 point program.…

You’ll get a: . zip file solution

 

 

Description

5/5 – (2 votes)

Overview

Write spelling checker programs to work together via pipes and signals. Each unique word of input in an input le will be checked against a le of words (zipped dictionary le attached as part of this assignment) and printed with a message stating it is/is not spelled correctly. This is a 60 point program.

Speci cs

You will write lex.c, compare.c, and spellCheck.c and compile them into lex.out, compare.out, and spellCheck.out. All communication will be via pipes for this assignment. Speci cally, you will use the pipe function multiple times to create pipes. Remember that pipes are one way communication channels. You will also be using the sort and uniq commands, making sure that the words input from a le are sorted in alphabetical order and each word appears once. Your programs will ignore case, that is, the words ’At’ and ’at’ will be the same word in your code. When you write your test le, include multiple words on each line, and include some words which start with an upper case letter and some that start with a lower case letter. All words beginning with either ’a’ or ’A’ will be output before all words beginning with either ’b’ or ’B’, etc.

Your program lex.out will take as a command line argument the name of a le. All words in that le will be written to stdout, one word per line. A word is de ned as a sequence of alphabetic characters. Note that this means every character which is not alphabetic is not part of a word, so each sequence of nonalphabetic characters will be skipped over. Any letter which is alphabetic will be output as is, no change in case is allowed.

The program compare.out will take two les of input. One le of input is stdin, which will be attached to the pipe used for output by uniq. The other le of input is the dictionary le which is part of this assignment. You will write compare.c so that each input le is read once, which is possible since both les are in alphabetical order. Only one word of each input le will be in your program’s memory at a time. Note that a word from uniq will be considered the same as a word from the dictionary le if they di er only in capitalization.

The program spellCheck.out is the controller program. You will run spellCheck.out with the name of a le as the rst command line argument. This le will be checked against the dictionary, whose name will be speci ed as the second command line argument. Each unique word in the input le will be checked against the dictionary, and each word will be printed with the message that it is/is not spelled correctly. This output will be sent to stdout. The way spellCheck works is this: it will use fork, exec, wait, and create pipes so that the input le will be processed by lex.out, the output of lex.out will be processed by sort, to do an

1

alphabetic sort ignoring capitalization, the output of sort will be input to uniq to remove duplicate words again ignoring capitalization. The output of uniq and the the dictionary le will both be input into compare.out, which will determine if the words from uniq are in the dictionary le.

The program spellCheck.out will work in the following way:

spellCheck.out will track each child process it creates, that is, it will store the result of each call to fork()

spellCheck.out will enter a loop which will end after all the child processes have ter-minated

spellCheck.out will call waitpid() in a signal handler for the signal SIGCHLD. This call to waitpid() will not block. The signal handler will print a message stating which child process terminated (both by id and by name, such as lex.out) to the le \spellCheck.log” which spellCheck.out will create.

Notes

You will need to write spellCheck.c to fork child processes to exec lex.out, compare.out, sort, and uniq. Do not attempt to write all of spellCheck.c at one time because if there is a problem with your communication paths, you may not be able to discover which path is at fault. I highly suggest that you write spellCheck.c to communicate only with lex.out. Once that is done, save the working copy of spellCheck.c in some other le (spellCheckLex.c for example) and then modify spellCheck.c to communicate with sort. Continue this process until the entire program is complete.

Create a directory for this lab and place the C les (spellCheck.c, lex.c, and compare.c) and your input data le into this directory (do not include the dictionary). Have only these 4 les in the directory. Then issue the command

tar cvf lab4.tar *

This will create the le lab4.tar, and its contents are the archived c les and data le. Submit lab4.tar via Blackboard. Be sure to test that the les are properly tar’ed before submitting them. You can do this by copying (cp) your tar le to another directory and issuing the command

tar xvf lab4.tar

When writing this program be very sure that each of your programs behaves correctly. I have discovered that if lex.out does not close its les (including pipes) and then terminates normally that the entire system of programs will fail. This is true for each of your programs. Be sure to close all les and pipes when their use is completed, and terminate each program normally.

The number one occurring error in logic in this type of program is not testing for words with di erent cases of letters. The letter ’Z’ has a smaller ASCII and UNICODE value

2

than the letter ’a’, and a simple string comparison will give the wrong results. Note that lex is not allowed to change case of letters in words, neither is compare. The words will be output exactly as input (except that if two input words di ered in case, only one of them will be output). Note that the sort and uniq programs in linux have arguments which let them ignore case for the purposes of their comparisons.

When calling exec to run sort and uniq, call a version of exec which allows the program name instead of a complete path name to sort or uniq. This means that sort and uniq will be discovered using the PATH environment variable. I am quite likely to have sort and/or uniq in a directory on my machine which is di erent from the path you enter in the exec command.

Deliverables

Your source code les and input data le (4 les total, tar’ed into one submitted le) must be submitted via Blackboard in the le lab4.tar no later than 11:59:59 p.m. Friday May 10.

3