代做Assignment 1帮做R语言

Assignment 1

Due date: 23:59  2024-04-04

The purpose of this assignment is to gain good understanding of the ordering property of multicast primitives through implementing the total order multicast primitive.

Many applications need to use multicast mechanisms that satisfy various ordering properties to send information. To simplify the task of application development, many systems provide multicast mechanisms using middleware or OS services. In this assignment, you are required to implement a middleware that ensures total order of multicast messages.


Figure 1 Multicasting through Middleware

Figure 1 shows how the middleware is used.

.   Each application program has a corresponding middleware. An application and its corresponding middleware reside on the same machine.

.   The middleware uses a protocol to guarantee the ordering property of the multicast messages.

.   When an application needs to multicast a message to other applications, the application sends the message to its corresponding middleware. The middleware is responsible  for multicasting the message to the corresponding middleware of the other applications through the network.

.   When a middleware receives a multicast message from the network, it determines whether the message can be delivered to its corresponding application according to the protocol for guaranteeing the message ordering. The middleware buffers a message until the message can be delivered to the application.

In this assignment, you are provided with a program for simulating the network. The multicast messages sent by the middleware on behalf of the application programs MUST be sent to the network program first. Subsequently, the network program will multicast the message to all the middleware in the system.

Except for modifying the values stored in the file 'delays.txt', you MUST not alter any other file in the 'network' folder. The marker will employ the same network program during the assessment of your assignment. However, the marker may utilize a 'delays.txt' file with a different set of values. An example, which includes the network program and some simple programs for testing the network program, can be downloaded from Canvas. The details of the network program are as below:

.   The middleware communicates with the network program through TCP sockets.

.   The network program receives multicast messages sent by the middleware and broadcasts each received message to ALL the middleware in the system.  The broadcast is executed via point-to-point communication using TCP sockets.

.   The network program listens for incoming messages on port 8081.

.   File  'delays.txt' comprises several lines, with each line containing several  values separated by ','. The number of values in each line is equivalent to the number of middleware in the system. These values  represent the amount  of  delays  that the network program uses when sending a multicast message to middleware. Each value in a line corresponds to a middleware. For example, if there are two middleware M1 and M2, then each line of ‘delays.txt’ consists of two values, i.e., d1 and d2, and they are the amount of delay for M1 and M2 respectively.

.   To simulate network delay, while broadcasting a message, the network program waits for a specific duration before sending the message to the middleware. The waiting time for different middleware may vary and is determined by the values in the file 'delays.txt'. For instance, assuming there are two middleware, M1 and M2, and the contents of 'delays.txt' are as follows:

100,2000

1000,30

When the network receives the first multicast message (msg1), it reads the two values in the first line of 'delays.txt'. Based on these values, the network program will wait for 100ms and 2000ms before sending msg1 to M1 and M2, respectively.

Similarly, when the network receives the second multicast message (msg2), it reads the two values in the second line of 'delays.txt'. Accordingly, the network program will wait for 1000ms and 30ms before sending msg2 to M1 and M2, respectively.

.   Port 8081 is utilized by the network program for receiving multicast messages from the middleware.

In this assignment, you are required to implement programs corresponding to Middleware 1 to 5 in Figure 1. You do not need to provide any of the application programs shown in Figure 1. You must use C# to do this assignment.

Programming (12 marks)

In this part, you are required to implement the middleware that ensures the total order of the multicast messages. In order to test the middleware, your implementation must include a GUI interface for the middleware. The layout of the interface for each middleware should be similar to Figure 2.

Figure 2  The GUI for a Middleware

The middleware and its GUI should satisfy the requirements below:

.   Each middleware should have its own GUI.

.   A GUI should have a title indicating the ID of the middleware, e.g. “Middleware 1”.

.   Each GUI should have a button “Send”. When the button is clicked, the middleware should send a multicast message to the network. The contents of the message should be generated automatically by your program.  Each multicast  message sent by a middleware must include information that uniquely identifies the message.  For example, “Msg #1 from Middleware  1 xxx” indicates that this is the first message sent by Middleware 1. A message must be less than 1024 bytes.

.   Each GUI should have three lists for displaying messages.

o The “Sent” list shows the multicast messages that have been sent by the middleware to the network. The messages in the list should appear in the order in which they were sent to the network.

o The “Received” list contains the multicast messages that have been received by the middleware from the network. The received messages should be displayed in the order in which they are received by the middleware. You should also show the proposed timestamp assigned to each message.

o The  “Ready”  list presents the multicast messages that are ready to be delivered to the application program. This means that the messages in the “Ready” list should be a subset of the messages in the “Received” list. The order in which the messages appear in the “Ready” list should conform to the total-order property of the multicast messages. You should also show the final timestamp assigned to each message.

.   Your implementation should have five middleware  programs.  Each middleware program should be stored in its own folder. There is NO need to run your programs concurrently on different machines. You only need to test them on one machine.

.   Each middleware program should create a TCP socket for receiving messages from the network program. The sockets used by the five middleware programs MUST use ports 8082, 8083, 8084, 8085, and 8086 respectively.

.   The middleware programs might need to exchange some “control” information amongst them when determining the order in which the multicast messages should be delivered. The middleware programs must exchange the control information between them directly using TCP sockets. That is, the control messages should not be sent to the ‘Network’.

o On lab machines, you can only use port 8080 to 8099. Please make sure that your implementations take this into account. Your implementations MUST be able to run on a lab machine.

.   You must NOT use any absolute path in your code, e.g., ‘c:xyz\A1’. Given that your directory structure may differ from the marker's, using absolute paths may cause your program to fail to execute correctly on the marker's machine. Failure  to  execute correctly will result in receiving a mark of 0.

Report (3 marks)

Write a report about your implementation. Your report should include the following.

(a) Clearly indicate whether you have tested your programs on a lab machine.

(b) Instructions on how to run your programs.

(c) What information is used to uniquely identify a multicast message.

(d) Describe an application scenario in which the total-order multicast is needed to ensure the consistency of the data in the system.

(e) Use an example to show the difference between total order and causal order multicast. Save your report as a PDF file. Name it as Report.pdf.

Submission

.   You MUST thoroughly test your programs on a lab machine. Programs that cannot be compiled or run on a lab machine will get NO marks.

.   You only need to submit the implementations of the middleware.   Your implementations should have the following directory hierarchy.  The  directory structure must be similar to the example program.

.   You should only submit the source code of your programs.

.   You should create a windows batch file for compiling the submitted programs and for executing the programs. Name the batch file as run.bat. The batch file should be placed under folder ‘A1’.

.   Pack your implementations, the batch file and the report into file A1.7z. The directory hierarchy of your implementation should be preserved when you pack your files.

.   Submit A1.7z and report.pdf to Canvas.

. NO email submission will be accepted.

Marking Schedule

Programming

1.   The batch file for compiling and executing programs works correctly. [0.5 marks]

2.   There are five middleware programs and the programs are placed in the right folders. [0.5 marks]

3.   Each GUI shows the ID of the middleware. [0.5 marks]

4.   When the “Send” button is clicked, a multicast message is sent to the network program. [0.75 marks]

5.   Each multicast message contains the information that uniquely identifies the message. [0.75 marks]

6.   Multicast messages are added to the “Sent” list correctly. [2 marks]

7.   Multicast messages are added to the “Received” list correctly. [2 marks]

8.   Multicast messages are added to the “Ready” list correctly. [5 marks]

Report

1.   Statement about testing on a lab machine. [0.1 mark]

2.   Clear instructions on running the programs. [0.5 marks]

3.   Information on how to uniquely identify a multicast message. [0. 5 marks]

4.   Clear description about an application scenario. [1 mark]

5.   Clear demonstration of the difference between total order and causal order.  [0.9 marks]


热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图