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

com.google.maps.internal.RateLimitExecutorService Maven / Gradle / Ivy

Go to download

Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/

There is a newer version: 2.2.0
Show newest version
/*
 * Copyright 2014 Google Inc. All rights reserved.
 *
 *
 * Licensed 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.
 */

package com.google.maps.internal;

import com.google.maps.internal.ratelimiter.RateLimiter;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.SynchronousQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/** Rate Limit Policy for Google Maps Web Services APIs. */
public class RateLimitExecutorService implements ExecutorService, Runnable {

  private static final Logger LOG =
      LoggerFactory.getLogger(RateLimitExecutorService.class.getName());
  private static final int DEFAULT_QUERIES_PER_SECOND = 50;

  // It's important we set Ok's second arg to threadFactory(.., true) to ensure the threads are
  // killed when the app exits. For synchronous requests this is ideal but it means any async
  // requests still pending after termination will be killed.
  private final ExecutorService delegate =
      new ThreadPoolExecutor(
          Runtime.getRuntime().availableProcessors(),
          Integer.MAX_VALUE,
          60,
          TimeUnit.SECONDS,
          new SynchronousQueue(),
          threadFactory("Rate Limited Dispatcher", true));

  private final BlockingQueue queue = new LinkedBlockingQueue<>();
  private final RateLimiter rateLimiter =
      RateLimiter.create(DEFAULT_QUERIES_PER_SECOND, 1, TimeUnit.SECONDS);

  final Thread delayThread;

  public RateLimitExecutorService() {
    setQueriesPerSecond(DEFAULT_QUERIES_PER_SECOND);
    delayThread = new Thread(this);
    delayThread.setDaemon(true);
    delayThread.setName("RateLimitExecutorDelayThread");
    delayThread.start();
  }

  public void setQueriesPerSecond(int maxQps) {
    this.rateLimiter.setRate(maxQps);
  }

  /** Main loop. */
  @Override
  public void run() {
    try {
      while (!delegate.isShutdown()) {
        this.rateLimiter.acquire();
        Runnable r = queue.take();
        if (!delegate.isShutdown()) {
          delegate.execute(r);
        }
      }
    } catch (InterruptedException ie) {
      LOG.info("Interrupted", ie);
    }
  }

  private static ThreadFactory threadFactory(final String name, final boolean daemon) {
    return new ThreadFactory() {
      @Override
      public Thread newThread(Runnable runnable) {
        Thread result = new Thread(runnable, name);
        result.setDaemon(daemon);
        return result;
      }
    };
  }

  @Override
  public void execute(Runnable runnable) {
    queue.add(runnable);
  }

  @Override
  public void shutdown() {
    delegate.shutdown();
    // we need this to break out of queue.take()
    execute(
        new Runnable() {
          @Override
          public void run() {
            // do nothing
          }
        });
  }

  // Everything below here is straight delegation.

  @Override
  public List shutdownNow() {
    List tasks = delegate.shutdownNow();
    // we need this to break out of queue.take()
    execute(
        new Runnable() {
          @Override
          public void run() {
            // do nothing
          }
        });
    return tasks;
  }

  @Override
  public boolean isShutdown() {
    return delegate.isShutdown();
  }

  @Override
  public boolean isTerminated() {
    return delegate.isTerminated();
  }

  @Override
  public boolean awaitTermination(long l, TimeUnit timeUnit) throws InterruptedException {
    return delegate.awaitTermination(l, timeUnit);
  }

  @Override
  public  Future submit(Callable tCallable) {
    return delegate.submit(tCallable);
  }

  @Override
  public  Future submit(Runnable runnable, T t) {
    return delegate.submit(runnable, t);
  }

  @Override
  public Future submit(Runnable runnable) {
    return delegate.submit(runnable);
  }

  @Override
  public  List> invokeAll(Collection> callables)
      throws InterruptedException {
    return delegate.invokeAll(callables);
  }

  @Override
  public  List> invokeAll(
      Collection> callables, long l, TimeUnit timeUnit)
      throws InterruptedException {
    return delegate.invokeAll(callables, l, timeUnit);
  }

  @Override
  public  T invokeAny(Collection> callables)
      throws InterruptedException, ExecutionException {
    return delegate.invokeAny(callables);
  }

  @Override
  public  T invokeAny(Collection> callables, long l, TimeUnit timeUnit)
      throws InterruptedException, ExecutionException, TimeoutException {
    return delegate.invokeAny(callables, l, timeUnit);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy