/* * Copyright (c) 2004-2011 Marco Maccaferri and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Marco Maccaferri - initial API and implementation */ package org.eclipsetrader.borsaitalia.internal.ui.wizards; import java.util.ArrayList; import java.util.Calendar; import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.core.runtime.jobs.Job; import org.eclipse.osgi.util.NLS; import org.eclipsetrader.borsaitalia.internal.Activator; import org.eclipsetrader.borsaitalia.internal.core.BackfillConnector; import org.eclipsetrader.core.feed.History; import org.eclipsetrader.core.feed.HistoryDay; import org.eclipsetrader.core.feed.IFeedIdentifier; import org.eclipsetrader.core.feed.IFeedProperties; import org.eclipsetrader.core.feed.IHistory; import org.eclipsetrader.core.feed.IOHLC; import org.eclipsetrader.core.feed.TimeSpan; import org.eclipsetrader.core.instruments.ISecurity; import org.eclipsetrader.core.repositories.IRepositoryService; import org.eclipsetrader.core.repositories.IStoreObject; import org.osgi.framework.BundleContext; import org.osgi.framework.ServiceReference; public class DataImportJob extends Job { public static final int FULL = 0; public static final int INCREMENTAL = 1; public static final int FULL_INCREMENTAL = 2; private ISecurity[] securities; private int mode; private TimeSpan[] timeSpan; private Date fromDate; private Date toDate; private BackfillConnector connector = new BackfillConnector(); public DataImportJob(ISecurity[] securities, int mode, Date fromDate, Date toDate, TimeSpan[] timeSpan) { super(Messages.DataImportJob_Name); this.securities = securities; this.mode = mode; this.fromDate = fromDate; this.toDate = toDate; this.timeSpan = timeSpan; } /* (non-Javadoc) * @see org.eclipse.core.runtime.jobs.Job#run(org.eclipse.core.runtime.IProgressMonitor) */ @Override protected IStatus run(IProgressMonitor monitor) { ISecurity[] filteredList = getFilteredSecurities(securities); monitor.beginTask(getName(), filteredList.length * timeSpan.length); try { IRepositoryService repositoryService = getRepositoryService(); for (ISecurity security : filteredList) { if (monitor.isCanceled()) { return Status.CANCEL_STATUS; } monitor.subTask(security.getName().replace("&", "&&")); //$NON-NLS-1$ //$NON-NLS-2$ try { IStoreObject storeObject = (IStoreObject) security.getAdapter(IStoreObject.class); IFeedIdentifier identifier = (IFeedIdentifier) security.getAdapter(IFeedIdentifier.class); if (identifier != null) { Date beginDate = fromDate; Date endDate = toDate; IHistory history = repositoryService.getHistoryFor(security); Map<Date, IOHLC> dailyDataMap = new HashMap<Date, IOHLC>(2048); if (history != null && mode != FULL) { for (IOHLC d : history.getOHLC()) { dailyDataMap.put(d.getDate(), d); } if (mode == FULL_INCREMENTAL) { if (history.getFirst() != null) { beginDate = history.getFirst().getDate(); if (fromDate.before(beginDate)) { beginDate = fromDate; } } } else if (mode == INCREMENTAL) { if (history.getLast() != null) { beginDate = history.getLast().getDate(); } endDate = Calendar.getInstance().getTime(); } } Map<TimeSpan, IOHLC[]> dataMap = new HashMap<TimeSpan, IOHLC[]>(); for (TimeSpan currentTimeSpan : timeSpan) { if (monitor.isCanceled()) { return Status.CANCEL_STATUS; } if (currentTimeSpan.equals(TimeSpan.days(1))) { monitor.subTask(security.getName().replace("&", "&&")); //$NON-NLS-1$ //$NON-NLS-2$ IOHLC[] ohlc = connector.backfillHistory(identifier, beginDate, endDate, currentTimeSpan); if (ohlc != null && ohlc.length != 0) { dataMap.put(currentTimeSpan, ohlc); } } else { monitor.subTask(NLS.bind("{0} ({1})", new Object[] { //$NON-NLS-1$ security.getName().replace("&", "&&"), //$NON-NLS-1$ //$NON-NLS-2$ currentTimeSpan.toString() })); IOHLC[] ohlc = connector.backfillHistory(identifier, beginDate, endDate, currentTimeSpan); if (ohlc != null && ohlc.length != 0) { dataMap.put(currentTimeSpan, ohlc); } } monitor.worked(1); } if (dataMap.size() == timeSpan.length) { for (TimeSpan currentTimeSpan : dataMap.keySet()) { IOHLC[] ohlc = dataMap.get(currentTimeSpan); if (ohlc == null) { continue; } if (currentTimeSpan.equals(TimeSpan.days(1))) { for (IOHLC d : ohlc) { dailyDataMap.put(d.getDate(), d); } ohlc = dailyDataMap.values().toArray(new IOHLC[dailyDataMap.values().size()]); if (history == null) { history = new History(security, ohlc); } else if (history instanceof History) { ((History) history).setOHLC(ohlc); } repositoryService.moveAdaptable(new IHistory[] { history }, storeObject.getStore().getRepository()); } else { IHistory intradayHistory = history.getSubset(beginDate, endDate, currentTimeSpan); if (intradayHistory instanceof HistoryDay) { ((HistoryDay) intradayHistory).setOHLC(ohlc); } repositoryService.moveAdaptable(new IHistory[] { intradayHistory }, storeObject.getStore().getRepository()); } } } else { Status status = new Status(IStatus.WARNING, Activator.PLUGIN_ID, 0, Messages.DataImportJob_MissingDataFor + security.getName(), null); Activator.log(status); } } } catch (Exception e) { Status status = new Status(IStatus.ERROR, Activator.PLUGIN_ID, 0, Messages.DataImportJob_ErrorDownloadingDataFor + security.getName(), e); Activator.log(status); } } } finally { monitor.done(); } return Status.OK_STATUS; } protected ISecurity[] getFilteredSecurities(ISecurity[] list) { List<ISecurity> l = new ArrayList<ISecurity>(); for (ISecurity security : list) { IFeedIdentifier identifier = (IFeedIdentifier) security.getAdapter(IFeedIdentifier.class); if (identifier != null) { String code = identifier.getSymbol(); String isin = null; IFeedProperties properties = (IFeedProperties) identifier.getAdapter(IFeedProperties.class); if (properties != null) { if (properties.getProperty(Activator.PROP_ISIN) != null) { isin = properties.getProperty(Activator.PROP_ISIN); } if (properties.getProperty(Activator.PROP_CODE) != null) { code = properties.getProperty(Activator.PROP_CODE); } } if (code != null && isin != null) { l.add(security); } } } Collections.sort(l, new Comparator<ISecurity>() { @Override public int compare(ISecurity o1, ISecurity o2) { return o1.getName().compareToIgnoreCase(o2.getName()); } }); return l.toArray(new ISecurity[l.size()]); } protected IRepositoryService getRepositoryService() { IRepositoryService service = null; BundleContext context = Activator.getDefault().getBundle().getBundleContext(); ServiceReference serviceReference = context.getServiceReference(IRepositoryService.class.getName()); if (serviceReference != null) { service = (IRepositoryService) context.getService(serviceReference); context.ungetService(serviceReference); } return service; } }