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

org.kohsuke.github.RateLimitHandler Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha-2
Show newest version
package org.kohsuke.github;

import org.kohsuke.github.connector.GitHubConnectorResponse;

import java.io.IOException;
import java.io.InterruptedIOException;
import java.net.HttpURLConnection;

import javax.annotation.Nonnull;

// TODO: Auto-generated Javadoc
/**
 * Pluggable strategy to determine what to do when the API rate limit is reached.
 *
 * @author Kohsuke Kawaguchi
 * @see GitHubBuilder#withRateLimitHandler(GitHubRateLimitHandler)
 *      GitHubBuilder#withRateLimitHandler(GitHubRateLimitHandler)
 * @see AbuseLimitHandler
 * @deprecated Switch to {@link GitHubRateLimitHandler} or even better provide {@link RateLimitChecker}s.
 */
@Deprecated
public abstract class RateLimitHandler extends GitHubRateLimitHandler {

    /**
     * Called when the library encounters HTTP error indicating that the API rate limit has been exceeded.
     *
     * 

* Any exception thrown from this method will cause the request to fail, and the caller of github-api will receive * an exception. If this method returns normally, another request will be attempted. For that to make sense, the * implementation needs to wait for some time. * * @param connectorResponse * Response information for this request. * * @throws IOException * the io exception * @see API documentation from GitHub */ public void onError(@Nonnull GitHubConnectorResponse connectorResponse) throws IOException { GHIOException e = new HttpException("API rate limit reached", connectorResponse.statusCode(), connectorResponse.header("Status"), connectorResponse.request().url().toString()).withResponseHeaderFields(connectorResponse.allHeaders()); onError(e, connectorResponse.toHttpURLConnection()); } /** * Called when the library encounters HTTP error indicating that the API rate limit is reached. * *

* Any exception thrown from this method will cause the request to fail, and the caller of github-api will receive * an exception. If this method returns normally, another request will be attempted. For that to make sense, the * implementation needs to wait for some time. * * @param e * Exception from Java I/O layer. If you decide to fail the processing, you can throw this exception (or * wrap this exception into another exception and throw it.) * @param uc * Connection that resulted in an error. Useful for accessing other response headers. * @throws IOException * the io exception * @see API documentation from GitHub */ @Deprecated public abstract void onError(IOException e, HttpURLConnection uc) throws IOException; /** * Block until the API rate limit is reset. Useful for long-running batch processing. */ @Deprecated public static final RateLimitHandler WAIT = new RateLimitHandler() { @Override public void onError(IOException e, HttpURLConnection uc) throws IOException { try { Thread.sleep(parseWaitTime(uc)); } catch (InterruptedException x) { throw (InterruptedIOException) new InterruptedIOException().initCause(e); } } private long parseWaitTime(HttpURLConnection uc) { String v = uc.getHeaderField("X-RateLimit-Reset"); if (v == null) return 10000; // can't tell return Math.max(10000, Long.parseLong(v) * 1000 - System.currentTimeMillis()); } }; /** * Fail immediately. */ @Deprecated public static final RateLimitHandler FAIL = new RateLimitHandler() { @Override public void onError(IOException e, HttpURLConnection uc) throws IOException { throw e; } }; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy