This repository has been archived by the owner on Apr 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDiscardingDLQBroker.java
143 lines (123 loc) · 4.9 KB
/
DiscardingDLQBroker.java
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
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.plugin;
import java.util.regex.Pattern;
import org.apache.activemq.broker.Broker;
import org.apache.activemq.broker.BrokerFilter;
import org.apache.activemq.broker.ConnectionContext;
import org.apache.activemq.broker.region.MessageReference;
import org.apache.activemq.broker.region.Subscription;
import org.apache.activemq.command.ActiveMQDestination;
import org.apache.activemq.command.Message;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*/
public class DiscardingDLQBroker extends BrokerFilter {
public static Logger log = LoggerFactory.getLogger(DiscardingDLQBroker.class);
private boolean dropTemporaryTopics = true;
private boolean dropTemporaryQueues = true;
private boolean dropAll = true;
private Pattern[] destFilter;
private int reportInterval = 1000;
private long dropCount = 0;
public DiscardingDLQBroker(Broker next) {
super(next);
}
@Override
public boolean sendToDeadLetterQueue(ConnectionContext ctx, MessageReference msgRef, Subscription subscription, Throwable poisonCause) {
if (log.isTraceEnabled()) {
log.trace("Discarding DLQ BrokerFilter[pass through] - skipping message:" + (msgRef != null ? msgRef.getMessage() : null));
}
boolean dropped = true;
Message msg = null;
ActiveMQDestination dest = null;
String destName = null;
msg = msgRef.getMessage();
dest = msg.getDestination();
destName = dest.getPhysicalName();
if (dest == null || destName == null) {
// do nothing, no need to forward it
skipMessage("NULL DESTINATION", msgRef);
} else if (dropAll) {
// do nothing
skipMessage("dropAll", msgRef);
} else if (dropTemporaryTopics && dest.isTemporary() && dest.isTopic()) {
// do nothing
skipMessage("dropTemporaryTopics", msgRef);
} else if (dropTemporaryQueues && dest.isTemporary() && dest.isQueue()) {
// do nothing
skipMessage("dropTemporaryQueues", msgRef);
} else if (destFilter != null && matches(destName)) {
// do nothing
skipMessage("dropOnly", msgRef);
} else {
dropped = false;
return next.sendToDeadLetterQueue(ctx, msgRef, subscription, poisonCause);
}
if (dropped && getReportInterval() > 0) {
if ((++dropCount) % getReportInterval() == 0) {
log.info("Total of " + dropCount + " messages were discarded, since their destination was the dead letter queue");
}
}
return false;
}
public boolean matches(String destName) {
for (int i = 0; destFilter != null && i < destFilter.length; i++) {
if (destFilter[i] != null && destFilter[i].matcher(destName).matches()) {
return true;
}
}
return false;
}
private void skipMessage(String prefix, MessageReference msgRef) {
if (log.isDebugEnabled()) {
String lmsg = "Discarding DLQ BrokerFilter[" + prefix + "] - skipping message:" + (msgRef != null ? msgRef.getMessage() : null);
log.debug(lmsg);
}
}
public void setDropTemporaryTopics(boolean dropTemporaryTopics) {
this.dropTemporaryTopics = dropTemporaryTopics;
}
public void setDropTemporaryQueues(boolean dropTemporaryQueues) {
this.dropTemporaryQueues = dropTemporaryQueues;
}
public void setDropAll(boolean dropAll) {
this.dropAll = dropAll;
}
public void setDestFilter(Pattern[] destFilter) {
this.destFilter = destFilter;
}
public void setReportInterval(int reportInterval) {
this.reportInterval = reportInterval;
}
public boolean isDropTemporaryTopics() {
return dropTemporaryTopics;
}
public boolean isDropTemporaryQueues() {
return dropTemporaryQueues;
}
public boolean isDropAll() {
return dropAll;
}
public Pattern[] getDestFilter() {
return destFilter;
}
public int getReportInterval() {
return reportInterval;
}
}