Skip to content
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.

University Project for "Distributed Systems and Middleware Technologies" course (MSc Computer Ering @ University of Pisa). Distributed platform for booking and chatroom features

License

Notifications You must be signed in to change notification settings

RiccardoSagramoni/distributed-student-platform

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

distributed-student-platform

Java Erlang JavaScript

Apache Maven Glassfish NGINX MySQL LaTeX

University project for Distributed Systems and Middleware Technologies course (MSc Computer Engineering @ University of Pisa, A.Y. 2022-23)

Student University Platform is a distributed web application aimed at providing multiple features to students and professors, which are:

  • Allow students to book a meeting with a professor;
  • Provide chatroom functionality among students where they can share opinions and suggestions about a course.

Both students and professors have a dedicated page where they can view scheduled meetings and cancel them. Within the course page, on the other hand, it is possible to access the dedicated chatroom or look at the list of available slots and choose the meeting to reserve.

System Architecture

System Architecture

The web application, as we can see in figure, consists of a Client Application, a Jakarta Application Server, and multiple Erlang Servers.

  • The Jakarta EE Application Server, which implements most of the functionality of the application, uses as its reference implementation, Glassfish 6.2.5 and also communicates with a MySql relational database located on a different machine.
  • The Erlang Servers handle the Chatrooms of the application through an HTTP websocket communication. They are managed by a Load Balancer and configured by a Master Node and both are on another machine. We chose Nginx for the Load Balancer since it natively supports the WebSocket protocol both as reverse proxy and load balancer.
  • The client application was implemented using the combination of HTML, CSS and Javascript.

Synchronization and communication

  • Multiple clients exchange messages with each other in chat rooms concurrently. The chat of each client node must be synchronized.
  • When a student enters or leave the chatroom each client node must be synchronized in order to see a consistent list of students within the chat (i.e. "online students").
  • When a student books a meeting in an available time slot or remove a previously booked meeting, each client node must be synchronized to view the same consistent state (both for students and professors).
  • When a professor creates or delete a course, the server must show the course to all the connected client in the "browse", "search" sections and, in case of deletion, inside the course page.

Structure of the repository

Distributed-University-Chatroom-Platform
|
├── erlang-server
│   ├── chat_server
│   ├── master_node
│   └── nginx
|
├── glassfish-server
│   ├── ejb
│   │   └── src
│   |       ├── dao
|   |       └── ejb   
│   ├── ejb-interfaces
│   │   └── src
│   |       ├── dto
│   |       ├── enums
|   |       └── interfaces   
│   └── web
│       └── src
│           ├── java/it/unipi/dsmt/student_platform
│           |   ├── servlets
|           |   └── utility  
│           └── webapp    
│               ├── assets
|               |   ├── css
|               |   ├── javascript
|               |   ├── img
|               |   └── libs 
|               └── WEB-INF 
|                   └── jsp  
└── mysql-server 

Authors

About

University Project for "Distributed Systems and Middleware Technologies" course (MSc Computer Ering @ University of Pisa). Distributed platform for booking and chatroom features

Topics

Resources

License

Stars

Watchers

Forks

Languages

  • Java 76.1%
  • CSS 9.5%
  • Erlang 8.3%
  • JavaScript 5.9%
  • Shell 0.2%