TransportFactory.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:3k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. package org.jboss.blacktie.jatmibroker.core.transport;
  19. import java.util.Properties;
  20. import org.apache.log4j.LogManager;
  21. import org.apache.log4j.Logger;
  22. import org.jboss.blacktie.jatmibroker.core.conf.ConfigurationException;
  23. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  24. public abstract class TransportFactory {
  25. private static final Logger log = LogManager
  26. .getLogger(TransportFactory.class);
  27. public static TransportFactory loadTransportFactory(String serviceName,
  28. Properties properties) throws ConfigurationException,
  29. ConnectionException {
  30. log.debug("Loading transport for: " + serviceName);
  31. String transportLibrary;
  32. if (serviceName.indexOf("_ADMIN_") > 0) {
  33. transportLibrary = "hybrid";
  34. } else {
  35. transportLibrary = (String) properties.getProperty("blacktie."
  36. + serviceName + ".transportLib", "hybrid");
  37. }
  38. log.debug("Transport library was: " + transportLibrary);
  39. // Determine the transport class to load
  40. String className = null;
  41. if (transportLibrary.contains("hybrid")) {
  42. className = org.jboss.blacktie.jatmibroker.core.transport.hybrid.TransportFactoryImpl.class
  43. .getName();
  44. }
  45. if (className == null) {
  46. throw new ConfigurationException("TransportLibrary was not defined");
  47. }
  48. log.debug("Transport class was: " + className);
  49. try {
  50. Class clazz = Class.forName(className);
  51. TransportFactory newInstance = (TransportFactory) clazz
  52. .newInstance();
  53. newInstance.setProperties(properties);
  54. log.debug("TransportFactory was prepared");
  55. return newInstance;
  56. } catch (Throwable t) {
  57. throw new ConnectionException(-1,
  58. "Could not load the connection factory", t);
  59. }
  60. }
  61. protected abstract void setProperties(Properties properties)
  62. throws ConfigurationException;
  63. public abstract Transport createTransport() throws ConnectionException;
  64. }