ARTEMIS-2318 HornetQ Protocol Manager should copy the messages before replacing message properties
This commit is contained in:
parent
c5aa5fa81a
commit
15a335df01
|
@ -17,6 +17,7 @@
|
|||
package org.apache.activemq.artemis.core.protocol.core.impl.wireformat;
|
||||
|
||||
import org.apache.activemq.artemis.api.core.ICoreMessage;
|
||||
import org.apache.activemq.artemis.api.core.Message;
|
||||
import org.apache.activemq.artemis.core.protocol.core.impl.PacketImpl;
|
||||
|
||||
public abstract class MessagePacket extends PacketImpl implements MessagePacketI {
|
||||
|
@ -34,6 +35,12 @@ public abstract class MessagePacket extends PacketImpl implements MessagePacketI
|
|||
return message;
|
||||
}
|
||||
|
||||
@Override
|
||||
public MessagePacket replaceMessage(Message message) {
|
||||
this.message = (ICoreMessage) message;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getParentString() {
|
||||
return super.getParentString() + ", message=" + message;
|
||||
|
|
|
@ -22,4 +22,7 @@ import org.apache.activemq.artemis.api.core.Message;
|
|||
public interface MessagePacketI {
|
||||
|
||||
Message getMessage();
|
||||
|
||||
// This is to be used by interceptors to replace the message during processing
|
||||
MessagePacketI replaceMessage(Message message);
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ import org.apache.activemq.artemis.core.protocol.core.impl.PacketImpl;
|
|||
|
||||
public class SessionReceiveLargeMessage extends PacketImpl implements MessagePacketI {
|
||||
|
||||
private final Message message;
|
||||
private Message message;
|
||||
|
||||
/**
|
||||
* Since we receive the message before the entire message was received,
|
||||
|
@ -55,6 +55,12 @@ public class SessionReceiveLargeMessage extends PacketImpl implements MessagePac
|
|||
this.largeMessageSize = largeMessageSize;
|
||||
}
|
||||
|
||||
@Override
|
||||
public MessagePacketI replaceMessage(Message message) {
|
||||
this.message = message;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Message getLargeMessage() {
|
||||
return message;
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ public class SessionSendLargeMessage extends PacketImpl implements MessagePacket
|
|||
/**
|
||||
* Used only if largeMessage
|
||||
*/
|
||||
private final Message largeMessage;
|
||||
private Message largeMessage;
|
||||
|
||||
// Static --------------------------------------------------------
|
||||
|
||||
|
@ -44,6 +44,12 @@ public class SessionSendLargeMessage extends PacketImpl implements MessagePacket
|
|||
return largeMessage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public MessagePacketI replaceMessage(Message message) {
|
||||
this.largeMessage = message;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Message getMessage() {
|
||||
return largeMessage;
|
||||
|
|
|
@ -74,6 +74,11 @@
|
|||
<groupId>org.osgi</groupId>
|
||||
<artifactId>osgi.cmpn</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -0,0 +1,107 @@
|
|||
/*
|
||||
* 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.artemis.core.protocol.hornetq;
|
||||
|
||||
import java.util.concurrent.CyclicBarrier;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.apache.activemq.artemis.api.core.ICoreMessage;
|
||||
import org.apache.activemq.artemis.api.core.SimpleString;
|
||||
import org.apache.activemq.artemis.core.message.impl.CoreMessage;
|
||||
import org.apache.activemq.artemis.core.protocol.core.impl.PacketImpl;
|
||||
import org.apache.activemq.artemis.core.protocol.core.impl.wireformat.MessagePacket;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
public class PropertiesConversionTest {
|
||||
|
||||
class FakeMessagePacket extends MessagePacket {
|
||||
|
||||
FakeMessagePacket(ICoreMessage message) {
|
||||
super(PacketImpl.SESS_SEND, message);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int expectedEncodeSize() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void release() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testParallelConversions() throws Throwable {
|
||||
CoreMessage coreMessage = new CoreMessage(1, 1024);
|
||||
for (int i = 0; i < 10; i++) {
|
||||
coreMessage.putBooleanProperty(SimpleString.toSimpleString("key1"), true);
|
||||
}
|
||||
coreMessage.putStringProperty(new SimpleString("_HQ_ORIG_ADDRESS"), SimpleString.toSimpleString("hqOne"));
|
||||
coreMessage.putStringProperty(new SimpleString("_AMQ_ORIG_QUEUE"), SimpleString.toSimpleString("amqOne"));
|
||||
|
||||
int threads = 1000;
|
||||
int conversions = 100;
|
||||
Thread[] t = new Thread[threads];
|
||||
CyclicBarrier barrier = new CyclicBarrier(threads);
|
||||
HQPropertiesConversionInterceptor hq = new HQPropertiesConversionInterceptor(true);
|
||||
HQPropertiesConversionInterceptor amq = new HQPropertiesConversionInterceptor(true);
|
||||
AtomicInteger errors = new AtomicInteger(0);
|
||||
AtomicInteger counts = new AtomicInteger(0);
|
||||
for (int i = 0; i < threads; i++) {
|
||||
t[i] = new Thread() {
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
for (int i = 0; i < conversions; i++) {
|
||||
counts.incrementAndGet();
|
||||
FakeMessagePacket packetSend = new FakeMessagePacket(coreMessage);
|
||||
if (i == 0) {
|
||||
barrier.await();
|
||||
}
|
||||
hq.intercept(packetSend, null);
|
||||
FakeMessagePacket packetRec = new FakeMessagePacket(coreMessage);
|
||||
amq.intercept(packetRec, null);
|
||||
if (i > conversions / 2) {
|
||||
// I only validate half of the messages
|
||||
// to give it a chance of Races and Exceptions
|
||||
// that could happen from reusing the same message on these conversions
|
||||
Assert.assertNotSame(packetRec.getMessage(), coreMessage);
|
||||
Assert.assertNotSame(packetSend.getMessage(), coreMessage);
|
||||
}
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
errors.incrementAndGet();
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
};
|
||||
t[i].start();
|
||||
}
|
||||
|
||||
for (Thread thread : t) {
|
||||
thread.join();
|
||||
}
|
||||
|
||||
Assert.assertEquals(threads * conversions, counts.get());
|
||||
|
||||
Assert.assertEquals(0, errors.get());
|
||||
}
|
||||
}
|
|
@ -19,6 +19,8 @@ package org.apache.activemq.artemis.core.protocol.hornetq;
|
|||
|
||||
import org.apache.activemq.artemis.api.core.ActiveMQException;
|
||||
import org.apache.activemq.artemis.api.core.Interceptor;
|
||||
import org.apache.activemq.artemis.api.core.Message;
|
||||
import org.apache.activemq.artemis.core.client.impl.ClientMessageInternal;
|
||||
import org.apache.activemq.artemis.core.protocol.core.Packet;
|
||||
import org.apache.activemq.artemis.core.protocol.core.impl.wireformat.MessagePacketI;
|
||||
import org.apache.activemq.artemis.core.protocol.hornetq.util.HQPropertiesConverter;
|
||||
|
@ -42,11 +44,20 @@ public class HQPropertiesConversionInterceptor implements Interceptor {
|
|||
}
|
||||
|
||||
private void handleReceiveMessage(MessagePacketI messagePacket) {
|
||||
if (replaceHQ) {
|
||||
HQPropertiesConverter.replaceHQProperties(messagePacket.getMessage());
|
||||
} else {
|
||||
HQPropertiesConverter.replaceAMQProperties(messagePacket.getMessage());
|
||||
Message copy = messagePacket.getMessage();
|
||||
|
||||
// there's no need to copy client messages, only the server ones are problematic
|
||||
if (!(copy instanceof ClientMessageInternal)) {
|
||||
copy = copy.copy();
|
||||
messagePacket.replaceMessage(copy);
|
||||
}
|
||||
|
||||
if (replaceHQ) {
|
||||
HQPropertiesConverter.replaceHQProperties(copy);
|
||||
} else {
|
||||
HQPropertiesConverter.replaceAMQProperties(copy);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -355,6 +355,8 @@ public final class LargeServerMessageImpl extends CoreMessage implements LargeSe
|
|||
|
||||
@Override
|
||||
public Message copy() {
|
||||
new Exception("hmmmmm").printStackTrace();
|
||||
System.exit(-1);
|
||||
SequentialFile newfile = storageManager.createFileForLargeMessage(messageID, durable);
|
||||
|
||||
Message newMessage = new LargeServerMessageImpl(this, properties, newfile, messageID);
|
||||
|
|
Loading…
Reference in New Issue