Skip to content

Distributed systems chat app w/ sockets, gRPC implementations, 2-fault tolerance

Notifications You must be signed in to change notification settings

mirabor/cs262-chat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

CS262 Chat Application

Welcome to our chat app, a PyQt6-based client with a dark theme UI and a Python server for real-time messaging!

Our application is built with a client-server architecture, supporting multiple clients connecting to the server from different machines. We have implemented two wire protocols: JSON and our custom protocol (SAMIRAπŸ”₯), as well as a fault-tolerant replication system using gRPC for server-to-server communication.

Design Documentation Client Documentation Server Documentation Protocol Documentation Replication Documentation

Test Suite & Coverage Status

Getting Started

Prerequisites

  • Python 3.8+
  • pip (Python package manager)
  • make (build tool)

Quick Start

  1. Clone and install:
git clone https://github.com/mirabor/cs262-chat.git
cd cs262-chat
make install && make install-dev
  1. Start first server in the cluster:
make run-server MODE=grpc SERVER_ID=server1 PORT=5555

Note: when you start the first server, it will log the IP address under β€œNetwork Interface” section. Take note of your IP address so that you can reference it as a peer when you add new replica nodes.

To add replica nodes, run same command but with a list of peers' addresses (comma-separated).

make run-server MODE=grpc SERVER_ID=server2 PORT=5556 PEERS=FIRST_SERVER_IP:5555

Also take note of your second server’s IP address here.

make run-server MODE=grpc SERVER_ID=server3 PORT=5557 PEERS=FIRST_SERVER_IP:5555, SECOND_SERVER_IP:5556

Replace FIRST_SERVER_IP and SECOND_SERVER_IP with your first server’s IP address and your second server’s IP address, respectively. You can add more by following the same structure. Each sever will work on its own database (also logged).

  1. Start client
make run-client MODE=grpc PORT=5555 CLIENT_ID=client1 SERVER_IP=LEADER_IP

Note

LEADER_IP will be displayed on the leader machine (most likely server1 if you used instruction above) where the server is running, along with other server details (e.g. what wire protocol is being used, port, etc.).

Features

Our application implements the below functional requirements:

  • Account Management

  • Create account with unique username, nickname, and password

  • Log in with existing account

  • Delete account

  • List/search accounts with wildcard support

  • Messaging

  • Real-time message delivery

  • Offline message storage

  • Configurable unread message to be delivered at any time

  • Message status tracking (number of unread messages)

  • Individual and bulk message deletion

  • Multi-Machine Support

  • Tested server-client communication on different machines

  • Server accessible from any client on the network

  • Tested with two wire protocols: JSON and our custom protocol (SAMIRAπŸ”₯)

  • Fault-Tolerant Replication

  • Raft-inspired leader election protocol

  • 2-fault tolerant server cluster

  • Automatic failover with leader election

  • Dynamic server addition to the replica set

  • gRPC-based server-to-server communication

For more details on features, high-level design, and implementation, see our High-Level Design & Implementation Plan.

Documentation Structure

Our documentation is organized for easy navigation:

Note

Engineering Notebook For our other documents, especially engineering notebooks, see the notebook.md file and the Issues Page

Testing Coverage

Our test suite coverage report can be found by clicking on the badge below:

Test Suite & Coverage Status

Also, you can run the test suite locally with:

make test

Project Structure

image

β”œβ”€β”€ Makefile
β”œβ”€β”€ design/
β”‚   β”œβ”€β”€ notebook.md
β”‚   β”œβ”€β”€ replicas-notebook.md
β”‚   └── wire-protocol-notebook.md
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ client/
β”‚   β”‚   β”œβ”€β”€ components/
β”‚   β”‚   └── pages/
β”‚   β”œβ”€β”€ protocol/ # Protocol definitions and handlers
β”‚   β”‚   β”œβ”€β”€ grpc/
β”‚   β”‚   β”‚   β”œβ”€β”€ chat_pb2.py
β”‚   β”‚   β”‚   β”œβ”€β”€ chat_pb2_grpc.py
β”‚   β”‚   β”‚   β”œβ”€β”€ replication_pb2.py
β”‚   β”‚   β”‚   └── replication_pb2_grpc.py
β”‚   β”‚   β”œβ”€β”€ json/
β”‚   β”‚   └── samira/   # (custom impl, samira)
β”‚   β”œβ”€β”€ replication/
β”‚   β”‚   β”œβ”€β”€ config.py
β”‚   β”‚   β”œβ”€β”€ election_manager.py
β”‚   β”‚   β”œβ”€β”€ heartbeat_manager.py
β”‚   β”‚   β”œβ”€β”€ replica_node.py 
β”‚   β”‚   β”œβ”€β”€ replica_state.py
β”‚   β”‚   └── replication_manager.py
β”‚   └── server/
└── tests/
    β”œβ”€β”€ client/
    β”œβ”€β”€ protocol/
    β”œβ”€β”€ replication/
    └── server/

Problem 1 Demo

giphy1.mp4
giphy.mp4
giphy.1.mp4
giphy.2.mp4
giphy.3.mp4
giphy.4.mp4

Development

Code Style

  • Follows PEP 8 guidelines
  • Auto-formatting available:
make fix-style

Tip

For other development make commands, simply run make to see the available options.

About

Distributed systems chat app w/ sockets, gRPC implementations, 2-fault tolerance

Resources

Stars

Watchers

Forks

Packages

No packages published