blob: 02bc625660755af9f601cf02e3e39347995e102a [file] [log] [blame]
/*
* Copyright 2004 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
*
* 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.kandula.initiator;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.kandula.Status;
import org.apache.kandula.context.AbstractContext;
import org.apache.kandula.context.ContextFactory;
import org.apache.kandula.context.impl.ATActivityContext;
import org.apache.kandula.faults.AbstractKandulaException;
import org.apache.kandula.faults.InvalidStateException;
import org.apache.kandula.storage.StorageFactory;
import org.apache.kandula.storage.Store;
import org.apache.kandula.utility.EndpointReferenceFactory;
import org.apache.kandula.wsat.completion.CompletionCoordinatorPortTypeRawXMLStub;
import org.apache.kandula.wscoor.ActivationCoordinatorPortTypeRawXMLStub;
import org.apache.kandula.wscoor.RegistrationCoordinatorPortTypeRawXMLStub;
/**
* @author Dasarath Weeratunge
* @author <a href="mailto:thilina@apache.org"> Thilina Gunarathne </a>
*/
public class TransactionManager {
private static ThreadLocal threadInfo;
private String axis2Home, axis2Xml;
public TransactionManager(String coordinationType,
EndpointReference coordinatorEPR) throws AbstractKandulaException {
threadInfo = new ThreadLocal();
AbstractContext context = ContextFactory.getInstance().createActivity(
coordinationType, coordinatorEPR);
if (threadInfo.get() != null)
throw new IllegalStateException();
threadInfo.set(context.getProperty(ATActivityContext.REQUESTER_ID));
Store store = StorageFactory.getInstance().getInitiatorStore();
store.put(context.getProperty(ATActivityContext.REQUESTER_ID), context);
}
/**
* @throws Exception
*/
public void begin(String axis2Home, String axis2Xml) throws Exception {
this.axis2Home = axis2Home;
this.axis2Xml = axis2Xml;
AbstractContext context = getTransaction();
String id = (String) context
.getProperty(ATActivityContext.REQUESTER_ID);
ActivationCoordinatorPortTypeRawXMLStub activationCoordinator = new ActivationCoordinatorPortTypeRawXMLStub(
axis2Home, axis2Xml, (EndpointReference) context
.getProperty(ATActivityContext.ACTIVATION_EPR));
activationCoordinator.createCoordinationContextOperation(
org.apache.kandula.Constants.WS_AT, id);
while (context.getCoordinationContext() == null) {
//allow other threads to execute
Thread.sleep(10);
}
RegistrationCoordinatorPortTypeRawXMLStub registrationCoordinator = new RegistrationCoordinatorPortTypeRawXMLStub(
axis2Home, axis2Xml, context.getCoordinationContext()
.getRegistrationService());
EndpointReference registrationRequeterPortEPR = EndpointReferenceFactory
.getInstance().getCompletionInitiatorEndpoint(id);
registrationCoordinator.registerOperation(
org.apache.kandula.Constants.WS_AT_COMPLETION,
registrationRequeterPortEPR, id);
while (context.getProperty(ATActivityContext.COORDINATION_EPR) == null) {
Thread.sleep(10);
}
}
public void commit() throws Exception {
AbstractContext context = getTransaction();
EndpointReference coordinationEPR = (EndpointReference) context
.getProperty(ATActivityContext.COORDINATION_EPR);
CompletionCoordinatorPortTypeRawXMLStub stub = new CompletionCoordinatorPortTypeRawXMLStub(
axis2Home, axis2Xml, coordinationEPR);
stub.commitOperation();
while ((context.getStatus() != Status.ParticipantStatus.STATUS_COMMITED)
& (context.getStatus() != Status.ParticipantStatus.STATUS_ABORTED)) {
Thread.sleep(10);
}
if ((context.getStatus() == Status.ParticipantStatus.STATUS_ABORTED)) {
throw new Exception("Aborted");
}
}
public void rollback() throws Exception {
AbstractContext context = getTransaction();
EndpointReference coordinationEPR = (EndpointReference) context
.getProperty(ATActivityContext.COORDINATION_EPR);
CompletionCoordinatorPortTypeRawXMLStub stub = new CompletionCoordinatorPortTypeRawXMLStub(
axis2Home, axis2Xml, coordinationEPR);
stub.rollbackOperation();
while ((context.getStatus() != Status.ParticipantStatus.STATUS_COMMITED)
| (context.getStatus() != Status.ParticipantStatus.STATUS_ABORTED)) {
Thread.sleep(10);
}
}
// public Transaction suspend() {
// Transaction tx= getTransaction();
// forget();
// return tx;
// }
//
// public void resume(Transaction tx) {
// if (threadInfo.get() != null)
// throw new IllegalStateException();
// else
// threadInfo.set(tx);
// }
//
// public void forget() {
// threadInfo.set(null);
// }
public static AbstractContext getTransaction()
throws AbstractKandulaException {
Object key = threadInfo.get();
AbstractContext context = (AbstractContext) StorageFactory
.getInstance().getInitiatorStore().get(key);
if (context == null) {
throw new InvalidStateException("No Activity Found");
}
return context;
}
}