com.intuit.ipp.interceptors.IntuitInterceptorProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ipp-v3-java-devkit Show documentation
Show all versions of ipp-v3-java-devkit Show documentation
IPP Java V3 DevKit Project - Core
/*******************************************************************************
* Copyright (c) 2017 Intuit
*
* 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.intuit.ipp.interceptors;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import com.intuit.ipp.exception.FMSException;
import com.intuit.ipp.services.CallbackMessage;
import com.intuit.ipp.util.Config;
import com.intuit.ipp.util.Logger;
import com.intuit.ipp.util.StringUtils;
/**
* Class to provide the provision to add interceptors in the order those have to be executed.
*
*/
public class IntuitInterceptorProvider implements Callable {
/**
* logger instance
*/
private static final org.slf4j.Logger LOG = Logger.getLogger();
/**
* variable requestInterceptors is used for keeping the request interceptors
*/
private List requestInterceptors = new ArrayList();
/**
* variable responseInterceptors is used for keeping the response interceptors
*/
private List responseInterceptors = new ArrayList();
/**
* variable intuitMessage
*/
private IntuitMessage intuitMessage = null;
/**
* Constructor IntuitInterceptorProvider
*/
public IntuitInterceptorProvider() {
requestInterceptors.add(new PrepareRequestInterceptor());
requestInterceptors.add(new SerializeInterceptor());
requestInterceptors.add(new CompressionInterceptor());
//requestInterceptors.add(new ConnectionInterceptor());
requestInterceptors.add(getConnectionInterceptor());
responseInterceptors.add(new DecompressionInterceptor());
responseInterceptors.add(new DeserializeInterceptor());
responseInterceptors.add(new HandleResponseInterceptor());
}
/**
* Method to execute the interceptors (request and response) which are added
*
* @param intuitMessage the intuit message
* @throws FMSException the FMSException
*/
public void executeInterceptors(final IntuitMessage intuitMessage) throws FMSException {
executeRequestInterceptors(intuitMessage);
executeResponseInterceptors(intuitMessage);
}
/**
* Method to execute only request interceptors which are added to requestInterceptors list
*
* @param intuitMessage the intuit message
* @throws FMSException the FMSException
*/
protected void executeRequestInterceptors(final IntuitMessage intuitMessage) throws FMSException {
Iterator itr = requestInterceptors.iterator();
while (itr.hasNext()) {
Interceptor interceptor = itr.next();
interceptor.execute(intuitMessage);
}
}
/**
* Method to execute only response interceptors which are added to the responseInterceptors list
*
* @param intuitMessage the intuit message
* @throws FMSException the FMSException
*/
protected void executeResponseInterceptors(final IntuitMessage intuitMessage) throws FMSException {
Iterator itr = responseInterceptors.iterator();
while (itr.hasNext()) {
Interceptor interceptor = itr.next();
interceptor.execute(intuitMessage);
}
}
/**
* Method to execute interceptors in case of Async operations.
*
* @param intuitMessage the intuit message
*/
public void executeAsyncInterceptors(final IntuitMessage intuitMessage) {
this.intuitMessage = intuitMessage;
ExecutorService executorService = Executors.newSingleThreadExecutor();
executorService.submit(this);
}
private Interceptor getConnectionInterceptor() {
String httpTransport = Config.getProperty(Config.HTTP_TRANSPORT);
if (StringUtils.hasText(httpTransport) && httpTransport.equals(HTTPURLConnectionInterceptor.HTTP_URL_CONNECTION)) {
return new HTTPURLConnectionInterceptor();
}
return new HTTPClientConnectionInterceptor();
}
/**
* Callable interface method will be executed
*
* @return Void the Class object representing the Java keyword void
* @throws Exception the callable exception
*/
@Override
public Void call() throws FMSException {
CallbackMessage callbackMessage = new CallbackMessage();
try {
executeInterceptors(intuitMessage);
} catch (FMSException e) {
callbackMessage.setFMSException(e);
LOG.error("Exception in interceptor flow", e);
}
// set callbackMessage
intuitMessage.getResponseElements().setCallbackMessage(callbackMessage);
// execute callback handler interceptor
new CallbackHandlerInterceptor().execute(intuitMessage);
return null;
}
/**
* Returns current request interceptors.
* It is used to extend and overwrite existing order
* @return interceptors list
*/
protected List getRequestInterceptors() {
return requestInterceptors;
}
/**
* Updates interceptors
* @param requestInterceptors list
*/
protected void setRequestInterceptors(List requestInterceptors) {
this.requestInterceptors = requestInterceptors;
}
}