当前位置:天才代写 > 作业代写,留学生作业代写-北美、澳洲、英国等靠谱代写 > Cidon’s algorithm代写 network manager代写 function代写

Cidon’s algorithm代写 network manager代写 function代写

2020-10-14 15:06 星期三 所属: 作业代写,留学生作业代写-北美、澳洲、英国等靠谱代写 浏览:1409

Cidon’s algorithm代写

Assignment 3 – v0

Cidon’s algorithm代写 Assignment 3 requires one practical project: A process-based emulation of Cidon’s distributed depth-first

Assignment 3 requires one practical project:

A process-based emulation of Cidon’s distributed depth-first search algorithm, with logical time delays, extended to determine the size of the network.Cidon’s algorithm代写

In fact, this config file describes a conceptual string-to-int dictionary, to be used by all instances of your solution, with the following interpretations:The network is bidirectional and is described by a text configuration file. Eg, the sample network used in the lectures can be described by the following text, say config4.txt:

  • Net “node” 0 is a process listening at port 8090 (more about thislater).
  • Node 1 is a process listening at port8081
  • Node 2 is a process listening at port8082
  • For unspecified arcs, the default static delay is 10ms(immutable).
  • Arc 1-3 has a static delay of 3000ms(immutable).
  • Arc 3-1 (unspecified) has a default static delay of 10ms(immutable).

Two slashes (//) introduce line comments that must be discarded,Cidon’s algorithm代写

together with any extra spaces and blank lines.

The config file may contain comments and extra spaces or lines. Comment, blank and empty lines must be discarded, as well as extra spaces. This could be the actual dictionary parsed from the above sample config file.

Cidon’s algorithm代写
Cidon’s algorithm代写

The node and net (network abbreviated) processes must be called node.exe and net.exe, respectively. These will be started in the following way,

to ensure that stdout’s are recorded:Cidon’s algorithm代写

To help the markers, stderr will still be sent to the command console, but we will duplicate the same messages to stdout.

The first command-line argument of all processes is the config file. Nodes have one or more numerical arguments: the first is the node number, followed by adjacent node numbers.Cidon’s algorithm代写

We recommend that messages are bundled as strings with the following format, where time, from, to, tok, and pay are integers (use commas between messages and single spaces for separation):

time from to tok pay, time from to tok pay, …

Nodes (including the net “node”) should print incoming and outgoing messages using the following formats, exactly (but extra spaces and additions allowed at the end):

Console.WriteLine($"... {Millis():F2} {ThisNode} < {from} {to} {tok} {pay}");

Console.WriteLine($"... {Millis():F2} {ThisNode} > {from} {to} {tok} {pay}");

Where Millis() is function which returns time of the day in milliseconds (or higher precision):

Func<double> Millis = () => DateTime.Now.TimeOfDay.TotalMilliseconds;

You can write out other lines, if you wish/need so, but please do NOT write any other

lines with the same four chars prefix ““ (three dots and one space). This convention will be used to trace the overall message flow, and determine its consistency.Cidon’s algorithm代写

Cidon’s algorithm代写
Cidon’s algorithm代写
In the above WriteLine calls:
  • ThisNode : the current node number, receiver orsender
  • time : logical time (see appendix)
  • from : sender nodenumber
  • to : target nodenumber
  • tok : tokenkind
    • 1 = forward (assume that this include vis)
    • 2 = vis(only)
  • 3 return
  • pay: the payload, here the computed size (partial ortotal)

In our sample scenario, node numbers are in the range 0..4, where 0 is the net “node”.

Let’s now discuss the critical roles of the net.exe process. We can also call it “network manager” or “asynchroniser”. This critical process will intercept all messages and forward them after the associated delays, as defined in the config file.Cidon’s algorithm代写

In other words, the conceptual message from node x -> node y will follow a longer path: node x -> net -> node y, with a required time delay being added in the net process.

Net process 0 is started last and will start Cidon’s algorithm, by sending a first forward message to the already started node process 1. The distributed algorithm will end after node process 1 sends a return message to net process 0 – the payload of this last message should contain the size of the whole network.

Thus, net process 0 plays a critical double role:Cidon’s algorithm代写
  • Intercepting all node messages and ensuring their specifieddelays
  • Acting as dummy parent for the start node 1, starting and stopping thealgorithm

For consistency (and fair marking), we require that these processes (node and net) are implemented in C# or F#, as self-hosted services, using the Nancy framework. Each process must be completely developed in one single file. The files must be respectively called node.cs and net.cs (C#), or node.fs and net.fs (F#). Please only use standard libraries extant in the labs plus the Nancy libraries (no other libraries are allowed).Cidon’s algorithm代写

However you develop these, the files must be compilable using the command lines compilers, e.g.

csc /r: Nancy.dll /r: Nancy.Hosting.Self.dll node.cs

csc /r: Nancy.dll /r: Nancy.Hosting.Self.dll net.cs

Please submit your two source files (node and net) to the university ADB assignment dropbox, following the instructions on Canvas and ADB itself. Please ensure that your submission is compilable and runs properly in our labs (the same environment which will be used by the markers).

Submission deadline: Week #11 Sat 6 pm. After this deadline, submissions will be still accepted for 4 more days, with gradually increasing penalties, of 0.5% for each hour late.

Appendix – Net implementation hints Cidon’s algorithm代写

One thread-safe “queue” (or priority queue), sorted on cumulated logical delays. This ensures well controlled logical delays (small delay differences should count).

Cidon’s algorithm代写
Cidon’s algorithm代写

Note: In this algorithm, at any given time, there is only one active node, that holds the forward token (only one exists) and sends out messages (one or more). To ensure proper processing, all outgoing messages should be sent grouped in a bundle.

Warning: concurrency is possible, on Net and on each Node Critical regions? If needed, use lock { … } ?Cidon’s algorithm代写

Example. Consider the following scenario: Logical time 0:

  • Active node a sends out a bundle of two messages: x:0; y:0 – where numbers indicated logicaltime
  • Messages x:0 and y:0 are received by net and queued according to their sending time plus their config delays, say 2 for a->b and 5 for a->d, thus: [y:5;x:2]

Logical time 2:

  • Message x:2 is popped out, forwarded, and arrives at b. At this time, thenet

queue contains [y:3]

  • Node b receives and processes x:2, becomes the active node, and then sends out message z:2
  • Message z:2 is received by net and queued according to its sending time plus its config delay, say 2 for b->c, thus: [y:5; z:4] (ahead of older messagey)Cidon’s algorithm代写

Logical time 4:

  • Message z:3 is popped out, forwarded, and arrives at c. At this time, thenet

queue contains [y:5]

Cidon’s algorithm代写
Cidon’s algorithm代写

更多其他:C++代写 java代写 r代写 Data Analysis代写 代码代写 金融代写  python代写 web代写 物理代写 数学代写 考试助攻 计算机代写 作业代写

合作平台:天才代写 幽灵代写 写手招聘 Essay代写

 

天才代写-代写联系方式