Package com.sun.jini.test.spec.jeri.mux.util

Source Code of com.sun.jini.test.spec.jeri.mux.util.TestEndpoint

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
/**
* File-based transport implementation capable of handling a single
* remote call per export
*/
package com.sun.jini.test.spec.jeri.mux.util;

//jeri imports
import net.jini.jeri.connection.Connection;
import net.jini.jeri.connection.ConnectionEndpoint;
import net.jini.jeri.connection.ConnectionManager;
import net.jini.jeri.connection.OutboundRequestHandle;
import net.jini.core.constraint.InvocationConstraints;
import net.jini.io.UnsupportedConstraintException;
import net.jini.jeri.Endpoint;
import net.jini.jeri.OutboundRequest;
import net.jini.jeri.OutboundRequestIterator;

//java.io
import java.io.InputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Serializable;

//java.nio
import java.nio.channels.SocketChannel;

//java.net
import java.net.Socket;

//java.util
import java.util.Collection;
import java.util.Iterator;

/**
* Utility class that implements <code>net.jini.jeri.Endpoint</code>.
*/
public class TestEndpoint implements Endpoint, Serializable, ConnectionEndpoint
{
    private String host;
    private int port;
    private TestConnection connection = new TestConnection();
    private ConnectionManager manager = null;

    public TestEndpoint(int port, String host) {
        this.port = port;
        this.host = host;
        manager = new ConnectionManager(this);

    }

    //inherit javadoc
    public OutboundRequestIterator newRequest(InvocationConstraints ics) {
        return manager.newRequest(connection);
    }

    //inherit javadoc
    public Connection connect(OutboundRequestHandle handle) {
        return (Connection)handle;
    }

    //inherit javadoc
    public Connection connect(OutboundRequestHandle handle, Collection active,
        Collection idle) {
        Connection connection = null;
        Iterator it = active.iterator();
        connection = it.hasNext()?(Connection)it.next():null;
        if (connection==null) {
            it = idle.iterator();
            connection = it.hasNext()?(Connection)it.next():null;
        }
        return connection;
    }


    //Implementation of Connection interface
    private class TestConnection implements Connection, OutboundRequestHandle {

        private InputStream is = null;
        private OutputStream os = null;
        private Socket s = null;

        //inherit javadoc
        public void close(){
            if (s!=null) {
                try {
                    s.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

        //inherit javadoc
        public synchronized SocketChannel getChannel() {
            return null;
        }

        //inherit javadoc
        public synchronized InputStream getInputStream() throws IOException {
            if (s==null) {
                s = new Socket(host,port);
                is = s.getInputStream();
                os = s.getOutputStream();
            }
            return is;
        }

        //inherit javadoc
        public synchronized OutputStream getOutputStream() throws IOException {
            if (s==null) {
                s = new Socket(host,port);
                is = s.getInputStream();
                os = s.getOutputStream();
            }
            return os;
        }

        //inherit javadoc
        public InvocationConstraints getUnfulfilledConstraints(
            OutboundRequestHandle handle) {
            return InvocationConstraints.EMPTY;
        }

        //inherit javadoc
        public void populateContext(OutboundRequestHandle handle,
            Collection context) {
        }

        //inherit javadoc
        public IOException readResponseData(OutboundRequestHandle handle,
            InputStream stream) {
            return null;
        }

        //inherit javadoc
        public void writeRequestData(OutboundRequestHandle handle,
            OutputStream stream) {
        }
    }
}
TOP

Related Classes of com.sun.jini.test.spec.jeri.mux.util.TestEndpoint

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.