blob: f9fc1ea346a77adaa6d23644c3044dd01c2f5337 [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.utility;
import java.io.IOException;
import java.io.InputStream;
import java.net.InetAddress;
import java.util.Properties;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.kandula.Constants;
import org.apache.kandula.wsat.completion.CompletionInitiatorServiceListener;
/**
* @author Dasarath Weeratunge
* @author <a href="mailto:thilina@apache.org"> Thilina Gunarathne </a>
*/
public class EndpointReferenceFactory {
static final String PROPERTY_FILE = "endpoints.conf";
// static final String PROTOCOL_PROPERTY = "protocol";
static final String HOST_PROPERTY = "host";
static final String PORT_PROPERTY = "port";
static final String TCPMON_ENABLE = "tcpmon_enable";
static final String PARTICIPANT_REPO = "PARTICIPANT_REPOSITORY";
static final String PARTICIPANT_AXIS2_CONF = "PARTICIPANT_AXIS2_CONF";
static final String KANDULA_LISTENER_REPO = "KANDULA_LISTENER_REPOSITORY";
static final String KANDULA_LISTENER_AXIS2XML = "KANDULA_LISTENER_AXIS2XML";
static final String LISTENER_PORT = "KANDULA_LISTENER_PORT";
static final String COORDINATOR_AXIS2XML = "COORDINATOR_AXIS2XML";
static final String COORDINATOR_REPOSITORY = "COORDINATOR_REPOSITORY";
private static EndpointReferenceFactory instance = null;
Properties properties = null;
String location = null;
String participantRepository = null;
String participantAxis2Xml = null;
String kandulaListenerRepository = null;
String kandulaListenerAxis2Xml = null;
String kandulaListenerPort = null;
String coordinatorRepo;
String coordinatorAxis2Conf;
String debug = "false";
private EndpointReferenceFactory() {
String port = null;
String host = null;
InputStream in = getClass().getClassLoader().getResourceAsStream(
PROPERTY_FILE);
properties = new Properties();
try {
properties.load(in);
in.close();
host = properties.getProperty(HOST_PROPERTY);
port = properties.getProperty(PORT_PROPERTY);
participantRepository = properties.getProperty(PARTICIPANT_REPO);
if (participantRepository == null) {
participantRepository = ".";
}
if (properties.getProperty("tcpmon_enable").equals("true")) {
debug = "true";
}
participantAxis2Xml = properties
.getProperty(PARTICIPANT_AXIS2_CONF);
if (participantAxis2Xml == null) {
participantAxis2Xml = "axis2.xml";
}
kandulaListenerRepository = properties
.getProperty(KANDULA_LISTENER_REPO);
if (kandulaListenerRepository == null) {
kandulaListenerRepository = ".";
}
kandulaListenerAxis2Xml = properties
.getProperty(KANDULA_LISTENER_AXIS2XML);
if (kandulaListenerAxis2Xml == null) {
kandulaListenerRepository += "/axis2.xml";
}
coordinatorAxis2Conf = properties.getProperty(COORDINATOR_AXIS2XML);
if (coordinatorAxis2Conf == null) {
coordinatorAxis2Conf = "axis2.xml";
}
coordinatorRepo = properties.getProperty(COORDINATOR_REPOSITORY);
if (coordinatorRepo == null) {
coordinatorAxis2Conf = ".";
}
kandulaListenerPort = properties.getProperty(LISTENER_PORT);
if (kandulaListenerPort == null) {
kandulaListenerPort = "5050";
}
if (port == null) {
port = "8080";
}
if (host == null) {
host = InetAddress.getLocalHost().getHostAddress();
}
location = "http://" + host + ":" + port;
System.out.println(location);
} catch (Exception e) {
if (e instanceof RuntimeException)
throw (RuntimeException) e;
else
throw new RuntimeException(e);
}
}
public static EndpointReferenceFactory getInstance() {
if (instance == null)
instance = new EndpointReferenceFactory();
return instance;
}
public EndpointReference getRegistrationEndpoint(String id) {
EndpointReference epr = new EndpointReference(location
+ "/axis2/services/RegistrationCoordinator");
EPRHandlingUtils.addReferenceProperty(epr,
Constants.TRANSACTION_ID_PARAMETER, id);
return epr;
}
/**
* Sets up a listener in the transaction initiator to recieve notify
* messages mentioning the outcome of the transaction These messages include
* "aborted" and "commited".
*
* @throws IOException
*/
public EndpointReference getCompletionInitiatorEndpoint(String id)
throws IOException {
CompletionInitiatorServiceListener serviceListener = CompletionInitiatorServiceListener
.getInstance();
EndpointReference epr = serviceListener.getEpr();
EPRHandlingUtils.addReferenceProperty(epr,
Constants.REQUESTER_ID_PARAMETER, id);
return epr;
}
public EndpointReference getCompletionEndpoint(String id) {
EndpointReference epr = new EndpointReference(location
+ "/axis2/services/CompletionCoordinator");
EPRHandlingUtils.addReferenceProperty(epr,
Constants.TRANSACTION_ID_PARAMETER, id);
return epr;
}
public EndpointReference get2PCCoordinatorEndpoint(String activityId,
String enlistmentId) {
//Activity ID to find Activity Context , EnlistmentID to find
// participant in activity
EndpointReference epr = new EndpointReference(location
+ "/axis2/services/AtomicTransactionCoordinator");
EPRHandlingUtils.addReferenceProperty(epr,
Constants.TRANSACTION_ID_PARAMETER, activityId);
EPRHandlingUtils.addReferenceProperty(epr,
Constants.ENLISTMENT_ID_PARAMETER, enlistmentId);
return epr;
}
public EndpointReference get2PCParticipantEndpoint(String id) {
EndpointReference epr = new EndpointReference(location
+ "/axis2/services/AtomicTransactionParticipant");
EPRHandlingUtils.addReferenceProperty(epr,
Constants.REQUESTER_ID_PARAMETER, id);
return epr;
}
public String getParticipantRepository() {
return participantRepository;
}
public String getParticipantAxis2Conf() {
return participantAxis2Xml;
}
public String getCoordinatorRepo() {
return coordinatorRepo;
}
public String getCoordinatorAxis2Conf() {
return coordinatorAxis2Conf;
}
public String getKadulaListenerPort() {
return kandulaListenerPort;
}
public String getKadulaListenerPortForEPR() {
if (debug.equals("true"))
return (Integer.parseInt(kandulaListenerPort) + 1) + "";
else
return kandulaListenerPort;
}
/**
* @return Returns the kandulaListenerRepository.
*/
public String getKandulaListenerRepository() {
return kandulaListenerRepository;
}
public String getKandulaListenerAxis2Xml() {
return kandulaListenerAxis2Xml;
}
public String getLocationForEPR(){
return location;
}
}