-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path35.DesignShippingAndLogisticsSystem.java
More file actions
164 lines (136 loc) · 4.77 KB
/
35.DesignShippingAndLogisticsSystem.java
File metadata and controls
164 lines (136 loc) · 4.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// ---------------- SHIPPING & LOGISTICS SYSTEM (Single File Java Demo) ----------------
import java.util.*;
import java.util.concurrent.locks.*;
import java.util.UUID;
// ======================= Strategy Pattern for Cost Calculation =======================
interface CostStrategy {
double calculate(double weight, double distance);
}
class DefaultCostStrategy implements CostStrategy {
public double calculate(double weight, double distance) {
return 50 + (10 * weight) + (2 * distance);
}
}
// ============================== Shipment Factory ======================================
class ShipmentFactory {
public static Shipment create(String sender, String receiver, String origin,
String destination, double weight, double distance, CostStrategy strategy) {
String trackingId = UUID.randomUUID().toString().substring(0, 8);
double cost = strategy.calculate(weight, distance);
return new Shipment(trackingId, sender, receiver, origin, destination, weight, distance, cost);
}
}
// ================================= Shipment ============================================
class Shipment {
String trackingId, sender, receiver, origin, destination, status;
double weight, distance, cost;
Agent agent;
private Lock lock = new ReentrantLock();
Shipment(String tid, String s, String r, String o, String d, double w, double dist, double c) {
this.trackingId = tid;
this.sender = s;
this.receiver = r;
this.origin = o;
this.destination = d;
this.weight = w;
this.distance = dist;
this.cost = c;
this.status = "Pending";
}
void updateStatus(String newStatus) {
lock.lock();
try {
this.status = newStatus;
} finally {
lock.unlock();
}
}
}
// ================================== Agent ==============================================
class Agent {
int id;
String name;
boolean available = true;
private Lock lock = new ReentrantLock();
Agent(int i, String n) {
this.id = i;
this.name = n;
}
boolean assign() {
lock.lock();
try {
if (available) {
available = false;
return true;
}
return false;
} finally {
lock.unlock();
}
}
void release() {
lock.lock();
try {
available = true;
} finally {
lock.unlock();
}
}
}
// ============================= Singleton: Logistics Manager ==============================
class LogisticsManager {
private static LogisticsManager instance;
private static final Object lockObj = new Object();
Map<String, Shipment> shipments = new HashMap<>();
List<Agent> agents = new ArrayList<>();
CostStrategy costStrategy = new DefaultCostStrategy();
private LogisticsManager() {
agents.add(new Agent(1, "Agent A"));
agents.add(new Agent(2, "Agent B"));
}
public static LogisticsManager getInstance() {
synchronized (lockObj) {
if (instance == null) instance = new LogisticsManager();
return instance;
}
}
String createShipment(String sender, String receiver, String origin,
String destination, double weight, double distance) {
Shipment shipment = ShipmentFactory.create(sender, receiver, origin, destination, weight, distance, costStrategy);
shipments.put(shipment.trackingId, shipment);
return shipment.trackingId;
}
String assignAgent(String trackingId) {
Shipment shipment = shipments.get(trackingId);
for (Agent a : agents) {
if (a.assign()) {
shipment.agent = a;
return a.name;
}
}
return null;
}
void updateStatus(String trackingId, String status) {
Shipment shipment = shipments.get(trackingId);
if (shipment != null) {
shipment.updateStatus(status);
}
}
Shipment getShipment(String trackingId) {
return shipments.get(trackingId);
}
}
// =============================== DEMO RUN ===============================================
public class Main {
public static void main(String[] args) {
LogisticsManager manager = LogisticsManager.getInstance();
String tid = manager.createShipment("Alice", "Bob", "NY", "LA", 10, 450);
System.out.println("Tracking ID: " + tid);
String agent = manager.assignAgent(tid);
System.out.println("Assigned Agent: " + agent);
manager.updateStatus(tid, "In-Transit");
Shipment s = manager.getShipment(tid);
System.out.println("Status: " + s.status);
System.out.println("Cost: " + s.cost);
}
}