Starting from:
$35

$29

Homework Assignment 5 Solution

    • Assignment Objectives

Get acquainted with some basic aspects of having processes monitor other pro-cesses in Erlang.

    • Assignment Policies

Collaboration Policy. This homework may be done in individually or in pairs. Use of the Internet is allowed, but should not include searching for ex-isting solutions. In case it is done in pairs, only one of the members should submit through Canvas. All submitted modules should include the attribute

-author("Names of authors").

Under absolutely no circumstances code can be exchanged between students. Excerpts of code presented in class can be used.

Assignments from previous offerings of the course must not be re-used. Violations will be penalized appropriately.

Late Policy. Late submissions are allowed with a penalty of 2 points per hour past the deadline.

    • Assignment

Write Erlang code to model a group of sensors. Your solution will consist of three modules

One Erlang module, in source file sensor.erl, should model a sensor process.

Based on Dan Duchamp’s assignment 5, from prior editions of this course.




1





Another Erlang module, in source file watcher.erl, should model “watcher” processes.

Finally„ in source file main.erl, you will have two functions, start/0 and setup_loop/2. The code for start/0 is given below, that for setup_loop/2 you have to implement (together with the code in modules sensor.erl and watcher.erl.

Each watcher process should keep watch on as many as 10 sensors, then number of sensors being specified as an argument. Occasionally each sensor will report a measurement to its watcher. The measurement is a random integer in the range 1-10. Sensors should report measurements to their watcher every few seconds, the interval between successive measurements being a random number of milliseconds in the range 1-10000.

Every once in a while, a sensor will crash. When a sensor crashes, its watcher process should detect that fact and start a replacement sensor process. This should be achieved using monitors. Monitors are similar to links. Further details are provided in the next section.

(Once you have your logic working, try running with a very large number of processes. If you have written your “loops” with proper tail recursion, it should work. For instance, the example solution runs correctly with 300,000 simultaneous sensor processes on a standard modern desktop. To run with a large number of sensors, you might have to expand Erlang’s process limit. To increase the cap, start Erlang like this: erl +P NUMPROC where NUMPROC is a power of two that specifies the process limit. Erlang creates many additional background processes so NUMPROC will have to be substantially larger than the number of sensors.)

Here is the code for main:start/0.

    • start ()  ->

2    {ok ,  [  N  ]}  =  io : fread (" enter    number    of  sensors >  " ,  "~d")  ,
    • if  N  = <  1  ->
4    io : fwrite (" setup :  range    must  be  at    least    2~n" ,  [])  ;
    • true  ->
6    N u m _ w a t c h e r s  =  1  +  ( N  div  10)  ,
    • s e t u p _ l o o p (N ,  N u m _ w a t c h e r s )
8end .


3.1    Software Details

Sensor:

Each sensor has an integer ID: 0, 1, etc.

A measurement report should be a tuple that includes only the sensor’s ID number and the measurement number.

Generate a random measurement like this:

Measurement = rand:uniform(11)


2





If Measurement is in the range 1-11, report it to the watcher process. If Measurement is 11, crash with the report “anomalous_reading”

Sleep for a random time between measurements like this:

Sleep_time = rand:uniform(10000) ,

timer:sleep(Sleep_time)

To crash, call exit/1, as seen in class and described at http://erlang.org/doc/man/erlang.html

Watcher:

Each sensor is watched by a single watcher process. For example, if there are 93 sensors then one watcher should watch sensors 0-9, a second should watch sensors 10-19, and so on; the tenth watcher should watch sensors 90-92.

A process P can monitor another process Q. In this case, if Q terminates, then P will be notified via a message. Here is an example,

1    106 >    erlang : monitor ( process ,  spawn ( fun ()  ->  exit ( oops )  end )).

    • # Ref < 0 . 3 7 7 6 9 2 9 0 0 9 . 2 3 2 1 8 0 9 4 0 9 . 1 2 5 4 4 8 >
3  107 >  flush ().

4    Shell    got  { ’DOWN ’ ,# Ref < 0 . 3 7 7 6 9 2 9 0 0 9 . 2 3 2 1 8 0 9 4 0 9 . 1 2 5 4 4 8 > , process , <0.246.0 > , oops }
    • ok

You can also spawn and then monitor a process in one action using spawn_monitor/3. To start a new process and have the caller act as its monitor:

{ Pid, Ref } = spawn_monitor(Module, Function, Argument_list)

Here, “Ref” is a unique “reference” that identifies the monitored process (but Ref is different from the Pid). We do not need references in this assignment; you can throw away the returned reference like this:

{ Pid, _ } = spawn_monitor(Module, Function, Argument_list)

Each watcher should maintain a list of its sensors. Each item on the list should be a tuple that associates a sensor’s ID number with its current Pid. You will have to update this list when a particular sensor is restarted because the new sensor process will have the same sensor number but a dif-ferent Pid from the crashed sensor process. Read about the lists:delete function at http://erlang.org/doc/man/lists.html.

Each watcher should print a line of output (using io:fwrite) whenever any of these events occurs:

Watcher starts: print initial list of sensors; each list item is a tuple that contains ID and Pid

3





Receives sensor reading: print sensor number and measurement num-ber

Detects that sensor died: print sensor number (not Pid) and reason it died
Sensor is restarted: print updated list of sensors; each list item is a tuple that contains ID and Pid

    • Submission Instructions

Submit your Erlang source code via Canvas by the indicated date and time. Sub-mit a zip file named Assignment5_<Surnames>.zip (where <Surnames> should be replaced by the surnames of the team members) containing all the files.









































4

More products