mirror of https://github.com/apache/activemq.git
Added support for browsing Topics
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@381644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8ee9b45484
commit
2748ae1612
|
@ -2,110 +2,38 @@
|
|||
*
|
||||
* Copyright 2005-2006 The Apache Software Foundation
|
||||
*
|
||||
* Licensed 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
|
||||
* Licensed 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.
|
||||
* 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.broker.jmx;
|
||||
|
||||
import javax.management.openmbean.CompositeData;
|
||||
import javax.management.openmbean.CompositeDataSupport;
|
||||
import javax.management.openmbean.CompositeType;
|
||||
import javax.management.openmbean.OpenDataException;
|
||||
import javax.management.openmbean.TabularData;
|
||||
import javax.management.openmbean.TabularDataSupport;
|
||||
import javax.management.openmbean.TabularType;
|
||||
|
||||
import org.apache.activemq.broker.jmx.OpenTypeSupport.OpenTypeFactory;
|
||||
import org.apache.activemq.broker.region.Queue;
|
||||
import org.apache.activemq.command.ActiveMQMessage;
|
||||
import org.apache.activemq.command.Message;
|
||||
|
||||
public class QueueView implements QueueViewMBean {
|
||||
|
||||
private final Queue destination;
|
||||
|
||||
public class QueueView extends DestinationView implements QueueViewMBean{
|
||||
public QueueView(Queue destination){
|
||||
this.destination = destination;
|
||||
super(destination);
|
||||
}
|
||||
|
||||
public void gc() {
|
||||
destination.gc();
|
||||
}
|
||||
public void resetStatistics() {
|
||||
destination.getDestinationStatistics().reset();
|
||||
}
|
||||
|
||||
public long getEnqueueCount() {
|
||||
return destination.getDestinationStatistics().getEnqueues().getCount();
|
||||
|
||||
}
|
||||
public long getDequeueCount() {
|
||||
return destination.getDestinationStatistics().getDequeues().getCount();
|
||||
}
|
||||
|
||||
public long getConsumerCount() {
|
||||
return destination.getDestinationStatistics().getConsumers().getCount();
|
||||
}
|
||||
|
||||
public long getMessages() {
|
||||
return destination.getDestinationStatistics().getMessages().getCount();
|
||||
}
|
||||
|
||||
public long getMessagesCached() {
|
||||
return destination.getDestinationStatistics().getMessagesCached().getCount();
|
||||
}
|
||||
|
||||
public CompositeData[] browse() throws OpenDataException {
|
||||
Message[] messages = destination.browse();
|
||||
CompositeData c[] = new CompositeData[messages.length];
|
||||
for (int i = 0; i < c.length; i++) {
|
||||
try {
|
||||
c[i] = OpenTypeSupport.convert(messages[i]);
|
||||
} catch (Throwable e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
return c;
|
||||
}
|
||||
|
||||
public TabularData browseAsTable() throws OpenDataException {
|
||||
OpenTypeFactory factory = OpenTypeSupport.getFactory(ActiveMQMessage.class);
|
||||
|
||||
Message[] messages = destination.browse();
|
||||
CompositeType ct = factory.getCompositeType();
|
||||
TabularType tt = new TabularType("MessageList", "MessageList", ct, new String[]{"JMSMessageID"});
|
||||
TabularDataSupport rc = new TabularDataSupport(tt);
|
||||
for (int i = 0; i < messages.length; i++) {
|
||||
rc.put(new CompositeDataSupport(ct, factory.getFields(messages[i])));
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
||||
public CompositeData getMessage(String messageId) throws OpenDataException{
|
||||
Message rc = destination.getMessage(messageId);
|
||||
Message rc=((Queue) destination).getMessage(messageId);
|
||||
if(rc==null)
|
||||
return null;
|
||||
return OpenTypeSupport.convert(rc);
|
||||
}
|
||||
|
||||
public void removeMessage(String messageId){
|
||||
destination.removeMessage(messageId);
|
||||
((Queue) destination).removeMessage(messageId);
|
||||
}
|
||||
|
||||
public void purge(){
|
||||
destination.purge();
|
||||
((Queue) destination).purge();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -2,55 +2,21 @@
|
|||
*
|
||||
* Copyright 2005-2006 The Apache Software Foundation
|
||||
*
|
||||
* Licensed 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
|
||||
* Licensed 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.
|
||||
* 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.broker.jmx;
|
||||
|
||||
import org.apache.activemq.broker.region.Topic;
|
||||
|
||||
public class TopicView implements TopicViewMBean {
|
||||
|
||||
private final Topic destination;
|
||||
public class TopicView extends DestinationView implements TopicViewMBean{
|
||||
|
||||
public TopicView(Topic destination){
|
||||
this.destination = destination;
|
||||
super(destination);
|
||||
}
|
||||
|
||||
public void gc() {
|
||||
destination.gc();
|
||||
}
|
||||
public void resetStatistics() {
|
||||
destination.getDestinationStatistics().reset();
|
||||
}
|
||||
|
||||
public long getEnqueueCount() {
|
||||
return destination.getDestinationStatistics().getEnqueues().getCount();
|
||||
|
||||
}
|
||||
public long getDequeueCount() {
|
||||
return destination.getDestinationStatistics().getDequeues().getCount();
|
||||
}
|
||||
|
||||
public long getConsumerCount() {
|
||||
return destination.getDestinationStatistics().getConsumers().getCount();
|
||||
}
|
||||
|
||||
public long getMessages() {
|
||||
return destination.getDestinationStatistics().getMessages().getCount();
|
||||
}
|
||||
|
||||
public long getMessagesCached() {
|
||||
return destination.getDestinationStatistics().getMessagesCached().getCount();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -16,6 +16,10 @@
|
|||
*/
|
||||
package org.apache.activemq.broker.jmx;
|
||||
|
||||
import javax.management.openmbean.CompositeData;
|
||||
import javax.management.openmbean.OpenDataException;
|
||||
import javax.management.openmbean.TabularData;
|
||||
|
||||
|
||||
public interface TopicViewMBean {
|
||||
|
||||
|
@ -28,4 +32,7 @@ public interface TopicViewMBean {
|
|||
public long getMessages();
|
||||
public long getMessagesCached();
|
||||
|
||||
public CompositeData[] browse() throws OpenDataException;
|
||||
public TabularData browseAsTable() throws OpenDataException;
|
||||
|
||||
}
|
|
@ -52,4 +52,6 @@ public interface Destination extends Service {
|
|||
DestinationStatistics getDestinationStatistics();
|
||||
MessageStore getMessageStore();
|
||||
DeadLetterStrategy getDeadLetterStrategy();
|
||||
|
||||
public Message[] browse();
|
||||
}
|
|
@ -98,6 +98,9 @@ public class Queue implements Destination {
|
|||
public void recoverMessageReference(String messageReference) throws Throwable {
|
||||
throw new RuntimeException("Should not be called.");
|
||||
}
|
||||
|
||||
public void finished(){
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
package org.apache.activemq.broker.region;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import java.util.Set;
|
||||
import org.apache.activemq.advisory.AdvisorySupport;
|
||||
import org.apache.activemq.broker.ConnectionContext;
|
||||
import org.apache.activemq.broker.region.policy.DeadLetterStrategy;
|
||||
|
@ -41,9 +41,11 @@ import org.apache.activemq.thread.TaskRunnerFactory;
|
|||
import org.apache.activemq.thread.Valve;
|
||||
import org.apache.activemq.transaction.Synchronization;
|
||||
import org.apache.activemq.util.SubscriptionKey;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import edu.emory.mathcs.backport.java.util.concurrent.ConcurrentHashMap;
|
||||
import edu.emory.mathcs.backport.java.util.concurrent.CopyOnWriteArrayList;
|
||||
import edu.emory.mathcs.backport.java.util.concurrent.CopyOnWriteArraySet;
|
||||
|
||||
/**
|
||||
* The Topic is a destination that sends a copy of a message to every active
|
||||
|
@ -52,7 +54,7 @@ import edu.emory.mathcs.backport.java.util.concurrent.CopyOnWriteArrayList;
|
|||
* @version $Revision: 1.21 $
|
||||
*/
|
||||
public class Topic implements Destination {
|
||||
|
||||
private static final Log log = LogFactory.getLog(Topic.class);
|
||||
protected final ActiveMQDestination destination;
|
||||
protected final CopyOnWriteArrayList consumers = new CopyOnWriteArrayList();
|
||||
protected final Valve dispatchValve = new Valve(true);
|
||||
|
@ -196,6 +198,9 @@ public class Topic implements Destination {
|
|||
public void recoverMessageReference(String messageReference) throws Throwable {
|
||||
throw new RuntimeException("Should not be called.");
|
||||
}
|
||||
|
||||
public void finished(){
|
||||
}
|
||||
});
|
||||
|
||||
if( true && subscription.getConsumerInfo().isRetroactive() ) {
|
||||
|
@ -291,6 +296,30 @@ public class Topic implements Destination {
|
|||
this.subscriptionRecoveryPolicy.stop();
|
||||
}
|
||||
|
||||
public Message[] browse(){
|
||||
final Set result=new CopyOnWriteArraySet();
|
||||
try{
|
||||
store.recover(new MessageRecoveryListener(){
|
||||
public void recoverMessage(Message message) throws Throwable{
|
||||
result.add(message);
|
||||
}
|
||||
|
||||
public void recoverMessageReference(String messageReference) throws Throwable{}
|
||||
|
||||
public void finished(){}
|
||||
});
|
||||
Message[] msgs=subscriptionRecoveryPolicy.browse(getActiveMQDestination());
|
||||
if(msgs!=null){
|
||||
for(int i=0;i<msgs.length;i++){
|
||||
result.add(msgs[i]);
|
||||
}
|
||||
}
|
||||
}catch(Throwable e){
|
||||
log.warn("Failed to browse Topic: "+getActiveMQDestination().getPhysicalName(),e);
|
||||
}
|
||||
return (Message[]) result.toArray(new Message[result.size()]);
|
||||
}
|
||||
|
||||
// Properties
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -2,36 +2,35 @@
|
|||
*
|
||||
* Copyright 2005-2006 The Apache Software Foundation
|
||||
*
|
||||
* Licensed 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
|
||||
* Licensed 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.
|
||||
* 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.broker.region.policy;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import org.apache.activemq.broker.ConnectionContext;
|
||||
import org.apache.activemq.broker.region.MessageReference;
|
||||
import org.apache.activemq.broker.region.Subscription;
|
||||
import org.apache.activemq.broker.region.Topic;
|
||||
import org.apache.activemq.command.ActiveMQDestination;
|
||||
import org.apache.activemq.command.Message;
|
||||
import org.apache.activemq.filter.DestinationFilter;
|
||||
import org.apache.activemq.filter.MessageEvaluationContext;
|
||||
|
||||
/**
|
||||
* This implementation of {@link SubscriptionRecoveryPolicy} will only keep
|
||||
* the last message.
|
||||
* This implementation of {@link SubscriptionRecoveryPolicy} will only keep the last message.
|
||||
*
|
||||
* @org.apache.xbean.XBean
|
||||
*
|
||||
* @version $Revision$
|
||||
*/
|
||||
public class FixedCountSubscriptionRecoveryPolicy implements SubscriptionRecoveryPolicy{
|
||||
|
||||
volatile private MessageReference messages[];
|
||||
private int maximumSize=100;
|
||||
private int tail=0;
|
||||
|
@ -52,7 +51,6 @@ public class FixedCountSubscriptionRecoveryPolicy implements SubscriptionRecover
|
|||
// Well the buffer is really empty then.
|
||||
if(messages[t]==null)
|
||||
return;
|
||||
|
||||
// Keep dispatching until t hit's tail again.
|
||||
MessageEvaluationContext msgContext=context.getMessageEvaluationContext();
|
||||
do{
|
||||
|
@ -70,7 +68,6 @@ public class FixedCountSubscriptionRecoveryPolicy implements SubscriptionRecover
|
|||
if(t>=messages.length)
|
||||
t=0;
|
||||
}while(t!=tail);
|
||||
|
||||
}
|
||||
|
||||
public void start() throws Exception{
|
||||
|
@ -92,5 +89,24 @@ public class FixedCountSubscriptionRecoveryPolicy implements SubscriptionRecover
|
|||
this.maximumSize=maximumSize;
|
||||
}
|
||||
|
||||
|
||||
public Message[] browse(ActiveMQDestination destination) throws Throwable{
|
||||
List result=new ArrayList();
|
||||
DestinationFilter filter=DestinationFilter.parseFilter(destination);
|
||||
int t=tail;
|
||||
if(messages[t]==null)
|
||||
t=0;
|
||||
if(messages[t]!=null){
|
||||
do{
|
||||
MessageReference ref=messages[t];
|
||||
Message message=ref.getMessage();
|
||||
if(filter.matches(message.getDestination())){
|
||||
result.add(message);
|
||||
}
|
||||
t++;
|
||||
if(t>=messages.length)
|
||||
t=0;
|
||||
}while(t!=tail);
|
||||
}
|
||||
return (Message[]) result.toArray(new Message[result.size()]);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,11 +20,16 @@ import org.apache.activemq.broker.ConnectionContext;
|
|||
import org.apache.activemq.broker.region.MessageReference;
|
||||
import org.apache.activemq.broker.region.Subscription;
|
||||
import org.apache.activemq.broker.region.Topic;
|
||||
import org.apache.activemq.broker.region.policy.TimedSubscriptionRecoveryPolicy.TimestampWrapper;
|
||||
import org.apache.activemq.command.ActiveMQDestination;
|
||||
import org.apache.activemq.command.Message;
|
||||
import org.apache.activemq.filter.DestinationFilter;
|
||||
import org.apache.activemq.filter.MessageEvaluationContext;
|
||||
import org.apache.activemq.memory.list.DestinationBasedMessageList;
|
||||
import org.apache.activemq.memory.list.MessageList;
|
||||
import org.apache.activemq.memory.list.SimpleMessageList;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
|
@ -105,6 +110,10 @@ public class FixedSizedSubscriptionRecoveryPolicy implements SubscriptionRecover
|
|||
this.useSharedBuffer = useSharedBuffer;
|
||||
}
|
||||
|
||||
public Message[] browse(ActiveMQDestination destination) throws Throwable{
|
||||
return buffer.browse(destination);
|
||||
}
|
||||
|
||||
// Implementation methods
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
|
@ -16,10 +16,15 @@
|
|||
*/
|
||||
package org.apache.activemq.broker.region.policy;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import org.apache.activemq.broker.ConnectionContext;
|
||||
import org.apache.activemq.broker.region.MessageReference;
|
||||
import org.apache.activemq.broker.region.Subscription;
|
||||
import org.apache.activemq.broker.region.Topic;
|
||||
import org.apache.activemq.command.ActiveMQDestination;
|
||||
import org.apache.activemq.command.Message;
|
||||
import org.apache.activemq.filter.DestinationFilter;
|
||||
import org.apache.activemq.filter.MessageEvaluationContext;
|
||||
|
||||
/**
|
||||
|
@ -62,4 +67,13 @@ public class LastImageSubscriptionRecoveryPolicy implements SubscriptionRecovery
|
|||
public void stop() throws Exception {
|
||||
}
|
||||
|
||||
public Message[] browse(ActiveMQDestination destination) throws Throwable{
|
||||
List result = new ArrayList();
|
||||
DestinationFilter filter=DestinationFilter.parseFilter(destination);
|
||||
if (filter.matches(lastImage.getMessage().getDestination())){
|
||||
result.add(lastImage.getMessage());
|
||||
}
|
||||
return (Message[])result.toArray(new Message[result.size()]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -20,6 +20,8 @@ import org.apache.activemq.broker.ConnectionContext;
|
|||
import org.apache.activemq.broker.region.MessageReference;
|
||||
import org.apache.activemq.broker.region.Subscription;
|
||||
import org.apache.activemq.broker.region.Topic;
|
||||
import org.apache.activemq.command.ActiveMQDestination;
|
||||
import org.apache.activemq.command.Message;
|
||||
|
||||
/**
|
||||
* This is the default Topic recovery policy which does not recover any messages.
|
||||
|
@ -43,4 +45,8 @@ public class NoSubscriptionRecoveryPolicy implements SubscriptionRecoveryPolicy
|
|||
public void stop() throws Exception {
|
||||
}
|
||||
|
||||
public Message[] browse(ActiveMQDestination dest) throws Throwable{
|
||||
return new Message[0];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -99,6 +99,10 @@ public class QueryBasedSubscriptionRecoveryPolicy implements SubscriptionRecover
|
|||
this.query = query;
|
||||
}
|
||||
|
||||
public org.apache.activemq.command.Message[] browse(ActiveMQDestination dest) throws Throwable{
|
||||
return new org.apache.activemq.command.Message[0];
|
||||
}
|
||||
|
||||
protected void dispatchInitialMessage(Message message, Destination regionDestination, MessageEvaluationContext msgContext, Subscription sub) {
|
||||
try {
|
||||
ActiveMQMessage activeMessage = ActiveMQMessageTransformation.transformMessage(message, null);
|
||||
|
|
|
@ -16,11 +16,14 @@
|
|||
*/
|
||||
package org.apache.activemq.broker.region.policy;
|
||||
|
||||
|
||||
import org.apache.activemq.Service;
|
||||
import org.apache.activemq.broker.ConnectionContext;
|
||||
import org.apache.activemq.broker.region.MessageReference;
|
||||
import org.apache.activemq.broker.region.Subscription;
|
||||
import org.apache.activemq.broker.region.Topic;
|
||||
import org.apache.activemq.command.ActiveMQDestination;
|
||||
import org.apache.activemq.command.Message;
|
||||
|
||||
/**
|
||||
* Abstraction to allow different recovery policies to be plugged
|
||||
|
@ -35,8 +38,9 @@ public interface SubscriptionRecoveryPolicy extends Service {
|
|||
* A message was sent to the destination.
|
||||
*
|
||||
* @param context
|
||||
* @param message
|
||||
* @param node
|
||||
* @return TODO
|
||||
* @return true if successful
|
||||
* @throws Throwable
|
||||
*/
|
||||
boolean add(ConnectionContext context, MessageReference message) throws Throwable;
|
||||
|
@ -45,11 +49,19 @@ public interface SubscriptionRecoveryPolicy extends Service {
|
|||
* Let a subscription recover message held by the policy.
|
||||
*
|
||||
* @param context
|
||||
* @param topic TODO
|
||||
* @param topic
|
||||
* @param sub
|
||||
* @param node
|
||||
* @throws Throwable
|
||||
*/
|
||||
void recover(ConnectionContext context, Topic topic, Subscription sub) throws Throwable;
|
||||
|
||||
|
||||
/**
|
||||
* @param dest
|
||||
* @return messages
|
||||
* @throws Throwable
|
||||
*/
|
||||
Message[] browse(ActiveMQDestination dest) throws Throwable;
|
||||
|
||||
}
|
||||
|
|
|
@ -16,18 +16,20 @@
|
|||
*/
|
||||
package org.apache.activemq.broker.region.policy;
|
||||
|
||||
import org.apache.activemq.broker.ConnectionContext;
|
||||
import org.apache.activemq.broker.region.MessageReference;
|
||||
import org.apache.activemq.broker.region.Subscription;
|
||||
import org.apache.activemq.broker.region.Topic;
|
||||
import org.apache.activemq.filter.MessageEvaluationContext;
|
||||
import org.apache.activemq.thread.Scheduler;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import org.apache.activemq.broker.ConnectionContext;
|
||||
import org.apache.activemq.broker.region.MessageReference;
|
||||
import org.apache.activemq.broker.region.Subscription;
|
||||
import org.apache.activemq.broker.region.Topic;
|
||||
import org.apache.activemq.command.ActiveMQDestination;
|
||||
import org.apache.activemq.command.Message;
|
||||
import org.apache.activemq.filter.DestinationFilter;
|
||||
import org.apache.activemq.filter.MessageEvaluationContext;
|
||||
import org.apache.activemq.thread.Scheduler;
|
||||
|
||||
/**
|
||||
* This implementation of {@link SubscriptionRecoveryPolicy} will keep a timed
|
||||
|
@ -123,4 +125,19 @@ public class TimedSubscriptionRecoveryPolicy implements SubscriptionRecoveryPoli
|
|||
this.recoverDuration = recoverDuration;
|
||||
}
|
||||
|
||||
public Message[] browse(ActiveMQDestination destination) throws Throwable{
|
||||
List result = new ArrayList();
|
||||
ArrayList copy = new ArrayList(buffer);
|
||||
DestinationFilter filter=DestinationFilter.parseFilter(destination);
|
||||
for (Iterator iter = copy.iterator(); iter.hasNext();) {
|
||||
TimestampWrapper timestampWrapper = (TimestampWrapper) iter.next();
|
||||
MessageReference ref = timestampWrapper.message;
|
||||
Message message=ref.getMessage();
|
||||
if (filter.matches(message.getDestination())){
|
||||
result.add(message);
|
||||
}
|
||||
}
|
||||
return (Message[]) result.toArray(new Message[result.size()]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -22,11 +22,11 @@ import java.util.Iterator;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
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.ActiveMQMessage;
|
||||
import org.apache.activemq.command.Message;
|
||||
import org.apache.activemq.filter.DestinationMap;
|
||||
import org.apache.activemq.memory.buffer.MessageBuffer;
|
||||
import org.apache.activemq.memory.buffer.MessageQueue;
|
||||
|
@ -70,9 +70,13 @@ public class DestinationBasedMessageList implements MessageList {
|
|||
}
|
||||
|
||||
public List getMessages(Subscription sub) {
|
||||
return getMessages(sub.getConsumerInfo().getDestination());
|
||||
}
|
||||
|
||||
protected List getMessages(ActiveMQDestination destination) {
|
||||
Set set = null;
|
||||
synchronized (lock) {
|
||||
set = subscriptionIndex.get(sub.getConsumerInfo().getDestination());
|
||||
set = subscriptionIndex.get(destination);
|
||||
}
|
||||
List answer = new ArrayList();
|
||||
for (Iterator iter = set.iterator(); iter.hasNext();) {
|
||||
|
@ -82,6 +86,12 @@ public class DestinationBasedMessageList implements MessageList {
|
|||
return answer;
|
||||
}
|
||||
|
||||
public Message[] browse(ActiveMQDestination destination) {
|
||||
List result = getMessages(destination);
|
||||
return (Message[])result.toArray(new Message[result.size()]);
|
||||
}
|
||||
|
||||
|
||||
public void clear() {
|
||||
messageBuffer.clear();
|
||||
}
|
||||
|
|
|
@ -18,6 +18,8 @@ package org.apache.activemq.memory.list;
|
|||
|
||||
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 java.util.List;
|
||||
|
||||
|
@ -36,5 +38,13 @@ public interface MessageList {
|
|||
*/
|
||||
List getMessages(Subscription sub);
|
||||
|
||||
/**
|
||||
* @param destination
|
||||
* @return an array of Messages that match the destination
|
||||
*/
|
||||
Message[] browse(ActiveMQDestination destination);
|
||||
|
||||
void clear();
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -18,8 +18,16 @@ package org.apache.activemq.memory.list;
|
|||
|
||||
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.apache.activemq.filter.DestinationFilter;
|
||||
import org.apache.activemq.network.DemandForwardingBridge;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
|
||||
|
@ -32,7 +40,7 @@ import java.util.List;
|
|||
* @version $Revision: 1.1 $
|
||||
*/
|
||||
public class SimpleMessageList implements MessageList {
|
||||
|
||||
static final private Log log=LogFactory.getLog(SimpleMessageList.class);
|
||||
private LinkedList list = new LinkedList();
|
||||
private int maximumSize = 100 * 64 * 1024;
|
||||
private int size;
|
||||
|
@ -61,6 +69,27 @@ public class SimpleMessageList implements MessageList {
|
|||
return getList();
|
||||
}
|
||||
|
||||
public Message[] browse(ActiveMQDestination destination) {
|
||||
List result = new ArrayList();
|
||||
DestinationFilter filter=DestinationFilter.parseFilter(destination);
|
||||
synchronized(lock){
|
||||
for (Iterator i = list.iterator(); i.hasNext();){
|
||||
MessageReference ref = (MessageReference)i.next();
|
||||
Message msg;
|
||||
try{
|
||||
msg=ref.getMessage();
|
||||
if (filter.matches(msg.getDestination())){
|
||||
result.add(msg);
|
||||
}
|
||||
}catch(IOException e){
|
||||
log.error("Failed to get Message from MessageReference: " + ref,e);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
return (Message[])result.toArray(new Message[result.size()]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a copy of the list
|
||||
*/
|
||||
|
|
|
@ -24,4 +24,5 @@ import org.apache.activemq.command.Message;
|
|||
public interface MessageRecoveryListener {
|
||||
void recoverMessage(Message message) throws Throwable;
|
||||
void recoverMessageReference(String messageReference) throws Throwable;
|
||||
void finished();
|
||||
}
|
||||
|
|
|
@ -25,4 +25,5 @@ import java.io.IOException;
|
|||
public interface JDBCMessageRecoveryListener {
|
||||
void recoverMessage(long sequenceId, byte[] message) throws IOException, Throwable;
|
||||
void recoverMessageReference(String reference) throws IOException, Throwable;
|
||||
void finished();
|
||||
}
|
||||
|
|
|
@ -158,6 +158,9 @@ public class JDBCMessageStore implements MessageStore {
|
|||
public void recoverMessageReference(String reference) throws IOException, Throwable {
|
||||
listener.recoverMessageReference(reference);
|
||||
}
|
||||
public void finished(){
|
||||
listener.finished();
|
||||
}
|
||||
});
|
||||
} catch (SQLException e) {
|
||||
JDBCPersistenceAdapter.log("JDBC Failure: ",e);
|
||||
|
|
|
@ -75,6 +75,10 @@ public class JDBCTopicMessageStore extends JDBCMessageStore implements TopicMess
|
|||
public void recoverMessageReference(String reference) throws IOException, Throwable {
|
||||
listener.recoverMessageReference(reference);
|
||||
}
|
||||
|
||||
public void finished(){
|
||||
listener.finished();
|
||||
}
|
||||
});
|
||||
} catch (SQLException e) {
|
||||
JDBCPersistenceAdapter.log("JDBC Failure: ",e);
|
||||
|
|
|
@ -337,11 +337,11 @@ public class DefaultJDBCAdapter implements JDBCAdapter {
|
|||
listener.recoverMessage(rs.getLong(1), getBinaryData(rs, 2));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
finally {
|
||||
close(rs);
|
||||
close(s);
|
||||
listener.finished();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -402,7 +402,9 @@ public class DefaultJDBCAdapter implements JDBCAdapter {
|
|||
finally {
|
||||
close(rs);
|
||||
close(s);
|
||||
listener.finished();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -360,6 +360,10 @@ public class QuickJournalMessageStore implements MessageStore {
|
|||
Message message = (Message) peristenceAdapter.readCommand(loc);
|
||||
listener.recoverMessage(message);
|
||||
}
|
||||
|
||||
public void finished(){
|
||||
listener.finished();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -63,6 +63,10 @@ public class QuickJournalTopicMessageStore extends QuickJournalMessageStore impl
|
|||
Message message = (Message) peristenceAdapter.readCommand(loc);
|
||||
listener.recoverMessage(message);
|
||||
}
|
||||
|
||||
public void finished(){
|
||||
listener.finished();
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
|
|
@ -82,6 +82,7 @@ public class MemoryMessageStore implements MessageStore {
|
|||
listener.recoverMessage((Message) msg);
|
||||
}
|
||||
}
|
||||
listener.finished();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -107,6 +107,7 @@ public class MemoryTopicMessageStore extends MemoryMessageStore implements Topic
|
|||
pastLastAck=entry.getKey().equals(lastAck);
|
||||
}
|
||||
}
|
||||
listener.finished();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue