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

com.avanza.astrix.core.AstrixRemoteResult Maven / Gradle / Ivy

/*
 * Copyright 2014 Avanza Bank AB
 *
 * 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.avanza.astrix.core;

import java.util.Objects;

/**
 * 
 * @author Elias Lindholm (elilin)
 *
 * @param 
 */
public abstract class AstrixRemoteResult {
	
	private static class ServiceInvocationExceptionResult extends AstrixRemoteResult {
		private final ServiceInvocationException exception;
		private final CorrelationId correlationId;
		
		public ServiceInvocationExceptionResult(ServiceInvocationException exception, CorrelationId correlationId) {
			this.exception = exception;
			this.correlationId = correlationId;
		}

		public T getResult() {
			exception.reThrow(correlationId);
			return null;
		}
		
		public boolean hasThrownException() {
			return true;
		}

		@Override
		public boolean equals(Object obj) {
			if (this == obj) {
				return true;
			}
			if (obj == null) {
				return false;
			}
			if (getClass() != obj.getClass()) {
				return false;
			}
			@SuppressWarnings("unchecked")
			ServiceInvocationExceptionResult other = (ServiceInvocationExceptionResult) obj;
			return Objects.equals(exception, other.exception);
		}
		
		@Override
		public int hashCode() {
			return Objects.hash(exception, correlationId);
		}
		
		@Override
		public Exception getThrownException() {
			return this.exception;
		}
		
	}
	
	private static class SuccessfulResult extends AstrixRemoteResult {
		
		private final T result;
		
		public SuccessfulResult(T result) {
			this.result = result;
		}

		public T getResult() {
			return result;
		}
		
		public boolean hasThrownException() {
			return false;
		}

		@Override
		public boolean equals(Object obj) {
			if (this == obj) {
				return true;
			}
			if (obj == null) {
				return false;
			}
			if (getClass() != obj.getClass()) {
				return false;
			}
			@SuppressWarnings("unchecked")
			SuccessfulResult other = (SuccessfulResult) obj;
			return Objects.equals(result, other.result);
		}
		
		@Override
		public int hashCode() {
			return Objects.hash(result);
		}
		
		@Override
		public Exception getThrownException() {
			return null;
		}
	}
	
	private static class ServiceUnavailableResult extends AstrixRemoteResult {
		
		private final CorrelationId correlationId;
		private final String msg;
		
		public ServiceUnavailableResult(String msg, CorrelationId correlationId) {
			this.msg = msg;
			this.correlationId = correlationId;
		}

		public T getResult() {
			throw getThrownException();
		}
		
		public boolean hasThrownException() {
			return true;
		}

		@Override
		public boolean equals(Object obj) {
			if (this == obj) {
				return true;
			}
			if (obj == null) {
				return false;
			}
			if (getClass() != obj.getClass()) {
				return false;
			}
			@SuppressWarnings("unchecked")
			ServiceUnavailableResult other = (ServiceUnavailableResult) obj;
			return Objects.equals(correlationId, other.correlationId) 
					&& Objects.equals(msg, other.msg);
		}
		
		@Override
		public int hashCode() {
			return Objects.hash(msg, correlationId);
		}
		
		@Override
		public ServiceUnavailableException getThrownException() {
			return new ServiceUnavailableException(msg + " correlationId=" + correlationId);
		}
	}
	
	private AstrixRemoteResult() {
		
	}
	public static  AstrixRemoteResult voidResult() {
		return new SuccessfulResult<>(null);
	}
	
	public static  AstrixRemoteResult successful(T result) {
		return new SuccessfulResult<>(result);
	}
	
	public static  AstrixRemoteResult failure(ServiceInvocationException exception, CorrelationId correlationId) {
		return new ServiceInvocationExceptionResult<>(exception, correlationId);
	}
	
	public static  AstrixRemoteResult unavailable(String msg, CorrelationId correlationId) {
		return new ServiceUnavailableResult(msg, correlationId);
	}
	
	/**
	 * Returns the result from the underlying service invocation.
	 * 
	 * @throws Exception - If the underlying service invocation threw an exception. 
	 * 
	 * @return
	 */
	public abstract T getResult();

	/**
	 * 
	 * @return
	 */
	public abstract boolean hasThrownException();
	
	/**
	 * @return The exception if the underlying service invocation threw an exception.   
	 */
	public abstract Exception getThrownException();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy