⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transportfactory.java

📁 提供ESB 应用mule源代码 提供ESB 应用mule源代码
💻 JAVA
字号:
/* * $Id: TransportFactory.java 10611 2008-01-29 15:37:31Z acooke $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.service;import org.mule.RegistryContext;import org.mule.api.MuleContext;import org.mule.api.endpoint.EndpointURI;import org.mule.api.endpoint.ImmutableEndpoint;import org.mule.api.registry.ServiceDescriptorFactory;import org.mule.api.registry.ServiceException;import org.mule.api.transport.Connector;import org.mule.config.i18n.CoreMessages;import org.mule.transport.AbstractConnector;import org.mule.util.BeanUtils;import org.mule.util.ObjectNameHelper;import java.util.Collection;import java.util.Iterator;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;/** * <code>TransportFactory</code> can be used for generically creating endpoints * from an url. Note that for some endpoints, the url alone is not enough to create * the endpoint if a connector for the endpoint has not already been configured with * the Mule Manager. * */public class TransportFactory{    /**     * logger used by this class     */    protected static final Log logger = LogFactory.getLog(TransportFactory.class);    /**     * Creates an uninitialied connector from the provided MuleEndpointURI. The     * scheme is used to determine what kind of connector to create. Any params set     * on the uri can be used to initialise bean properties on the created connector.     * <p/> Note that the initalise method will need to be called on the connector     * returned. This is so that developers can control when the connector     * initialisation takes place as this is likely to initialse all connecotr     * resources.     *     * @param url the MuleEndpointURI url to create the connector with     * @return a new Connector     * @throws TransportFactoryException     */    public static Connector createConnector(EndpointURI url, MuleContext muleContext) throws TransportFactoryException    {        try        {            Connector connector;            String scheme = url.getSchemeMetaInfo();            TransportServiceDescriptor sd = (TransportServiceDescriptor)                RegistryContext.getRegistry().lookupServiceDescriptor(ServiceDescriptorFactory.PROVIDER_SERVICE_TYPE, scheme, null);            if (sd == null)            {                throw new ServiceException(CoreMessages.noServiceTransportDescriptor(scheme));            }            connector = sd.createConnector();            if (connector != null)            {                if (connector instanceof AbstractConnector)                {                    ((AbstractConnector)connector).initialiseFromUrl(url);                }            }            else            {                throw new TransportFactoryException(                    CoreMessages.objectNotSetInService("Connector", scheme));            }            connector.setName(ObjectNameHelper.getConnectorName(connector));            // TODO Do we still need to support this for 2.x?            // set any manager default properties for the connector            // these are set on the Manager with a protocol i.e.            // jms.specification=1.1//            Map props = new HashMap();//            PropertiesUtils.getPropertiesWithPrefix(RegistryContext.getRegistry().lookupProperties(),//                connector.getProtocol().toLowerCase(), props);//            if (props.size() > 0)//            {//                props = PropertiesUtils.removeNamespaces(props);//                BeanUtils.populateWithoutFail(connector, props, true);//            }            return connector;        }        catch (Exception e)        {            throw new TransportFactoryException(                CoreMessages.failedToCreateObjectWith("Endpoint", url), e);        }    }    public static Connector getOrCreateConnectorByProtocol(ImmutableEndpoint endpoint, MuleContext muleContext)        throws TransportFactoryException    {        return getOrCreateConnectorByProtocol(endpoint.getEndpointURI(), muleContext);    }    /**     * Returns an initialized connector.     */    public static Connector getOrCreateConnectorByProtocol(EndpointURI uri, MuleContext muleContext)        throws TransportFactoryException    {        String connectorName = uri.getConnectorName();        if (null != connectorName)        {            // TODO this lookup fails currently on Mule 2.x! MuleAdminAgentTestCase            Connector connector = RegistryContext.getRegistry().lookupConnector(connectorName);            if (connector != null)            {                return connector;            }        }        Connector connector = getConnectorByProtocol(uri.getFullScheme());        if (connector == null)        {            connector = createConnector(uri, muleContext);            try            {                BeanUtils.populate(connector, uri.getParams());                connector.setMuleContext(muleContext);                muleContext.getRegistry().registerConnector(connector);            }            catch (Exception e)            {                throw new TransportFactoryException(e);            }        }        return connector;    }    public static Connector getConnectorByProtocol(String protocol)    {        Connector connector;        Connector resultConnector = null;        Collection connectors = RegistryContext.getRegistry().lookupObjects(Connector.class);        for (Iterator iterator = connectors.iterator(); iterator.hasNext();)        {            connector = (Connector)iterator.next();            if (connector.supportsProtocol(protocol))            {                if(resultConnector==null)                {                    resultConnector = connector;                }                else                {                    throw new IllegalStateException(                        CoreMessages.moreThanOneConnectorWithProtocol(protocol).getMessage());                }            }        }        return resultConnector;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -