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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
/*
* Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
* Copyright (C) 2021 cyoung06
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package kr.syeyoung.dungeonsguide.mod.stomp;
import lombok.Getter;
import net.minecraftforge.common.MinecraftForge;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.java_websocket.client.WebSocketClient;
import org.java_websocket.handshake.ServerHandshake;
import java.net.URI;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
public class StompClient extends WebSocketClient {
Logger logger = LogManager.getLogger("StompClient");
public StompClient(URI serverUri, final String token) throws InterruptedException {
super(serverUri);
addHeader("Authorization", token);
logger.info("connecting websocket");
if (!connectBlocking()) {
throw new FailedWebSocketConnection("Cant connect to ws");
}
logger.info("connected, stomp handshake");
while(this.stompClientStatus == StompClientStatus.CONNECTING);
logger.info("fully connected");
}
@Getter
private volatile StompClientStatus stompClientStatus = StompClientStatus.CONNECTING;
@Getter
private StompPayload errorPayload;
private ScheduledFuture heartbeat = null;
private static final ScheduledExecutorService ex = Executors.newScheduledThreadPool(1);
@Override
public void onOpen(ServerHandshake handshakedata) {
send(new StompPayload().method(StompHeader.CONNECT)
.header("accept-version","1.2")
.header("heart-beat", "30000,30000")
.header("host",uri.getHost()).getBuilt()
);
}
@Override
public void onMessage(String message) {
try {
StompPayload payload = StompPayload.parse(message);
switch (payload.method()){
case SEND:
case SUBSCRIBE:
case UNSUBSCRIBE:
case BEGIN:
case COMMIT:
case ABORT:
case ACK:
case NACK:
case DISCONNECT:
case STOMP:
break;
case CONNECTED:
stompClientStatus = StompClientStatus.CONNECTED;
String serverHeartbeat = payload.headers().get("heart-beat");
if (serverHeartbeat != null) {
int heartbeatMS = 30;
this.heartbeat = ex.scheduleAtFixedRate(() -> send("\n"), heartbeatMS-1, heartbeatMS-1, TimeUnit.SECONDS);
}
break;
case MESSAGE:
String subscriptionName = payload.headers().get("subscription");
int subscriptionId = Integer.parseInt(subscriptionName);
StompSubscription listener = stompSubscriptionMap.get(subscriptionId);
listener.process(this, payload.payload());
break;
case RECEIPT:
String receiptId = payload.headers().get("receipt-id");
StompPayload payload1 = receiptMap.remove(Integer.parseInt(receiptId));
if (payload1.method() == StompHeader.DISCONNECT) {
stompClientStatus = StompClientStatus.DISCONNECTED;
close();
}
break;
case ERROR:
errorPayload = payload;
stompClientStatus = StompClientStatus.ERROR;
this.close();
break;
}
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void onClose(int code, String reason, boolean remote) {
if (heartbeat != null) heartbeat.cancel(true);
MinecraftForge.EVENT_BUS.post(new StompDiedEvent(code, reason, remote));
}
@Override
public void onError(Exception ex) {
if(ex != null){
ex.printStackTrace();
}
}
private final Map<Integer, StompSubscription> stompSubscriptionMap = new HashMap<>();
private final Map<Integer, StompPayload> receiptMap = new HashMap<>();
private int idIncrement = 0;
private void makeSureStompIsConnected() {
if (stompClientStatus != StompClientStatus.CONNECTED) throw new IllegalStateException("not connected");
}
public void sendfake(StompPayload payload) {
makeSureStompIsConnected();
payload.method(StompHeader.SEND);
if (payload.headers().get("receipt") != null)
receiptMap.put(Integer.parseInt(payload.headers().get("receipt")), payload);
send(payload.getBuilt());
}
public void subscribe(String destination, StompSubscription listener) {
makeSureStompIsConnected();
int id = ++idIncrement;
send(new StompPayload()
.method(StompHeader.SUBSCRIBE)
.header("id", String.valueOf(id))
.destination(destination)
.header("ack", "auto")
.getBuilt()
);
stompSubscriptionMap.put(id, listener);
}
public void disconnect() {
makeSureStompIsConnected();
stompClientStatus =StompClientStatus.DISCONNECTING;
StompPayload stompPayload = new StompPayload().method(StompHeader.DISCONNECT).header("receipt", String.valueOf(++idIncrement));
send(stompPayload.getBuilt());
receiptMap.put(idIncrement, stompPayload);
}
public enum StompClientStatus {
CONNECTING, CONNECTED, ERROR, DISCONNECTING, DISCONNECTED
}
}
|