Java tutorial
/* * Copyright Ekagra and SemanticBits, LLC * * Distributed under the OSI-approved BSD 3-Clause License. * See http://ncip.github.com/ihub/LICENSE.txt for details. */ package gov.nih.nci.integration.invoker; import gov.nih.nci.integration.catissue.CaTissueParticipantClient; import gov.nih.nci.integration.domain.ServiceInvocationMessage; import gov.nih.nci.integration.domain.StrategyIdentifier; import gov.nih.nci.integration.exception.IntegrationError; import gov.nih.nci.integration.exception.IntegrationException; import gov.nih.nci.integration.transformer.XSLTTransformer; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; import java.util.Set; import org.apache.commons.lang.exception.ExceptionUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * This is Strategy class for Update Participant Registration * * @author Vinodh */ public class CaTissueUpdateRegistrationServiceInvocationStrategy implements ServiceInvocationStrategy { private static final Logger LOG = LoggerFactory .getLogger(CaTissueUpdateRegistrationServiceInvocationStrategy.class); private final int retryCount; private final CaTissueParticipantClient caTissueParticipantClient; private final XSLTTransformer xsltTransformer; private final Map<String, IntegrationError> msgToErrMap; /** * Constructor * * @param retryCount - retryCount * @param caTissueParticipantClient - caTissueParticipantClient * @param xsltTransformer - xsltTransformer */ public CaTissueUpdateRegistrationServiceInvocationStrategy(int retryCount, CaTissueParticipantClient caTissueParticipantClient, XSLTTransformer xsltTransformer) { super(); this.retryCount = retryCount; this.caTissueParticipantClient = caTissueParticipantClient; this.xsltTransformer = xsltTransformer; final HashMap<String, IntegrationError> msgToErrMapBase = new LinkedHashMap<String, IntegrationError>(); msgToErrMapBase.put("Error authenticating user", IntegrationError._1019); msgToErrMapBase.put("Exception occurred while performing XSL transformation on Date field.", IntegrationError._1028); msgToErrMapBase.put("CaTissue does not contain a participant with the unique identifier", IntegrationError._1033); msgToErrMapBase.put("Participant does not contain the unique identifier SSN", IntegrationError._1034); msgToErrMapBase.put("Participant does not contain the unique medical identifier", IntegrationError._1035); msgToErrMapBase.put( "Either Title is not selected or Date format is not correct in Collection Protocol Registration", IntegrationError._1098); msgToErrMapBase.put("Exception occurred while XSL transformation.", IntegrationError._1099); msgToErrMapBase.put("Study can't be changed while updating the Participant.", IntegrationError._1106); msgToErrMap = Collections.synchronizedMap(msgToErrMapBase); } @Override public int getRetryCount() { return retryCount; } @Override public StrategyIdentifier getStrategyIdentifier() { return StrategyIdentifier.CATISSUE_UPDATE_REGISTRATION; } @Override public ServiceInvocationResult invoke(ServiceInvocationMessage msg) { ServiceInvocationResult serviceInvocationResult = new ServiceInvocationResult(); try { final String participantXMLStr = transformToParticipantXML(msg.getMessage().getRequest()); serviceInvocationResult = caTissueParticipantClient.updateRegistrationParticipant(participantXMLStr); } catch (IntegrationException e) { serviceInvocationResult.setInvocationException(e); } handleException(serviceInvocationResult); return serviceInvocationResult; } @Override public ServiceInvocationResult rollback(ServiceInvocationMessage msg) { ServiceInvocationResult serviceInvocationResult = new ServiceInvocationResult(); final String participantXMLStr = msg.getOriginalData(); serviceInvocationResult = caTissueParticipantClient.updateRegistrationParticipant(participantXMLStr); handleException(serviceInvocationResult); return serviceInvocationResult; } private String transformToParticipantXML(String message) throws IntegrationException { String participantXMLStr = null; InputStream is = null; ByteArrayOutputStream os = null; try { os = new ByteArrayOutputStream(); is = new ByteArrayInputStream(message.getBytes()); xsltTransformer.transform(null, is, os); participantXMLStr = new String(os.toByteArray()); } catch (IntegrationException e) { LOG.debug("Error transforming to catissue participant XML!", e); throw e; } finally { try { is.close(); } catch (IOException e) { LOG.error( "CaTissueUpdateRegistrationServiceInvocationStrategy.. Exception while closing InputStream : " + e); } try { os.close(); } catch (IOException e) { LOG.error( "CaTissueUpdateRegistrationServiceInvocationStrategy.. Exception while closing OutputStream : " + e); } } return participantXMLStr; } private void handleException(ServiceInvocationResult result) { if (!result.isFault()) { return; } final Exception exception = result.getInvocationException(); Throwable cause = exception; while (cause instanceof IntegrationException) { cause = cause.getCause(); } if (cause == null) { return; } final String[] throwableMsgs = getThrowableMsgs(cause); IntegrationException newie = (IntegrationException) exception; final Set<String> keys = msgToErrMap.keySet(); for (String lkupStr : keys) { final String msg = getMatchingMsg(lkupStr, throwableMsgs); if (msg != null) { newie = new IntegrationException(msgToErrMap.get(lkupStr), cause, msg); break; } } result.setInvocationException(newie); } private String[] getThrowableMsgs(Throwable cause) { final Throwable[] throwables = ExceptionUtils.getThrowables(cause); String[] msgs = new String[throwables.length]; for (int i = 0; i < throwables.length; i++) { msgs[i] = throwables[i].getMessage(); } return msgs; } private String getMatchingMsg(String lookupStr, String[] msgs) { for (String string : msgs) { if (string.contains(lookupStr)) { return string; } } return null; } }