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

org.eclipse.jetty.client.PoolingHttpDestination Maven / Gradle / Ivy

There is a newer version: 11.0.0.beta1
Show newest version
//
//  ========================================================================
//  Copyright (c) 1995-2018 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.client;

import java.io.IOException;
import java.util.Arrays;

import org.eclipse.jetty.client.api.Connection;
import org.eclipse.jetty.client.api.Request;
import org.eclipse.jetty.util.Promise;
import org.eclipse.jetty.util.component.ContainerLifeCycle;
import org.eclipse.jetty.util.thread.Sweeper;

public abstract class PoolingHttpDestination extends HttpDestination implements Promise
{
    private final ConnectionPool connectionPool;

    public PoolingHttpDestination(HttpClient client, Origin origin)
    {
        super(client, origin);
        this.connectionPool = newConnectionPool(client);
        Sweeper sweeper = client.getBean(Sweeper.class);
        if (sweeper != null)
            sweeper.offer(connectionPool);
    }

    protected ConnectionPool newConnectionPool(HttpClient client)
    {
        return new ConnectionPool(this, client.getMaxConnectionsPerDestination(), this);
    }

    public ConnectionPool getConnectionPool()
    {
        return connectionPool;
    }

    @Override
    @SuppressWarnings("unchecked")
    public void succeeded(Connection connection)
    {
        send(true);
    }

    @Override
    public void failed(final Throwable x)
    {
        getHttpClient().getExecutor().execute(new Runnable()
        {
            @Override
            public void run()
            {
                abort(x);
            }
        });
    }

    @Override
    protected void send()
    {
        send(false);
    }

    private void send(boolean dispatch)
    {
        if (getHttpExchanges().isEmpty())
            return;
        C connection = acquire();
        if (connection != null)
            process(connection, dispatch);
    }

    @SuppressWarnings("unchecked")
    public C acquire()
    {
        return (C)connectionPool.acquire();
    }

    /**
     * 

Processes a new connection making it idle or active depending on whether requests are waiting to be sent.

*

A new connection is created when a request needs to be executed; it is possible that the request that * triggered the request creation is executed by another connection that was just released, so the new connection * may become idle.

*

If a request is waiting to be executed, it will be dequeued and executed by the new connection.

* * @param connection the new connection * @param dispatch whether to dispatch the processing to another thread */ public void process(final C connection, boolean dispatch) { HttpClient client = getHttpClient(); final HttpExchange exchange = getHttpExchanges().poll(); if (LOG.isDebugEnabled()) LOG.debug("Processing exchange {} on {} of {}", exchange, connection, this); if (exchange == null) { if (!connectionPool.release(connection)) connection.close(); if (!client.isRunning()) { if (LOG.isDebugEnabled()) LOG.debug("{} is stopping", client); connection.close(); } } else { final Request request = exchange.getRequest(); Throwable cause = request.getAbortCause(); if (cause != null) { if (LOG.isDebugEnabled()) LOG.debug("Aborted before processing {}: {}", exchange, cause); // Won't use this connection, release it back. if (!connectionPool.release(connection)) connection.close(); // It may happen that the request is aborted before the exchange // is created. Aborting the exchange a second time will result in // a no-operation, so we just abort here to cover that edge case. exchange.abort(cause); } else { if (dispatch) { client.getExecutor().execute(new Runnable() { @Override public void run() { send(connection, exchange); } }); } else { send(connection, exchange); } } } } protected abstract void send(C connection, HttpExchange exchange); @Override public void release(Connection c) { @SuppressWarnings("unchecked") C connection = (C)c; if (LOG.isDebugEnabled()) LOG.debug("{} released", connection); HttpClient client = getHttpClient(); if (client.isRunning()) { if (connectionPool.isActive(connection)) { process(connection, false); } else { if (LOG.isDebugEnabled()) LOG.debug("{} explicit", connection); } } else { if (LOG.isDebugEnabled()) LOG.debug("{} is stopped", client); connection.close(); } } @Override public void close(Connection oldConnection) { super.close(oldConnection); boolean removed = connectionPool.remove(oldConnection); if (getHttpExchanges().isEmpty()) { if (getHttpClient().isRemoveIdleDestinations() && connectionPool.isEmpty()) { // There is a race condition between this thread removing the destination // and another thread queueing a request to this same destination. // If this destination is removed, but the request queued, a new connection // will be opened, the exchange will be executed and eventually the connection // will idle timeout and be closed. Meanwhile a new destination will be created // in HttpClient and will be used for other requests. getHttpClient().removeDestination(this); } } else if (removed) { // We need to execute queued requests even if this connection failed. // We may create a connection that is not needed, but it will eventually // idle timeout, so no worries. C newConnection = acquire(); if (newConnection != null) process(newConnection, false); } } public void close() { super.close(); connectionPool.close(); } @Override public void dump(Appendable out, String indent) throws IOException { super.dump(out, indent); ContainerLifeCycle.dump(out, indent, Arrays.asList(connectionPool)); } @Override public String toString() { return String.format("%s,pool=%s", super.toString(), connectionPool); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy