Author: gtully
Date: Tue Mar 29 14:17:45 2011
New Revision: 1086593
URL: http://svn.apache.org/viewvc?rev=1086593&view=rev
Log:
https://issues.apache.org/jira/browse/AMQ-3251 -
javax.jms.TransactionInProgressException: Cannot rollback() inside an
XASession. Make session xa aware such that it won't try local rollback, session
is returned to the pool
Added:
activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/XAConnectionPoolTest.java
(with props)
Modified:
activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledSession.java
activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/XaConnectionPool.java
Modified:
activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledSession.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledSession.java?rev=1086593&r1=1086592&r2=1086593&view=diff
==============================================================================
---
activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledSession.java
(original)
+++
activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/PooledSession.java
Tue Mar 29 14:17:45 2011
@@ -70,6 +70,7 @@ public class PooledSession implements Se
private final CopyOnWriteArrayList<MessageConsumer> consumers = new
CopyOnWriteArrayList<MessageConsumer>();
private final CopyOnWriteArrayList<QueueBrowser> browsers = new
CopyOnWriteArrayList<QueueBrowser>();
+ private boolean isXa;
public PooledSession(ActiveMQSession aSession, SessionPool sessionPool) {
this.session = aSession;
@@ -105,8 +106,7 @@ public class PooledSession implements Se
}
browsers.clear();
- // maybe do a rollback?
- if (transactional) {
+ if (transactional && !isXa) {
try {
getInternalSession().rollback();
} catch (JMSException e) {
@@ -337,4 +337,8 @@ public class PooledSession implements Se
public String toString() {
return "PooledSession { " + session + " }";
}
+
+ public void setIsXa(boolean isXa) {
+ this.isXa = isXa;
+ }
}
Modified:
activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/XaConnectionPool.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/XaConnectionPool.java?rev=1086593&r1=1086592&r2=1086593&view=diff
==============================================================================
---
activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/XaConnectionPool.java
(original)
+++
activemq/trunk/activemq-pool/src/main/java/org/apache/activemq/pool/XaConnectionPool.java
Tue Mar 29 14:17:45 2011
@@ -52,6 +52,7 @@ public class XaConnectionPool extends Co
PooledSession session = (PooledSession)
super.createSession(transacted, ackMode);
if (isXa) {
session.setIgnoreClose(true);
+ session.setIsXa(true);
transactionManager.getTransaction().registerSynchronization(new
Synchronization(session));
incrementReferenceCount();
transactionManager.getTransaction().enlistResource(createXaResource(session));
@@ -88,6 +89,7 @@ public class XaConnectionPool extends Co
// This will return session to the pool.
session.setIgnoreClose(false);
session.close();
+ session.setIsXa(false);
decrementReferenceCount();
} catch (JMSException e) {
throw new RuntimeException(e);
Added:
activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/XAConnectionPoolTest.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/XAConnectionPoolTest.java?rev=1086593&view=auto
==============================================================================
---
activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/XAConnectionPoolTest.java
(added)
+++
activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/XAConnectionPoolTest.java
Tue Mar 29 14:17:45 2011
@@ -0,0 +1,137 @@
+/**
+ * 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.pool;
+
+import java.util.Vector;
+import javax.jms.Session;
+import javax.jms.TopicConnection;
+import javax.jms.TopicPublisher;
+import javax.jms.TopicSession;
+import javax.transaction.HeuristicMixedException;
+import javax.transaction.HeuristicRollbackException;
+import javax.transaction.InvalidTransactionException;
+import javax.transaction.NotSupportedException;
+import javax.transaction.RollbackException;
+import javax.transaction.Status;
+import javax.transaction.Synchronization;
+import javax.transaction.SystemException;
+import javax.transaction.Transaction;
+import javax.transaction.TransactionManager;
+import javax.transaction.xa.XAResource;
+import org.apache.activemq.ActiveMQXAConnectionFactory;
+import org.apache.activemq.command.ActiveMQTopic;
+import org.apache.activemq.test.TestSupport;
+
+public class XAConnectionPoolTest extends TestSupport {
+
+ // https://issues.apache.org/jira/browse/AMQ-3251
+ public void testAfterCompletionCanClose() throws Exception {
+ final Vector<Synchronization> syncs = new Vector<Synchronization>();
+ ActiveMQTopic topic = new ActiveMQTopic("test");
+ XaPooledConnectionFactory pcf = new XaPooledConnectionFactory();
+ pcf.setConnectionFactory(new
ActiveMQXAConnectionFactory("vm://test?broker.persistent=false"));
+
+ // simple TM that is in a tx and will track syncs
+ pcf.setTransactionManager(new TransactionManager(){
+ @Override
+ public void begin() throws NotSupportedException, SystemException {
+ }
+
+ @Override
+ public void commit() throws HeuristicMixedException,
HeuristicRollbackException, IllegalStateException, RollbackException,
SecurityException, SystemException {
+ }
+
+ @Override
+ public int getStatus() throws SystemException {
+ return Status.STATUS_ACTIVE;
+ }
+
+ @Override
+ public Transaction getTransaction() throws SystemException {
+ return new Transaction() {
+ @Override
+ public void commit() throws HeuristicMixedException,
HeuristicRollbackException, RollbackException, SecurityException,
SystemException {
+ }
+
+ @Override
+ public boolean delistResource(XAResource xaRes, int flag)
throws IllegalStateException, SystemException {
+ return false;
+ }
+
+ @Override
+ public boolean enlistResource(XAResource xaRes) throws
IllegalStateException, RollbackException, SystemException {
+ return false;
+ }
+
+ @Override
+ public int getStatus() throws SystemException {
+ return 0;
+ }
+
+ @Override
+ public void registerSynchronization(Synchronization synch)
throws IllegalStateException, RollbackException, SystemException {
+ syncs.add(synch);
+ }
+
+ @Override
+ public void rollback() throws IllegalStateException,
SystemException {
+ }
+
+ @Override
+ public void setRollbackOnly() throws
IllegalStateException, SystemException {
+ }
+ };
+
+ }
+
+ @Override
+ public void resume(Transaction tobj) throws IllegalStateException,
InvalidTransactionException, SystemException {
+ }
+
+ @Override
+ public void rollback() throws IllegalStateException,
SecurityException, SystemException {
+ }
+
+ @Override
+ public void setRollbackOnly() throws IllegalStateException,
SystemException {
+ }
+
+ @Override
+ public void setTransactionTimeout(int seconds) throws
SystemException {
+ }
+
+ @Override
+ public Transaction suspend() throws SystemException {
+ return null;
+ }
+ });
+
+ TopicConnection connection = (TopicConnection) pcf.createConnection();
+ TopicSession session = connection.createTopicSession(false,
Session.AUTO_ACKNOWLEDGE);
+ TopicPublisher publisher = session.createPublisher(topic);
+ publisher.publish(session.createMessage());
+
+ // simulate a commit
+ for (Synchronization sync : syncs) {
+ sync.beforeCompletion();
+ }
+ for (Synchronization sync : syncs) {
+ sync.afterCompletion(1);
+ }
+ connection.close();
+ }
+}
Propchange:
activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/XAConnectionPoolTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/XAConnectionPoolTest.java
------------------------------------------------------------------------------
svn:keywords = Rev Date