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

org.asynchttpclient.shaded.netty.channel.CombinedConnectionSemaphore Maven / Gradle / Ivy

/*
 * Copyright (c) 2018 AsyncHttpClient Project. All rights reserved.
 *
 * This program is licensed to you under the Apache License Version 2.0,
 * and you may not use this file except in compliance with the Apache License Version 2.0.
 * You may obtain a copy of the Apache License Version 2.0 at
 *     http://www.apache.org/licenses/LICENSE-2.0.
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the Apache License Version 2.0 is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
 */
package org.asynchttpclient.shaded.netty.channel;

import java.io.IOException;
import java.util.concurrent.TimeUnit;

/**
 * A combined {@link ConnectionSemaphore} with two limits - a global limit and a per-host limit
 */
public class CombinedConnectionSemaphore extends PerHostConnectionSemaphore {
  protected final MaxConnectionSemaphore globalMaxConnectionSemaphore;

  CombinedConnectionSemaphore(int maxConnections, int maxConnectionsPerHost, int acquireTimeout) {
    super(maxConnectionsPerHost, acquireTimeout);
    this.globalMaxConnectionSemaphore = new MaxConnectionSemaphore(maxConnections, acquireTimeout);
  }

  @Override
  public void acquireChannelLock(Object partitionKey) throws IOException {
    long remainingTime = super.acquireTimeout > 0 ? acquireGlobalTimed(partitionKey) : acquireGlobal(partitionKey);

    try {
      if (remainingTime < 0 || !getFreeConnectionsForHost(partitionKey).tryAcquire(remainingTime, TimeUnit.MILLISECONDS)) {
        releaseGlobal(partitionKey);
        throw tooManyConnectionsPerHost;
      }
    } catch (InterruptedException e) {
      releaseGlobal(partitionKey);
      throw new RuntimeException(e);
    }
  }

  protected void releaseGlobal(Object partitionKey) {
    this.globalMaxConnectionSemaphore.releaseChannelLock(partitionKey);
  }

  protected long acquireGlobal(Object partitionKey) throws IOException {
    this.globalMaxConnectionSemaphore.acquireChannelLock(partitionKey);
    return 0;
  }

  /*
   * Acquires the global lock and returns the remaining time, in millis, to acquire the per-host lock
   */
  protected long acquireGlobalTimed(Object partitionKey) throws IOException {
    long beforeGlobalAcquire = System.currentTimeMillis();
    acquireGlobal(partitionKey);
    long lockTime = System.currentTimeMillis() - beforeGlobalAcquire;
    return this.acquireTimeout - lockTime;
  }

  @Override
  public void releaseChannelLock(Object partitionKey) {
    this.globalMaxConnectionSemaphore.releaseChannelLock(partitionKey);
    super.releaseChannelLock(partitionKey);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy