Assignment 1 Solution

$30.00 $24.00

mygrep Implementation – 30 Marks Implement mygrep which takes two arguments, a string and a path ( le or directory). my-grep should search recursively for the given string in all regular les present in the directory sub-tree. It should output matching lines with full le path. You will submit a single C source le with…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)
  • mygrep Implementation – 30 Marks

Implement mygrep which takes two arguments, a string and a path ( le or directory). my-grep should search recursively for the given string in all regular les present in the directory sub-tree. It should output matching lines with full le path. You will submit a single C source le with implementation of mygrep.

The implementation of mygrep, when executed as ./mygrep Kanpur IITK should return output as mentioned under output format for the directory structure given in Fig-ure 1. Here Kanpur and IITK are the string and path arguments, respectively.

The directory structure mentioned in Figure 1 is only for representation purpose and the actual test cases will have deeper directory structures.

Figure 1: Directory Structure

output format

IITK/Postgraduate/details.txt:Kanpur Postgraduate courses in Engineering o er Master of

Technology (M.Tech), MS (R) and Ph.D. degrees …

1

IITK/Undergraduate/info.txt:IIT Kanpur o ers four-year B.Tech programs in Aerospace

Eng …

IITK/IITK Kanpur.txt:Faculty Building, IIT Kanpur …

IITK/IITK Kanpur.txt:Under the guidance of economist John Kenneth Galbraith, IIT Kan-

pur was the rst institute in India …

You can use below mentioned APIs to implement this part of the assignment. Refer to man page of these APIs to know about their usage.

opendir readdir closedir chdir open read

close stat

2

  • Implement @ and $ operators – 25 Marks

As part of this task, you need to implement two operators (@ and $) which have following functionalities. You should strictly use pipe system call to implement this part of the assignment. Usage of temporary les to store intermediate results will result in zero marks. You will submit single c source le with the implementation of both these operators.

2.1 @ operator

The @ operator takes two arguments, a string and a path. The program should output a number corresponding to count of lines that contain the string in the path provided.

The output of executing ./part2 @ Kanpur IITK should be equal to grep -rF Kan-pur IITK j wc -l. This is the rst check that you need to do. Here Kanpur and IITK are the string and path arguments, respectively.

You are free to use grep or your implementation of grep from part1 for this task.

2.2 $ operator

The $ operator takes four arguments, a string , a path, an output le and a command. You should get all lines that contain the string in the given path and write the result to output le as well as execute the command on the search result.

The output of executing ./part2 $ Kanpur IITK output.txt sort should be equal to grep -rF Kanpur IITK jtee output.txt j sort.

The output of executing ./part2 $ Kanpur IITK output.txt wc -l should be equal to grep -rF Kanpur IITK jtee output.txt j wc -l. This is the rst check that you need to do. Here Kanpur and IITK are the string and path arguments respectively.

You are free to use grep or your implementation of grep from part1 for this task.

You can use below mentioned APIs to implement this part of the assignment. Refer to man page of these APIs to know about their usage.

pipe

dup, dup2 fork

exec open

3

  • Directory Size – 45 Marks

Write a program to add up sizes of all les in the given directory. Your program will be provided with the path to the root directory (IITK Directory in Figure 2). It should perform the following actions

Assume that there are N immediate child sub-directories under the root directory. For each immediate child sub-directory under the provided root directory, your program must fork a new process Pi(i will range from 1 to the total number of immediate child sub-directories) that recursively looks in all the sub-directories for the les and compute sum of their sizes.

Your program should output the size of root directory as well as the size of all immediate child sub-directories.

Let us see an example of the folder structure given in the Figure 2. We will be provid-ing the path to root directory(IITK) has a command line argument to your program. The root directory is having two immediate child sub-directories (Postgraduate, Un-dergraduate). So your program has to fork two processes and add up the size of the les in its corresponding directories.

Figure 2: Folder Structure

4

Your program should output the names of root, immediate child sub-directories and their corresponding size. The expected output of the Figure 2 directory structure is shown in Figure 3.

Figure 3: Expected output

We have provided another sample explanation in the folder(Part 3nSamples Explanation). You can also refer that.

3.1 Validation

Your submitted code will be validated based on the following criteria.

If there are N immediate child sub-directories, your program should fork at least N process.

Your program should only use pipe (pipe() system call) to communicate between pro-cesses. You should neither use sockets nor use any temporary les to communicate. Any violation will result in zero marks.

There is no restriction on the number of pipes. You can create as many as it requires. In top of your le(part3.c) explain your implementation details and you should add comments to your code so that it will be helpful for us to go thorough your code if

required.

Before submitting the le, kindly verify your code with sample test cases which is provided in the directory “Part 3nTest Cases”.

3.2 Useful links

http://www.cs.loyola.edu/ jglenn/702/S2005/Examples/dup2.html http://web.mst.edu/ ercal/284/PipeExamples/Pipe4.c

.

5

  • Submission guidelines

You should name submission les as part1.c, part2.c and part3.c

Source code for each part of the assignment should be placed in respective folders. For example, part1.c should be placed in /Assignment1/Part 1/src/. Don’t change the structure of Assignment1 folder. You need to submit a zip of the entire folder (Assignment1.zip)

Source code should be properly commented.

Some test cases for each part of the assignment are made available in respective folders (Test Cases). Passing of these test cases will fetch you some mark. We will use extra test cases as part of the evaluation to test the robustness of your implementation.

Submission will be through canvas. Link for which will be made available through piazza prior to the submission date.

6

Assignment 1 Solution
$30.00 $24.00