Our implementation is a UDP based approach to the Ricart-Agrawala algorithm for mutual exclusion on a distributed system
The program consists of two golang files;
- shared_resource.go -> Represents the critical section of the system
- client.go -> Represents the nodes in the system
To run the program, first run the shared_resource.go
$ go run ./Implementation/shared_resource.goNext open multiple terminals that you would like to use as clients.
Client.go takes multiple arguments, depending on the number of clients.
- The first argument is the id of the client you want to initialize.
- The second (and other) argument(s) is the port on localhost on which the clients will operate.
Under here is an example of executing three different clients (each client to be executed in its own terminal).
$ go run ./Implementation/client.go 1 8080 8081 8082
$ go run ./Implementation/client.go 2 8080 8081 8082
$ go run ./Implementation/client.go 3 8080 8081 8082To make a request to access the critical section, write the command request within a terminal executing the client.
$ request- Gustav Christoffersen - guch@itu.dk
- Jacob Walter Bentsen - jawb@itu.dk
- Markus Grand Petersen - mgrp@itu.dk
As research on the topic, we gained some insight and references by looking at implementations by DylanNS and joaopmgd