ARTEMIS-1175 Fixing Memory Leak
This commit is contained in:
parent
b136fed48f
commit
f63ffc7af5
|
@ -128,7 +128,7 @@ public class MQTTSessionState {
|
|||
|
||||
public class OutboundStore {
|
||||
|
||||
private HashMap<String, Integer> artemisToMqttMessageMap = new HashMap<>();
|
||||
private HashMap<Pair<Long, Long>, Integer> artemisToMqttMessageMap = new HashMap<>();
|
||||
|
||||
private HashMap<Integer, Pair<Long, Long>> mqttToServerIds = new HashMap<>();
|
||||
|
||||
|
@ -136,9 +136,13 @@ public class MQTTSessionState {
|
|||
|
||||
private final AtomicInteger ids = new AtomicInteger(0);
|
||||
|
||||
public int generateMqttId(long serverId, long consumerId) {
|
||||
private Pair<Long, Long> generateKey(long messageId, long consumerID) {
|
||||
return new Pair<>(messageId, consumerID);
|
||||
}
|
||||
|
||||
public int generateMqttId(long messageId, long consumerId) {
|
||||
synchronized (dataStoreLock) {
|
||||
Integer id = artemisToMqttMessageMap.get(consumerId + ":" + serverId);
|
||||
Integer id = artemisToMqttMessageMap.get(generateKey(messageId, consumerId));
|
||||
if (id == null) {
|
||||
ids.compareAndSet(Short.MAX_VALUE, 1);
|
||||
id = ids.addAndGet(1);
|
||||
|
@ -147,10 +151,11 @@ public class MQTTSessionState {
|
|||
}
|
||||
}
|
||||
|
||||
public void publish(int mqtt, long serverId, long consumerId) {
|
||||
public void publish(int mqtt, long messageId, long consumerId) {
|
||||
synchronized (dataStoreLock) {
|
||||
artemisToMqttMessageMap.put(consumerId + ":" + serverId, mqtt);
|
||||
mqttToServerIds.put(mqtt, new Pair(serverId, consumerId));
|
||||
Pair<Long, Long> key = generateKey(messageId, consumerId);
|
||||
artemisToMqttMessageMap.put(key, mqtt);
|
||||
mqttToServerIds.put(mqtt, key);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -159,7 +164,7 @@ public class MQTTSessionState {
|
|||
Pair p = mqttToServerIds.remove(mqtt);
|
||||
if (p != null) {
|
||||
mqttToServerIds.remove(p.getA());
|
||||
artemisToMqttMessageMap.remove(p.getB() + ":" + p.getA());
|
||||
artemisToMqttMessageMap.remove(p);
|
||||
}
|
||||
return p;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue