COMP90015: Distributed Systems – Assignment 1
Multi-threaded Dictionary Server (15 marks) Problem Description
Using a client-server architecture, design and implement a multi-threaded server that allows concurrent clients to search the meaning(s) of a word, add a new word, and remove an existing word.
This assignment has been designed to demonstrate the use of two fundamental technologies that have been discussed during the lectures:
• Sockets • Threads
Hence, the assignment must make an EXPLICIT use of the two above. By explicit, we mean that in your application, sockets and threads must be the lowest level of abstraction for network communication and concurrency.
Architecture
-
The system will follow a client-server architecture in which multiple clients can connect to a (single) multi-threaded server and perform operations concurrently.
-
The multi-threaded server may implement a thread-per-request, thread-per-connection, or worker pool architecture. This is a design decision for you to make.
Interaction
-
All communication will take place via sockets. These sockets can be either TCP or UDP, however, keep in mind that all communication between clients and server is required to be reliable.
-
You are responsible for designing your own message exchange protocol. Some data formats that you may use include XML, JSON, Java Object Serialization, or you may choose to design your own.
Failure Model
-
-
All communication between components has to be reliable. If you are using TCP, then the reliability guarantees offered by the protocol are sufficient. If you decide to use UDP, then you have to implement an infrastructure that offers reliable communication over UDP. For those of you with previous experience using TCP, using UDP may be a rewarding challenge.
-
It is expected that, on both the server and the client side, errors (by means of exception handling) are properly managed. The errors include the following:
-
Input from the console for what concerns the parameters passed as command line.
-
Network communication (address not reachable, bad data...).
-
I/O to and from disk (cannot find the dictionary file, error reading the file, etc...).
-
Other errors you might come up with.
The application will be tested and validated against all these errors.
Functional Requirements
-
Query the meaning(s) of a given word
The client should implement a function that is used to query the dictionary with the followingminimum (additional input/output parameters can be used as required) input and output:
Input: Word to search
Output: Meaning(s) of the word
Error: The client should clearly indicate if the word was not found or if an error occurred. In case of an error, a suitable description of the error should be given to the user.
-
Add a new word
Add a new word and one or more of its meanings to the dictionary. For the word to be added successfully it should not exist already in the dictionary. Also, attempting to add a word without an associated meaning should result in an error. A new word added by one client should be visible to all other clients of the dictionary server. The minimum input and output parameters are as follows:
Input: Word to add, meaning(s)
Output: Status of the operation (e.g., success, duplicate)
Error: The user should be informed if any errors occurred while performing the operation. -
Remove an existing word
Remove a word and all of its associated meanings from the dictionary. A word deleted by one client should not be visible to any of the clients of the dictionary server. If the word does not exist in the dictionary then no action should be taken. The minimum input and output parameters are as follows:
Input: Word to remove
Output: Status of the operation (e.g., success, not found)
Error: The user should be informed if any errors occurred while performing the operation.
• Update meaning of an existing word
Update associated meanings of a word from the dictionary. If multiple meanings already exist, you need to add this new one to it (of course, if the same meaning already exists, then no need to add). Update made by one client should be visible to any of the clients of the dictionary server. If the word does not exist in the dictionary, then no action should be taken. The minimum input and output parameters are as follows:
Input: Word to update, meaning(s)
Output: Status of the operation (e.g., success, not found)
Error: The user should be informed if any errors occurred while performing the operation.
User Interface
A Graphical User Interface (GUI) is required for this project. You are free to design it and to use any existing tools and libraries for this purpose.
Implementation Guidelines
These are guidelines only, you are allowed and encouraged to come up with your own design and interfaces.
-
When the server is launched, it loads the dictionary data from a file containing the initial list of words and their meanings. These data is maintained in memory in a structure that enables an efficient word search. When words are added or removed, the data structure is updated to reflect the changes.
A sample command to start the server is:
> java –jar DictionaryServer.jar <port> <dictionary-file>
Where <port> is the port number where the server will listen for incoming client connectionsand <dictionary-file> is the path to the file containing the initial dictionary data.
-
When the client is launched, it creates a TCP socket bound to the server address and port number. This socket remains open for the duration of the client-server interaction. All messages are sent/received through this socket.
A sample command to start the client is:
> java –jar DictionaryClient.jar <server-address> <server-port>
Implementation Language
The assignment should be implemented in Java. Utilization of technologies such as RMI and JMS are not allowed.
Report
You should write a report describing your system and discussing your design choices. Your report should include:
-
The problem context in which the assignment has been given.
-
A brief description of the components of the system.
-
An overall class design and an interaction diagram.
-
A critical analysis of the work done followed by the conclusions.
Please mind that the report is a WRITTEN document, do not put only graphs. A report without any descriptive text addressing the problem, architecture, protocols, and the analysis of the work done will not be considered valid.
The length of the report is not fixed. A good report is auto-consistent and contains all the required information for understanding and evaluating the work done. Given the level of complexity of the assignment, a report in the range of 4 to 6 pages is reasonable. Please mind that the length of the report is simply a guideline to help you in avoiding writing an extremely long or incomplete report.
It is important to put your details (name, surname, student id) in:
-
The head page of the report.
-
As a header in each of the files of the software project.
This will help to avoid any mistakes in locating the assignment and its components on both sides.Submission
Your report in PDF format only.
-
Two executable jar files (DictionaryClient.jar and DictionaryServer.jar) that will be used to run
your system on the day of the demo.
-
Your source files in a .ZIP or .TAR archive only.
(These above items should be submitted each one individually – NOT as one zip file containing all).
Submissions will be due on: April 8, 2024; Monday (5 pm).