mirror of
https://github.com/apache/activemq.git
synced 2025-02-17 07:24:51 +00:00
Modifying patch so that only stores that persist the noLocal flag will check if this flag has changed to prevent a subscription from being deleted by mistake (cherry picked from commit 18571ce09b6385d8560200928a353e9da1a1ffe4)
This commit is contained in:
parent
8bde32a07c
commit
e0c70b843f
@ -51,6 +51,8 @@ import org.apache.activemq.command.SubscriptionInfo;
|
|||||||
import org.apache.activemq.filter.MessageEvaluationContext;
|
import org.apache.activemq.filter.MessageEvaluationContext;
|
||||||
import org.apache.activemq.filter.NonCachedMessageEvaluationContext;
|
import org.apache.activemq.filter.NonCachedMessageEvaluationContext;
|
||||||
import org.apache.activemq.store.MessageRecoveryListener;
|
import org.apache.activemq.store.MessageRecoveryListener;
|
||||||
|
import org.apache.activemq.store.NoLocalSubscriptionAware;
|
||||||
|
import org.apache.activemq.store.PersistenceAdapter;
|
||||||
import org.apache.activemq.store.TopicMessageStore;
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
import org.apache.activemq.thread.Task;
|
import org.apache.activemq.thread.Task;
|
||||||
import org.apache.activemq.thread.TaskRunner;
|
import org.apache.activemq.thread.TaskRunner;
|
||||||
@ -211,7 +213,7 @@ public class Topic extends BaseDestination implements Task {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean hasDurableSubChanged(SubscriptionInfo info1, ConsumerInfo info2) {
|
private boolean hasDurableSubChanged(SubscriptionInfo info1, ConsumerInfo info2) throws IOException {
|
||||||
if (hasSelectorChanged(info1, info2)) {
|
if (hasSelectorChanged(info1, info2)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -219,9 +221,10 @@ public class Topic extends BaseDestination implements Task {
|
|||||||
return hasNoLocalChanged(info1, info2);
|
return hasNoLocalChanged(info1, info2);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean hasNoLocalChanged(SubscriptionInfo info1, ConsumerInfo info2) {
|
private boolean hasNoLocalChanged(SubscriptionInfo info1, ConsumerInfo info2) throws IOException {
|
||||||
// Prior to V11 the broker did not store the noLocal value for durable subs.
|
//Not all persistence adapters store the noLocal value for a subscription
|
||||||
if (brokerService.getStoreOpenWireVersion() >= 11) {
|
PersistenceAdapter adapter = broker.getBrokerService().getPersistenceAdapter();
|
||||||
|
if (adapter instanceof NoLocalSubscriptionAware) {
|
||||||
if (info1.isNoLocal() ^ info2.isNoLocal()) {
|
if (info1.isNoLocal() ^ info2.isNoLocal()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
package org.apache.activemq.broker.region;
|
package org.apache.activemq.broker.region;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
@ -40,6 +41,8 @@ import org.apache.activemq.command.ConsumerInfo;
|
|||||||
import org.apache.activemq.command.RemoveSubscriptionInfo;
|
import org.apache.activemq.command.RemoveSubscriptionInfo;
|
||||||
import org.apache.activemq.command.SessionId;
|
import org.apache.activemq.command.SessionId;
|
||||||
import org.apache.activemq.command.SubscriptionInfo;
|
import org.apache.activemq.command.SubscriptionInfo;
|
||||||
|
import org.apache.activemq.store.NoLocalSubscriptionAware;
|
||||||
|
import org.apache.activemq.store.PersistenceAdapter;
|
||||||
import org.apache.activemq.store.TopicMessageStore;
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
import org.apache.activemq.thread.TaskRunnerFactory;
|
import org.apache.activemq.thread.TaskRunnerFactory;
|
||||||
import org.apache.activemq.usage.SystemUsage;
|
import org.apache.activemq.usage.SystemUsage;
|
||||||
@ -373,15 +376,16 @@ public class TopicRegion extends AbstractRegion {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean hasDurableSubChanged(ConsumerInfo info1, ConsumerInfo info2) {
|
private boolean hasDurableSubChanged(ConsumerInfo info1, ConsumerInfo info2) throws IOException {
|
||||||
if (info1.getSelector() != null ^ info2.getSelector() != null) {
|
if (info1.getSelector() != null ^ info2.getSelector() != null) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (info1.getSelector() != null && !info1.getSelector().equals(info2.getSelector())) {
|
if (info1.getSelector() != null && !info1.getSelector().equals(info2.getSelector())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// Prior to V11 the broker did not store the noLocal value for durable subs.
|
//Not all persistence adapters store the noLocal value for a subscription
|
||||||
if (broker.getBrokerService().getStoreOpenWireVersion() >= 11) {
|
PersistenceAdapter adapter = broker.getBrokerService().getPersistenceAdapter();
|
||||||
|
if (adapter instanceof NoLocalSubscriptionAware) {
|
||||||
if (info1.isNoLocal() ^ info2.isNoLocal()) {
|
if (info1.isNoLocal() ^ info2.isNoLocal()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
/**
|
||||||
|
* 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.store;
|
||||||
|
|
||||||
|
public interface NoLocalSubscriptionAware {
|
||||||
|
|
||||||
|
public boolean isPersistNoLocal();
|
||||||
|
}
|
@ -31,6 +31,7 @@ import org.apache.activemq.command.ActiveMQQueue;
|
|||||||
import org.apache.activemq.command.ActiveMQTopic;
|
import org.apache.activemq.command.ActiveMQTopic;
|
||||||
import org.apache.activemq.command.ProducerId;
|
import org.apache.activemq.command.ProducerId;
|
||||||
import org.apache.activemq.store.MessageStore;
|
import org.apache.activemq.store.MessageStore;
|
||||||
|
import org.apache.activemq.store.NoLocalSubscriptionAware;
|
||||||
import org.apache.activemq.store.PersistenceAdapter;
|
import org.apache.activemq.store.PersistenceAdapter;
|
||||||
import org.apache.activemq.store.ProxyMessageStore;
|
import org.apache.activemq.store.ProxyMessageStore;
|
||||||
import org.apache.activemq.store.TopicMessageStore;
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
@ -42,7 +43,7 @@ import org.slf4j.LoggerFactory;
|
|||||||
/**
|
/**
|
||||||
* @org.apache.xbean.XBean
|
* @org.apache.xbean.XBean
|
||||||
*/
|
*/
|
||||||
public class MemoryPersistenceAdapter implements PersistenceAdapter {
|
public class MemoryPersistenceAdapter implements PersistenceAdapter, NoLocalSubscriptionAware {
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(MemoryPersistenceAdapter.class);
|
private static final Logger LOG = LoggerFactory.getLogger(MemoryPersistenceAdapter.class);
|
||||||
|
|
||||||
MemoryTransactionStore transactionStore;
|
MemoryTransactionStore transactionStore;
|
||||||
@ -241,4 +242,12 @@ public class MemoryPersistenceAdapter implements PersistenceAdapter {
|
|||||||
// We could eventuall implement an in memory scheduler.
|
// We could eventuall implement an in memory scheduler.
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.activemq.store.NoLocalSubscriptionAware#isPersistNoLocal()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean isPersistNoLocal() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,7 @@ import org.apache.activemq.command.XATransactionId;
|
|||||||
import org.apache.activemq.protobuf.Buffer;
|
import org.apache.activemq.protobuf.Buffer;
|
||||||
import org.apache.activemq.store.JournaledStore;
|
import org.apache.activemq.store.JournaledStore;
|
||||||
import org.apache.activemq.store.MessageStore;
|
import org.apache.activemq.store.MessageStore;
|
||||||
|
import org.apache.activemq.store.NoLocalSubscriptionAware;
|
||||||
import org.apache.activemq.store.PersistenceAdapter;
|
import org.apache.activemq.store.PersistenceAdapter;
|
||||||
import org.apache.activemq.store.SharedFileLocker;
|
import org.apache.activemq.store.SharedFileLocker;
|
||||||
import org.apache.activemq.store.TopicMessageStore;
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
@ -61,7 +62,9 @@ import org.apache.activemq.util.ServiceStopper;
|
|||||||
* @org.apache.xbean.XBean element="kahaDB"
|
* @org.apache.xbean.XBean element="kahaDB"
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class KahaDBPersistenceAdapter extends LockableServiceSupport implements PersistenceAdapter, JournaledStore, TransactionIdTransformerAware {
|
public class KahaDBPersistenceAdapter extends LockableServiceSupport implements PersistenceAdapter,
|
||||||
|
JournaledStore, TransactionIdTransformerAware, NoLocalSubscriptionAware {
|
||||||
|
|
||||||
private final KahaDBStore letter = new KahaDBStore();
|
private final KahaDBStore letter = new KahaDBStore();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -788,4 +791,12 @@ public class KahaDBPersistenceAdapter extends LockableServiceSupport implements
|
|||||||
public JobSchedulerStore createJobSchedulerStore() throws IOException, UnsupportedOperationException {
|
public JobSchedulerStore createJobSchedulerStore() throws IOException, UnsupportedOperationException {
|
||||||
return this.letter.createJobSchedulerStore();
|
return this.letter.createJobSchedulerStore();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.activemq.store.NoLocalSubscriptionAware#isPersistNoLocal()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean isPersistNoLocal() {
|
||||||
|
return this.letter.isPersistNoLocal();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,6 +63,7 @@ import org.apache.activemq.store.MessageRecoveryListener;
|
|||||||
import org.apache.activemq.store.MessageStore;
|
import org.apache.activemq.store.MessageStore;
|
||||||
import org.apache.activemq.store.MessageStoreStatistics;
|
import org.apache.activemq.store.MessageStoreStatistics;
|
||||||
import org.apache.activemq.store.MessageStoreSubscriptionStatistics;
|
import org.apache.activemq.store.MessageStoreSubscriptionStatistics;
|
||||||
|
import org.apache.activemq.store.NoLocalSubscriptionAware;
|
||||||
import org.apache.activemq.store.PersistenceAdapter;
|
import org.apache.activemq.store.PersistenceAdapter;
|
||||||
import org.apache.activemq.store.TopicMessageStore;
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
import org.apache.activemq.store.TransactionIdTransformer;
|
import org.apache.activemq.store.TransactionIdTransformer;
|
||||||
@ -86,7 +87,7 @@ import org.apache.activemq.wireformat.WireFormat;
|
|||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
public class KahaDBStore extends MessageDatabase implements PersistenceAdapter, NoLocalSubscriptionAware {
|
||||||
static final Logger LOG = LoggerFactory.getLogger(KahaDBStore.class);
|
static final Logger LOG = LoggerFactory.getLogger(KahaDBStore.class);
|
||||||
private static final int MAX_ASYNC_JOBS = BaseDestination.MAX_AUDIT_DEPTH;
|
private static final int MAX_ASYNC_JOBS = BaseDestination.MAX_AUDIT_DEPTH;
|
||||||
|
|
||||||
@ -1567,4 +1568,13 @@ public class KahaDBStore extends MessageDatabase implements PersistenceAdapter {
|
|||||||
public JobSchedulerStore createJobSchedulerStore() throws IOException, UnsupportedOperationException {
|
public JobSchedulerStore createJobSchedulerStore() throws IOException, UnsupportedOperationException {
|
||||||
return new JobSchedulerStoreImpl();
|
return new JobSchedulerStoreImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.activemq.store.NoLocalSubscriptionAware#isPersistNoLocal()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean isPersistNoLocal() {
|
||||||
|
// Prior to v11 the broker did not store the noLocal value for durable subs.
|
||||||
|
return brokerService.getStoreOpenWireVersion() >= 11;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -48,6 +48,7 @@ import org.apache.activemq.filter.AnyDestination;
|
|||||||
import org.apache.activemq.filter.DestinationMap;
|
import org.apache.activemq.filter.DestinationMap;
|
||||||
import org.apache.activemq.filter.DestinationMapEntry;
|
import org.apache.activemq.filter.DestinationMapEntry;
|
||||||
import org.apache.activemq.store.MessageStore;
|
import org.apache.activemq.store.MessageStore;
|
||||||
|
import org.apache.activemq.store.NoLocalSubscriptionAware;
|
||||||
import org.apache.activemq.store.PersistenceAdapter;
|
import org.apache.activemq.store.PersistenceAdapter;
|
||||||
import org.apache.activemq.store.SharedFileLocker;
|
import org.apache.activemq.store.SharedFileLocker;
|
||||||
import org.apache.activemq.store.TopicMessageStore;
|
import org.apache.activemq.store.TopicMessageStore;
|
||||||
@ -69,7 +70,9 @@ import org.slf4j.LoggerFactory;
|
|||||||
*
|
*
|
||||||
* @org.apache.xbean.XBean element="mKahaDB"
|
* @org.apache.xbean.XBean element="mKahaDB"
|
||||||
*/
|
*/
|
||||||
public class MultiKahaDBPersistenceAdapter extends LockableServiceSupport implements PersistenceAdapter, BrokerServiceAware {
|
public class MultiKahaDBPersistenceAdapter extends LockableServiceSupport implements PersistenceAdapter,
|
||||||
|
BrokerServiceAware, NoLocalSubscriptionAware {
|
||||||
|
|
||||||
static final Logger LOG = LoggerFactory.getLogger(MultiKahaDBPersistenceAdapter.class);
|
static final Logger LOG = LoggerFactory.getLogger(MultiKahaDBPersistenceAdapter.class);
|
||||||
|
|
||||||
final static ActiveMQDestination matchAll = new AnyDestination(new ActiveMQDestination[]{new ActiveMQQueue(">"), new ActiveMQTopic(">")});
|
final static ActiveMQDestination matchAll = new AnyDestination(new ActiveMQDestination[]{new ActiveMQQueue(">"), new ActiveMQTopic(">")});
|
||||||
@ -532,4 +535,13 @@ public class MultiKahaDBPersistenceAdapter extends LockableServiceSupport implem
|
|||||||
public JobSchedulerStore createJobSchedulerStore() throws IOException, UnsupportedOperationException {
|
public JobSchedulerStore createJobSchedulerStore() throws IOException, UnsupportedOperationException {
|
||||||
return new JobSchedulerStoreImpl();
|
return new JobSchedulerStoreImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.apache.activemq.store.NoLocalSubscriptionAware#isPersistNoLocal()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean isPersistNoLocal() {
|
||||||
|
// Prior to v11 the broker did not store the noLocal value for durable subs.
|
||||||
|
return brokerService.getStoreOpenWireVersion() >= 11;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -388,7 +388,7 @@ public class DurableSubscriptionOffline3Test extends DurableSubscriptionOfflineT
|
|||||||
// test offline subs
|
// test offline subs
|
||||||
con = createConnection("offCli1");
|
con = createConnection("offCli1");
|
||||||
session = con.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
session = con.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||||
consumer = session.createDurableSubscriber(topic, "SubsId", null, true);
|
consumer = session.createDurableSubscriber(topic, "SubsId", null, false);
|
||||||
consumer.setMessageListener(listener);
|
consumer.setMessageListener(listener);
|
||||||
|
|
||||||
Thread.sleep(3 * 1000);
|
Thread.sleep(3 * 1000);
|
||||||
|
@ -25,8 +25,6 @@ import java.util.Collection;
|
|||||||
|
|
||||||
import javax.jms.Destination;
|
import javax.jms.Destination;
|
||||||
import javax.jms.JMSException;
|
import javax.jms.JMSException;
|
||||||
import javax.jms.Message;
|
|
||||||
import javax.jms.MessageListener;
|
|
||||||
import javax.jms.MessageProducer;
|
import javax.jms.MessageProducer;
|
||||||
import javax.jms.Session;
|
import javax.jms.Session;
|
||||||
import javax.jms.TextMessage;
|
import javax.jms.TextMessage;
|
||||||
@ -40,13 +38,10 @@ import org.apache.activemq.ActiveMQConnection;
|
|||||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
import org.apache.activemq.broker.BrokerService;
|
import org.apache.activemq.broker.BrokerService;
|
||||||
import org.apache.activemq.broker.TransportConnector;
|
import org.apache.activemq.broker.TransportConnector;
|
||||||
import org.apache.activemq.command.ActiveMQTopic;
|
|
||||||
import org.apache.activemq.command.CommandTypes;
|
import org.apache.activemq.command.CommandTypes;
|
||||||
import org.apache.activemq.network.DurableSyncNetworkBridgeTest.FLOW;
|
|
||||||
import org.apache.activemq.store.kahadb.KahaDBStore;
|
import org.apache.activemq.store.kahadb.KahaDBStore;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Ignore;
|
|
||||||
import org.junit.Rule;
|
import org.junit.Rule;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.rules.TestName;
|
import org.junit.rules.TestName;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user