org.apache.http.impl.nio.reactor.AbstractIODispatch Maven / Gradle / Ivy
/*
* ====================================================================
* 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 org.apache.http.nio.reactor.IOEventDispatch;
import org.apache.http.nio.reactor.IOSession;
import org.apache.http.nio.reactor.ssl.SSLIOSession;
import org.apache.http.util.Asserts;
/**
* Abstract {@link IOEventDispatch} implementation that supports both plain (non-encrypted)
* and SSL encrypted HTTP connections.
*
* @param the connection type.
* @since 4.2
*/
public abstract class AbstractIODispatch implements IOEventDispatch {
protected abstract T createConnection(IOSession session);
protected abstract void onConnected(T conn);
protected abstract void onClosed(T conn);
protected abstract void onException(T conn, IOException ex);
protected abstract void onInputReady(T conn);
protected abstract void onOutputReady(T conn);
protected abstract void onTimeout(T conn);
private void ensureNotNull(final T conn) {
Asserts.notNull(conn, "HTTP connection");
}
@Override
public void connected(final IOSession session) {
@SuppressWarnings("unchecked")
T conn = (T) session.getAttribute(IOEventDispatch.CONNECTION_KEY);
try {
if (conn == null) {
conn = createConnection(session);
session.setAttribute(IOEventDispatch.CONNECTION_KEY, conn);
}
onConnected(conn);
final SSLIOSession sslioSession = (SSLIOSession) session.getAttribute(
SSLIOSession.SESSION_KEY);
if (sslioSession != null) {
try {
synchronized (sslioSession) {
if (!sslioSession.isInitialized()) {
sslioSession.initialize();
}
}
} catch (final IOException ex) {
onException(conn, ex);
sslioSession.shutdown();
}
}
} catch (final RuntimeException ex) {
session.shutdown();
throw ex;
}
}
@Override
public void disconnected(final IOSession session) {
@SuppressWarnings("unchecked")
final
T conn = (T) session.getAttribute(IOEventDispatch.CONNECTION_KEY);
if (conn != null) {
onClosed(conn);
}
}
@Override
public void inputReady(final IOSession session) {
@SuppressWarnings("unchecked")
final
T conn = (T) session.getAttribute(IOEventDispatch.CONNECTION_KEY);
try {
ensureNotNull(conn);
final SSLIOSession sslioSession = (SSLIOSession) session.getAttribute(
SSLIOSession.SESSION_KEY);
if (sslioSession == null) {
onInputReady(conn);
} else {
try {
if (!sslioSession.isInitialized()) {
sslioSession.initialize();
}
if (sslioSession.isAppInputReady()) {
onInputReady(conn);
}
sslioSession.inboundTransport();
} catch (final IOException ex) {
onException(conn, ex);
sslioSession.shutdown();
}
}
} catch (final RuntimeException ex) {
session.shutdown();
throw ex;
}
}
@Override
public void outputReady(final IOSession session) {
@SuppressWarnings("unchecked")
final
T conn = (T) session.getAttribute(IOEventDispatch.CONNECTION_KEY);
try {
ensureNotNull(conn);
final SSLIOSession sslioSession = (SSLIOSession) session.getAttribute(
SSLIOSession.SESSION_KEY);
if (sslioSession == null) {
onOutputReady(conn);
} else {
try {
if (!sslioSession.isInitialized()) {
sslioSession.initialize();
}
if (sslioSession.isAppOutputReady()) {
onOutputReady(conn);
}
sslioSession.outboundTransport();
} catch (final IOException ex) {
onException(conn, ex);
sslioSession.shutdown();
}
}
} catch (final RuntimeException ex) {
session.shutdown();
throw ex;
}
}
@Override
public void timeout(final IOSession session) {
@SuppressWarnings("unchecked")
final
T conn = (T) session.getAttribute(IOEventDispatch.CONNECTION_KEY);
try {
final SSLIOSession sslioSession = (SSLIOSession) session.getAttribute(
SSLIOSession.SESSION_KEY);
ensureNotNull(conn);
onTimeout(conn);
if (sslioSession != null) {
synchronized (sslioSession) {
if (sslioSession.isOutboundDone() && !sslioSession.isInboundDone()) {
// The session failed to terminate cleanly
sslioSession.shutdown();
}
}
}
} catch (final RuntimeException ex) {
session.shutdown();
throw ex;
}
}
}