/* * ==================================================================== * 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. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * . * */ package org.apache.http.impl.nio.reactor; import java.io.IOException; import java.net.SocketAddress; import java.nio.channels.CancelledKeyException; import java.nio.channels.SelectionKey; import java.nio.channels.ServerSocketChannel; import java.nio.channels.SocketChannel; import java.util.Collections; import java.util.HashSet; import java.util.Iterator; import java.util.Queue; import java.util.Set; import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.ThreadFactory; import org.apache.http.annotation.ThreadSafe; import org.apache.http.nio.reactor.IOReactorException; import org.apache.http.nio.reactor.IOReactorStatus; import org.apache.http.nio.reactor.ListenerEndpoint; import org.apache.http.nio.reactor.ListeningIOReactor; import org.apache.http.params.HttpParams; /** * Default implementation of {@link ListeningIOReactor}. This class extends * {@link AbstractMultiworkerIOReactor} with capability to listen for incoming * connections. * * @since 4.0 */ @ThreadSafe // public methods only public class DefaultListeningIOReactor extends AbstractMultiworkerIOReactor implements ListeningIOReactor { private final Queue requestQueue; private final Set endpoints; private final Set pausedEndpoints; private volatile boolean paused; /** * Creates an instance of DefaultListeningIOReactor with the given configuration. * * @param config I/O reactor configuration. * @param threadFactory the factory to create threads. * Can be null. * @throws IOReactorException in case if a non-recoverable I/O error. * * @since 4.2 */ public DefaultListeningIOReactor( final IOReactorConfig config, final ThreadFactory threadFactory) throws IOReactorException { super(config, threadFactory); this.requestQueue = new ConcurrentLinkedQueue(); this.endpoints = Collections.synchronizedSet(new HashSet()); this.pausedEndpoints = new HashSet(); } /** * Creates an instance of DefaultListeningIOReactor with the given configuration. * * @param config I/O reactor configuration. * Can be null. * @throws IOReactorException in case if a non-recoverable I/O error. * * @since 4.2 */ public DefaultListeningIOReactor(final IOReactorConfig config) throws IOReactorException { this(config, null); } /** * Creates an instance of DefaultListeningIOReactor with default configuration. * * @throws IOReactorException in case if a non-recoverable I/O error. * * @since 4.2 */ public DefaultListeningIOReactor() throws IOReactorException { this(null, null); } /** * @deprecated use {@link DefaultListeningIOReactor#DefaultListeningIOReactor(IOReactorConfig, ThreadFactory)} */ public DefaultListeningIOReactor( int workerCount, final ThreadFactory threadFactory, final HttpParams params) throws IOReactorException { this(convert(workerCount, params), threadFactory); } /** * @deprecated use {@link DefaultListeningIOReactor#DefaultListeningIOReactor(IOReactorConfig)} */ public DefaultListeningIOReactor( int workerCount, final HttpParams params) throws IOReactorException { this(convert(workerCount, params), null); } @Override protected void cancelRequests() throws IOReactorException { ListenerEndpointImpl request; while ((request = this.requestQueue.poll()) != null) { request.cancel(); } } @Override protected void processEvents(int readyCount) throws IOReactorException { if (!this.paused) { processSessionRequests(); } if (readyCount > 0) { Set selectedKeys = this.selector.selectedKeys(); for (Iterator it = selectedKeys.iterator(); it.hasNext(); ) { SelectionKey key = it.next(); processEvent(key); } selectedKeys.clear(); } } private void processEvent(final SelectionKey key) throws IOReactorException { try { if (key.isAcceptable()) { ServerSocketChannel serverChannel = (ServerSocketChannel) key.channel(); SocketChannel socketChannel = null; try { socketChannel = serverChannel.accept(); } catch (IOException ex) { if (this.exceptionHandler == null || !this.exceptionHandler.handle(ex)) { throw new IOReactorException( "Failure accepting connection", ex); } } if (socketChannel != null) { try { prepareSocket(socketChannel.socket()); } catch (IOException ex) { if (this.exceptionHandler == null || !this.exceptionHandler.handle(ex)) { throw new IOReactorException( "Failure initalizing socket", ex); } } ChannelEntry entry = new ChannelEntry(socketChannel); addChannel(entry); } } } catch (CancelledKeyException ex) { ListenerEndpoint endpoint = (ListenerEndpoint) key.attachment(); this.endpoints.remove(endpoint); key.attach(null); } } private ListenerEndpointImpl createEndpoint(final SocketAddress address) { ListenerEndpointImpl endpoint = new ListenerEndpointImpl( address, new ListenerEndpointClosedCallback() { public void endpointClosed(final ListenerEndpoint endpoint) { endpoints.remove(endpoint); } }); return endpoint; } public ListenerEndpoint listen(final SocketAddress address) { if (this.status.compareTo(IOReactorStatus.ACTIVE) > 0) { throw new IllegalStateException("I/O reactor has been shut down"); } ListenerEndpointImpl request = createEndpoint(address); this.requestQueue.add(request); this.selector.wakeup(); return request; } private void processSessionRequests() throws IOReactorException { ListenerEndpointImpl request; while ((request = this.requestQueue.poll()) != null) { SocketAddress address = request.getAddress(); ServerSocketChannel serverChannel; try { serverChannel = ServerSocketChannel.open(); } catch (IOException ex) { throw new IOReactorException("Failure opening server socket", ex); } try { serverChannel.configureBlocking(false); serverChannel.socket().bind(address); } catch (IOException ex) { closeChannel(serverChannel); request.failed(ex); if (this.exceptionHandler == null || !this.exceptionHandler.handle(ex)) { throw new IOReactorException("Failure binding socket to address " + address, ex); } else { return; } } try { SelectionKey key = serverChannel.register(this.selector, SelectionKey.OP_ACCEPT); key.attach(request); request.setKey(key); } catch (IOException ex) { closeChannel(serverChannel); throw new IOReactorException("Failure registering channel " + "with the selector", ex); } this.endpoints.add(request); request.completed(serverChannel.socket().getLocalSocketAddress()); } } public Set getEndpoints() { Set set = new HashSet(); synchronized (this.endpoints) { Iterator it = this.endpoints.iterator(); while (it.hasNext()) { ListenerEndpoint endpoint = it.next(); if (!endpoint.isClosed()) { set.add(endpoint); } else { it.remove(); } } } return set; } public void pause() throws IOException { if (this.paused) { return; } this.paused = true; synchronized (this.endpoints) { Iterator it = this.endpoints.iterator(); while (it.hasNext()) { ListenerEndpoint endpoint = it.next(); if (!endpoint.isClosed()) { endpoint.close(); this.pausedEndpoints.add(endpoint.getAddress()); } } this.endpoints.clear(); } } public void resume() throws IOException { if (!this.paused) { return; } this.paused = false; for (SocketAddress address: this.pausedEndpoints) { ListenerEndpointImpl request = createEndpoint(address); this.requestQueue.add(request); } this.pausedEndpoints.clear(); this.selector.wakeup(); } }