Package org.apache.geronimo.messaging.remotenode.network

Source Code of org.apache.geronimo.messaging.remotenode.network.AbstractRemoteNodeConnection

/**
*
* 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.geronimo.messaging.remotenode.network;

import java.io.IOException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.geronimo.messaging.NodeException;
import org.apache.geronimo.messaging.interceptors.MsgOutInterceptor;
import org.apache.geronimo.messaging.io.IOContext;
import org.apache.geronimo.messaging.io.PopSynchronization;
import org.apache.geronimo.messaging.io.PushSynchronization;
import org.apache.geronimo.messaging.io.ReplacerResolver;
import org.apache.geronimo.messaging.io.StreamManager;
import org.apache.geronimo.messaging.remotenode.RemoteNodeConnection;
import org.apache.geronimo.messaging.remotenode.network.CallbackSocketProtocol.SocketProtocolListener;
import org.apache.geronimo.network.protocol.Protocol;
import org.apache.geronimo.network.protocol.ProtocolException;

/**
* Abstract implememtation for the RemoteNodeConnection contracts.
*
* @version $Rev: 46019 $ $Date: 2004-09-14 04:56:06 -0500 (Tue, 14 Sep 2004) $
*/
public abstract class AbstractRemoteNodeConnection
    implements RemoteNodeConnection
{

    private static final Log log = LogFactory.getLog(AbstractRemoteNodeConnection.class);
   
    private final IOContext ioContext;
    protected Protocol protocol;
    private MsgOutInterceptor msgOut;
    private ProtocolInDispatcher inDispatcher;
    private LifecycleListener listener;
   
    public AbstractRemoteNodeConnection(IOContext anIOContext) {
        if ( null == anIOContext ) {
            throw new IllegalArgumentException("IOContext is required.");
        }
        ioContext = anIOContext;
    }
   
    public void setMsgProducerOut(MsgOutInterceptor aMsgOut) {
        if ( null == aMsgOut ) {
            return;
        } if ( null == inDispatcher ) {
            throw new IllegalStateException("Connection is not opened.");
        }
        inDispatcher.setMsgProducerOut(aMsgOut);
    }

    public MsgOutInterceptor getMsgConsumerOut() {
        if ( null == msgOut ) {
            throw new IllegalStateException("Connection is not opened.");
        }
        return msgOut;
    }
   
    public void open() throws NodeException {
        try {
            protocol = newProtocol();
        } catch (ProtocolException e) {
            throw new NodeException("Can not create protocol", e);
        }
        Protocol curProtocol = protocol;
        while ( null != curProtocol ) {
            if ( curProtocol instanceof CallbackSocketProtocol ) {
                ((CallbackSocketProtocol) curProtocol).setListener(
                    new SocketProtocolListener() {
                        public void onClose() {
                            msgOut = null;
                            inDispatcher = null;
                            if ( null != listener ) {
                                listener.onClose();
                            }
                        }
                    });
                break;
            }
            curProtocol = curProtocol.getDownProtocol();
        }
        if ( false == curProtocol instanceof CallbackSocketProtocol ) {
            throw new AssertionError("No CallbackSocketProtocol.");
        }
       
        StreamManager streamManager = ioContext.getStreamManager();
        ReplacerResolver replacerResolver = ioContext.getReplacerResolver();
        PushSynchronization pushSynchronization =
            ioContext.getPushSynchronization();
        PopSynchronization popSynchronization =
            ioContext.getPopSynchronization();
        try {
            msgOut = new ProtocolOutInterceptor(protocol,
                streamManager, pushSynchronization, replacerResolver);
            inDispatcher = new ProtocolInDispatcher(protocol,
                streamManager, popSynchronization, replacerResolver);
        } catch (IOException e) {
            throw new NodeException("Can not set-up IO context.", e);
        }
    }

    protected abstract Protocol newProtocol() throws ProtocolException;
   
    public void close() {
        msgOut = null;
        inDispatcher = null;
        try {
            protocol.drain();
        } catch (ProtocolException e) {
            log.error("Error when closing connection", e);
        }
        if ( null != listener ) {
            listener.onClose();
        }
    }

    public void setLifecycleListener(LifecycleListener aListener) {
        listener = aListener;
    }
   
}
TOP

Related Classes of org.apache.geronimo.messaging.remotenode.network.AbstractRemoteNodeConnection

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.