/* * JBoss, Home of Professional Open Source. * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. Some portions may be licensed * to Red Hat, Inc. under one or more contributor license agreements. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. */ package org.teiid.translator.salesforce.execution; import java.sql.Timestamp; import java.util.ArrayList; import java.util.GregorianCalendar; import java.util.List; import javax.resource.ResourceException; import javax.xml.datatype.DatatypeConfigurationException; import javax.xml.datatype.DatatypeFactory; import org.teiid.language.Argument; import org.teiid.language.Call; import org.teiid.translator.TranslatorException; /** * * The structure of the getUpdated procedure is: * Salesforce object type: String: IN param * startDate: datatime: IN param * enddate: datetime: IN param * latestDateCovered: datetime: OUT param * getUpdatedResult: resultset: OUT param * */ public class GetUpdatedExecutionImpl implements SalesforceProcedureExecution { private ProcedureExecutionParent parent; private UpdatedResult updatedResult; private int idIndex = 0; DatatypeFactory factory; public GetUpdatedExecutionImpl( ProcedureExecutionParent procedureExecutionParent) throws TranslatorException { this.parent = procedureExecutionParent; try { factory = DatatypeFactory.newInstance(); } catch (DatatypeConfigurationException e) { throw new TranslatorException(e.getMessage()); } } @Override public void cancel() { // nothing to do here } @Override public void close() { // nothing to do here } @Override public void execute(ProcedureExecutionParent procedureExecutionParent) throws TranslatorException { try { Call command = parent.getCommand(); List<Argument> params = command.getArguments(); Argument object = params.get(OBJECT); String objectName = (String) object.getArgumentValue().getValue(); Argument start = params.get(STARTDATE); Timestamp startTime = (Timestamp) start.getArgumentValue().getValue(); GregorianCalendar startCalendar = (GregorianCalendar) GregorianCalendar.getInstance(); startCalendar.setTime(startTime); Argument end = params.get(ENDDATE); Timestamp endTime = (Timestamp) end.getArgumentValue().getValue(); GregorianCalendar endCalendar = (GregorianCalendar) GregorianCalendar.getInstance(); endCalendar.setTime(endTime); updatedResult = parent.getConnection().getUpdated(objectName, startCalendar, endCalendar); } catch (ResourceException e) { throw new TranslatorException(e); } } @Override public List<Timestamp> getOutputParameterValues() { List<Timestamp> result = new ArrayList<Timestamp>(1); result.add(new Timestamp(updatedResult.getLatestDateCovered().getTimeInMillis())); return result; } @Override public List<?> next() { List<Object> result = null; if(updatedResult.getIDs() != null && idIndex < updatedResult.getIDs().size()){ result = new ArrayList<Object>(1); result.add(updatedResult.getIDs().get(idIndex)); idIndex++; } return result; } }