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

com.stackify.api.common.http.HttpResendQueue Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright 2015 Stackify
 *
 * 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.stackify.api.common.http;

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

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.stackify.api.common.collect.SynchronizedEvictingQueue;
import com.stackify.api.common.lang.Threads;

/**
 * HttpRetransmissionQueue
 * @author Eric Martin
 */
public class HttpResendQueue {

	/**
	 * The service logger
	 */
	private static final Logger LOGGER = LoggerFactory.getLogger(HttpResendQueue.class);

	/**
	 * Try posting message 3 times before skipping it
	 */
	private static final int MAX_POST_ATTEMPTS = 3;
	
	/**
	 * The queue of requests to be retransmitted
	 */
	private final Queue resendQueue; 

	/**
	 * Constructor
	 * @param maxSize Maximum size of the queue
	 */
	public HttpResendQueue(final int maxSize) {
		this.resendQueue = new SynchronizedEvictingQueue(maxSize); 
	}
	
	/**
	 * @return Current size of the resend queue
	 */
	public int size() {
		return resendQueue.size();
	}
	
	/**
	 * Offers a failed request to the resend queue
	 * @param request The failed request
	 * @param e IOException
	 */
	public void offer(final byte[] request, final IOException e) {
		resendQueue.offer(new HttpResendQueueItem(request));
	}
	
	/**
	 * Offers a failed request to the resend queue
	 * @param request The failed request
	 * @param e HttpException
	 */
	public void offer(final byte[] request, final HttpException e) {
		if (!e.isClientError()) {
			resendQueue.offer(new HttpResendQueueItem(request));
		}
	}
	
	/**
	 * Drains the resend queue until empty or error
	 * @param httpClient The HTTP client
	 * @param path REST path
	 */
	public void drain(final HttpClient httpClient, final String path) {
		drain(httpClient, path, false);
	}
	
	/**
	 * Drains the resend queue until empty or error
	 * @param httpClient The HTTP client
	 * @param path REST path
	 * @param gzip True if the post should be gzipped, false otherwise
	 */
	public void drain(final HttpClient httpClient, final String path, final boolean gzip) {
		
		if (!resendQueue.isEmpty()) {
			
			// queued items are available for retransmission
			
			try {
				// drain resend queue until empty or first exception
				
				LOGGER.info("Attempting to retransmit {} requests", resendQueue.size());
				
				while (!resendQueue.isEmpty()) {
					
					// get next item off queue
					
					HttpResendQueueItem item = resendQueue.peek();
					
					try {
						
						// retransmit queued request
						
						byte[] jsonBytes = item.getJsonBytes();
						httpClient.post(path, jsonBytes, gzip);
						
						// retransmission successful
						// remove from queue and sleep for 250ms
						
						resendQueue.remove();
						
						Threads.sleepQuietly(250, TimeUnit.MILLISECONDS);
						
					} catch (Throwable t) {
						
						// retransmission failed
						// increment the item's counter
						
						item.failed();
						
						// remove it from the queue if we have had MAX_POST_ATTEMPTS (3) failures for the same request
						
						if (MAX_POST_ATTEMPTS <= item.getNumFailures())
						{
							resendQueue.remove();
						}
						
						// rethrow original exception from retransmission
						
						throw t;
					}
				}
			} catch (Throwable t) {
				LOGGER.info("Failure retransmitting queued requests", t);
			}
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy