-
Notifications
You must be signed in to change notification settings - Fork 924
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARTEMIS-4924 Do not allow sending messages directly to store-and-forw…
…ard queues
- Loading branch information
Showing
9 changed files
with
424 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
...rver/src/main/java/org/apache/activemq/artemis/core/server/impl/StoreAndForwardQueue.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/** | ||
* 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 | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* 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.artemis.core.server.impl; | ||
|
||
import java.util.concurrent.ScheduledExecutorService; | ||
|
||
import org.apache.activemq.artemis.api.core.Message; | ||
import org.apache.activemq.artemis.api.core.QueueConfiguration; | ||
import org.apache.activemq.artemis.api.core.SimpleString; | ||
import org.apache.activemq.artemis.core.filter.Filter; | ||
import org.apache.activemq.artemis.core.paging.PagingStore; | ||
import org.apache.activemq.artemis.core.paging.cursor.PageSubscription; | ||
import org.apache.activemq.artemis.core.persistence.StorageManager; | ||
import org.apache.activemq.artemis.core.postoffice.PostOffice; | ||
import org.apache.activemq.artemis.core.server.ActiveMQServer; | ||
import org.apache.activemq.artemis.core.server.ActiveMQServerLogger; | ||
import org.apache.activemq.artemis.core.server.MessageReference; | ||
import org.apache.activemq.artemis.core.server.QueueFactory; | ||
import org.apache.activemq.artemis.core.settings.HierarchicalRepository; | ||
import org.apache.activemq.artemis.core.settings.impl.AddressSettings; | ||
import org.apache.activemq.artemis.utils.actors.ArtemisExecutor; | ||
|
||
public class StoreAndForwardQueue extends QueueImpl { | ||
|
||
public StoreAndForwardQueue(QueueConfiguration queueConfiguration, | ||
Filter filter, | ||
PagingStore pagingStore, | ||
PageSubscription pageSubscription, | ||
ScheduledExecutorService scheduledExecutor, | ||
PostOffice postOffice, | ||
StorageManager storageManager, | ||
HierarchicalRepository<AddressSettings> addressSettingsRepository, | ||
ArtemisExecutor executor, | ||
ActiveMQServer server, | ||
QueueFactory factory) { | ||
super(queueConfiguration, filter, pagingStore, pageSubscription, scheduledExecutor, postOffice, storageManager, addressSettingsRepository, executor, server, factory); | ||
} | ||
|
||
@Override | ||
public boolean checkInvalid(final MessageReference ref) { | ||
Message message = ref.getMessage(); | ||
SimpleString idsHeaderName = Message.HDR_ROUTE_TO_IDS.concat(this.getName()); | ||
byte[] queueIds = message.getExtraBytesProperty(idsHeaderName); | ||
if (queueIds == null) { | ||
ActiveMQServerLogger.LOGGER.noQueueIdDefined(message, idsHeaderName); | ||
return true; | ||
} | ||
return false; | ||
} | ||
} |
Oops, something went wrong.