Package org.wso2.carbon.broker.core.internal.local

Source Code of org.wso2.carbon.broker.core.internal.local.LocalBrokerType

/*
* Copyright 2004,2005 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.wso2.carbon.broker.core.internal.local;

import org.apache.axiom.om.OMElement;
import org.apache.axis2.AxisFault;
import org.apache.axis2.engine.AxisConfiguration;
import org.wso2.carbon.broker.core.BrokerConfiguration;
import org.wso2.carbon.broker.core.BrokerListener;
import org.wso2.carbon.broker.core.BrokerTypeDto;
import org.wso2.carbon.broker.core.exception.BrokerEventProcessingException;
import org.wso2.carbon.broker.core.internal.BrokerType;
import org.wso2.carbon.broker.core.internal.ds.BrokerServiceValueHolder;
import org.wso2.carbon.broker.core.internal.util.Axis2Util;
import org.wso2.carbon.broker.core.internal.util.BrokerConstants;
import org.wso2.carbon.event.core.EventBroker;
import org.wso2.carbon.event.core.Message;
import org.wso2.carbon.event.core.exception.EventBrokerException;

public class LocalBrokerType implements BrokerType {
   
    private BrokerTypeDto brokerTypeDto = null;

    private static LocalBrokerType localBrokerType = new LocalBrokerType();

    private LocalBrokerType() {
        this.brokerTypeDto = new BrokerTypeDto();
        this.brokerTypeDto.setName(BrokerConstants.BROKER_TYPE_LOCAL);
    }

    public static LocalBrokerType getInstance(){
        return localBrokerType;
    }

    public void subscribe(String topicName,
                          BrokerListener brokerListener,
                          BrokerConfiguration brokerConfiguration,
                          AxisConfiguration axisConfiguration)
                                            throws BrokerEventProcessingException {
        // When publishing we only need to register the axis2 service
        // no subscribing
       try {
            Axis2Util.registerAxis2Service(topicName, brokerListener, brokerConfiguration, axisConfiguration);
        } catch (AxisFault axisFault) {
            throw new BrokerEventProcessingException("Can not create " +
                    "the axis2 service to receive events");
        }

    }

    public void publish(String topicName,
                        OMElement message,
                        BrokerConfiguration brokerConfiguration)
            throws BrokerEventProcessingException {

        EventBroker eventBroker = BrokerServiceValueHolder.getEventBroker();
        Message eventMessage = new Message();
        eventMessage.setMessage(message);
        try {
            eventBroker.publishRobust(eventMessage, topicName);
        } catch (EventBrokerException e) {
            throw new BrokerEventProcessingException("Can not publish the to local broker ", e);
        }
    }

    public BrokerTypeDto getBrokerTypeDto() {
        return brokerTypeDto;
    }
}
TOP

Related Classes of org.wso2.carbon.broker.core.internal.local.LocalBrokerType

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.