All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.grizzly.nio.transport.UDPNIOStreamReader Maven / Gradle / Ivy

/*
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright 2007-2008 Sun Microsystems, Inc. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License. You can obtain
 * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
 * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
 * Sun designates this particular file as subject to the "Classpath" exception
 * as provided by Sun in the GPL Version 2 section of the License file that
 * accompanied this code.  If applicable, add the following below the License
 * Header, with the fields enclosed by brackets [] replaced by your own
 * identifying information: "Portions Copyrighted [year]
 * [name of copyright owner]"
 *
 * Contributor(s):
 *
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 *
 */

package com.sun.grizzly.nio.transport;

import java.io.EOFException;
import java.io.IOException;
import java.net.SocketAddress;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import com.sun.grizzly.Buffer;
import com.sun.grizzly.CompletionHandler;
import com.sun.grizzly.Connection;
import com.sun.grizzly.Interceptor;
import com.sun.grizzly.ReadResult;
import com.sun.grizzly.Reader;
import com.sun.grizzly.impl.FutureImpl;
import com.sun.grizzly.impl.ReadyFutureImpl;
import com.sun.grizzly.nio.tmpselectors.TemporarySelectorReader;
import com.sun.grizzly.streams.AbstractStreamReader;
import com.sun.grizzly.streams.AddressableStreamReader;
import com.sun.grizzly.streams.StreamReader;
import com.sun.grizzly.utils.conditions.Condition;


/**
 *
 * @author oleksiys
 */
public class UDPNIOStreamReader extends AbstractStreamReader
        implements AddressableStreamReader {
    
    public UDPNIOStreamReader(UDPNIOConnection connection) {
        super(connection);
    }

    public Future notifyCondition(Condition condition,
            CompletionHandler completionHandler) {

        if (notifyObject != null) {
            throw new IllegalStateException("Only one available listener allowed!");
        }

        if (isClosed()) {
            EOFException exception = new EOFException();
            if (completionHandler != null) {
                completionHandler.failed(null, exception);
            }

            return new ReadyFutureImpl(exception);
        }

        final int availableDataSize = availableDataSize();
        if (condition.check(this)) {
            if (completionHandler != null) {
                completionHandler.completed(null, availableDataSize);
            }

            return new ReadyFutureImpl(availableDataSize);
        } else {
            if (isBlocking()) {
                return notifyConditionBlocking(condition, completionHandler);
            } else {
                return notifyConditionNonBlocking(condition, completionHandler);
            }
        }
    }
    
    private Future notifyConditionNonBlocking(
            final Condition condition,
            CompletionHandler completionHandler) {

        final FutureImpl future = new FutureImpl(sync);
        synchronized (sync) {
            try {
                notifyObject = new NotifyObject(future, completionHandler, condition);

                Connection connection = getConnection();
                UDPNIOTransport transport = (UDPNIOTransport) connection.getTransport();
                transport.getAsyncQueueIO().getReader().read(connection, null, null,
                        new Interceptor() {

                            public int intercept(final int event,
                                    final Object context, final Object result) {

                                if (event == Reader.READ_EVENT) {
                                    final ReadResult readResult = (ReadResult) result;
                                    final Buffer buffer = (Buffer) readResult.getMessage();

                                    if (buffer == null) {
                                        return Interceptor.INCOMPLETED;
                                    }

                                    buffer.flip();
                                    append(readResult);

                                    if (future.isDone()) {
                                        return Interceptor.COMPLETED;
                                    }

                                    return Interceptor.INCOMPLETED |
                                            Interceptor.RESET;
                                }

                                return Interceptor.DEFAULT;
                            }
                        });
            } catch (IOException e) {
                future.failure(e);
            }
        }
        
        return future;
    }

    private Future notifyConditionBlocking(
            Condition condition,
            CompletionHandler completionHandler) {

        FutureImpl future = new FutureImpl();
        notifyObject = new NotifyObject(future, completionHandler, condition);

        try {
            while (!future.isDone()) {
                Object data = read0();
                append(data);
            }
        } catch (Exception e) {
            future.failure(e);
        }

        return future;
    }
    
    protected ReadResult read0() throws IOException {
        final Connection connection = getConnection();
        final UDPNIOTransport transport =
                (UDPNIOTransport) connection.getTransport();
        final Buffer buffer = newBuffer(bufferSize);

        if (isBlocking()) {

            ReadResult result;
            try {
                TemporarySelectorReader reader =
                        (TemporarySelectorReader)
                        transport.getTemporarySelectorIO().getReader();
                Future> future = reader.read(
                        connection, buffer, null, null,
                        timeoutMillis, TimeUnit.MILLISECONDS);
                result = future.get();
                buffer.trim();
            } catch (Exception e) {
                buffer.dispose();
                throw new EOFException();
            }

            return result;

        } else {
            final ReadResult result =
                    new ReadResult(connection);
            
            try {
                int readBytes = transport.read(connection, buffer, result);
                if (readBytes <= 0) {
                    if (readBytes == -1) {
                        throw new EOFException();
                    }

                    buffer.dispose();
                    return null;
                } else {
                    buffer.trim();
                }
            } catch (IOException e) {
                buffer.dispose();
                throw e;
            }

            return result;
        }
    }

    @Override
    public SocketAddress getPeerAddress() {
        final UDPNIOConnection connection = (UDPNIOConnection) getConnection();
        if (connection.isConnected()) {
            return connection.getPeerAddress();
        }
        
        final ReadResult current = (ReadResult) current();
        if (current != null) {
            return (SocketAddress) current.getSrcAddress();
        }

        return null;
    }

    @Override
    protected final boolean append(Object data) {
        return super.append(data);
    }

    @Override
    protected Object wrap(final Buffer buffer) {
        if (buffer == null) return null;

        return new ReadResult(getConnection(), buffer, null, buffer.remaining());
    }

    @Override
    protected Buffer unwrap(final Object record) {
        if (record == null) return null;

        return ((ReadResult) record).getMessage();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy