BambangShop Receiver App
Tutorial and Example for Advanced Programming 2024 - Faculty of Computer Science, Universitas Indonesia
About this Project
In this repository, we have provided you a REST (REpresentational State Transfer) API project using Rocket web framework.
This project consists of four modules:
-
controller
: this module contains handler functions used to receive request and send responses. In Model-View-Controller (MVC) pattern, this is the Controller part. -
model
: this module contains structs that serve as data containers. In MVC pattern, this is the Model part. -
service
: this module contains structs with business logic methods. In MVC pattern, this is also the Model part. -
repository
: this module contains structs that serve as databases. You can use methods of the struct to get list of objects, or operating an object (create, read, update, delete).
This repository provides a Rocket web framework skeleton that you can work with.
As this is an Observer Design Pattern tutorial repository, you need to implement a feature: Notification
.
This feature will receive notifications of creation, promotion, and deletion of a product, when this receiver instance is subscribed to a certain product type.
The notification will be sent using HTTP POST request, so you need to make the receiver endpoint in this project.
API Documentations
You can download the Postman Collection JSON here: https://ristek.link/AdvProgWeek7Postman
After you download the Postman Collection, you can try the endpoints inside "BambangShop Receiver" folder.
Postman is an installable client that you can use to test web endpoints using HTTP request. You can also make automated functional testing scripts for REST API projects using this client. You can install Postman via this website: https://www.postman.com/downloads/
How to Run in Development Environment
-
Set up environment variables first by creating
.env
file. Here is the example of.env
file:ROCKET_PORT=8001 APP_INSTANCE_ROOT_URL=http://localhost:${ROCKET_PORT} APP_PUBLISHER_ROOT_URL=http://localhost:8000 APP_INSTANCE_NAME=Safira Sudrajat
Here are the details of each environment variable:
variable type description ROCKET_PORT string Port number that will be listened by this receiver instance. APP_INSTANCE_ROOT_URL string URL address where this receiver instance can be accessed. APP_PUUBLISHER_ROOT_URL string URL address where the publisher instance can be accessed. APP_INSTANCE_NAME string Name of this receiver instance, will be shown on notifications. -
Use
cargo run
to run this app. (You might want to usecargo check
if you only need to verify your work without running the app.) -
To simulate multiple instances of BambangShop Receiver (as the tutorial mandates you to do so), you can open new terminal, then edit
ROCKET_PORT
in.env
file, then execute anothercargo run
.For example, if you want to run 3 (three) instances of BambangShop Receiver at port
8001
,8002
, and8003
, you can do these steps:- Edit
ROCKET_PORT
in.env
to8001
, then executecargo run
. - Open new terminal, edit
ROCKET_PORT
in.env
to8002
, then executecargo run
. - Open another new terminal, edit
ROCKET_PORT
in.env
to8003
, then executecargo run
.
- Edit
Mandatory Checklists (Subscriber)
- Clone https://gitlab.com/ichlaffterlalu/bambangshop-receiver to a new repository.
-
STAGE 1: Implement models and repositories
-
Commit:
Create Notification model struct.
-
Commit:
Create SubscriberRequest model struct.
-
Commit:
Create Notification database and Notification repository struct skeleton.
-
Commit:
Implement add function in Notification repository.
-
Commit:
Implement list_all_as_string function in Notification repository.
- Write answers of your learning module's "Reflection Subscriber-1" questions in this README.
-
Commit:
-
STAGE 3: Implement services and controllers
-
Commit:
Create Notification service struct skeleton.
-
Commit:
Implement subscribe function in Notification service.
-
Commit:
Implement subscribe function in Notification controller.
-
Commit:
Implement unsubscribe function in Notification service.
-
Commit:
Implement unsubscribe function in Notification controller.
-
Commit:
Implement receive_notification function in Notification service.
-
Commit:
Implement receive function in Notification controller.
-
Commit:
Implement list_messages function in Notification service.
-
Commit:
Implement list function in Notification controller.
- Write answers of your learning module's "Reflection Subscriber-2" questions in this README.
-
Commit:
Your Reflections
This is the place for you to write reflections:
Mandatory (Subscriber) Reflections
Reflection Subscriber-1
-
Why is
RwLock<>
necessary, and why not useMutex<>
instead?RwLock<>
is used because it allows multiple readers to access the data simultaneously while ensuring that only one writer can modify the data at a time. This is particularly useful in scenarios where read operations are more frequent than write operations, as it improves performance by reducing contention.On the other hand,
Mutex<>
provides exclusive access to the data, meaning that even read operations would block each other. This would lead to unnecessary contention and reduced performance in a read-heavy scenario like this one. Hence,RwLock<>
is a better choice for this use case. -
Why does Rust not allow mutating the content of a static variable directly?
In Rust, static variables are immutable by default, and even when declared as mutable, they require synchronization mechanisms like
RwLock<>
orMutex<>
to ensure thread safety. This design is based on Rust's emphasis on safety and preventing data races in concurrent programming.Unlike Java, where static variables can be mutated without any inherent thread-safety guarantees, Rust enforces strict ownership and borrowing rules. This ensure that mutable access to shared data is always synchronized, preventing undefined behavior and ensuring memory safety. Rust makes it clear when and how shared data is being accessed or modified, leading to safer and more predictable code.