/* *------------------------------------------------------------------------------ * Copyright (C) 2006-2008 University of Dundee. All rights reserved. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * *------------------------------------------------------------------------------ */ package org.openmicroscopy.shoola.agents.metadata; import java.util.Collection; import java.util.List; import org.openmicroscopy.shoola.agents.metadata.view.MetadataViewer; import org.openmicroscopy.shoola.env.data.model.TimeRefObject; import omero.gateway.SecurityContext; import org.openmicroscopy.shoola.env.data.views.CallHandle; import omero.gateway.model.AnnotationData; import omero.gateway.model.DataObject; /** * Adds or removes the annotations to the objects contained in the specified * <code>DataObject</code>s. * * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @author Donald MacDonald      * <a href="mailto:donald@lifesci.dundee.ac.uk">donald@lifesci.dundee.ac.uk</a> * @version 3.0 * @since OME3.0 */ public class DataBatchSaver extends MetadataLoader { /** The objects the data are related to. */ private Collection<DataObject> data; /** The annotation to add to the data object. */ private List<AnnotationData> toAdd; /** The annotation to remove from the data object. */ private List<Object> toRemove; /** The object hosting the time period. */ private TimeRefObject timeRefObject; /** Handle to the asynchronous call so that we can cancel it. */ private CallHandle handle; /** * Creates a new instance. * * @param viewer The viewer this data loader is for. * Mustn't be <code>null</code>. * @param ctx The security context. * @param data The objects the data are related to. * Mustn't be <code>null</code>. * @param toAdd The collection of annotations to add. * @param toRemove The collection of annotations to remove. * @param loaderID The identifier of the loader. */ public DataBatchSaver(MetadataViewer viewer, SecurityContext ctx, Collection<DataObject> data, List<AnnotationData> toAdd, List<Object> toRemove, int loaderID) { super(viewer, null, loaderID); if (data == null) throw new IllegalArgumentException("No object specified."); this.data = data; this.toAdd = toAdd; this.toRemove = toRemove; } /** * Creates a new instance. * * @param viewer The viewer this data loader is for. * Mustn't be <code>null</code>. * @param ctx The security context. * @param timeRefObject The object hosting the time period. * Mustn't be <code>null</code>. * @param toAdd The collection of annotations to add. * @param toRemove The collection of annotations to remove. * @param loaderID The identifier of the loader. */ public DataBatchSaver(MetadataViewer viewer, SecurityContext ctx, TimeRefObject timeRefObject, List<AnnotationData> toAdd, List<Object> toRemove, int loaderID) { super(viewer, null, loaderID); if (timeRefObject == null) throw new IllegalArgumentException("No object specified."); this.timeRefObject = timeRefObject; this.toAdd = toAdd; this.toRemove = toRemove; } /** * Loads the data. * @see MetadataLoader#load() */ public void load() { long userID = MetadataViewerAgent.getUserDetails().getId(); if (timeRefObject != null) handle = mhView.saveBatchData(ctx, timeRefObject, toAdd, toRemove, userID, this); else handle = mhView.saveBatchData(ctx, data, toAdd, toRemove, userID, this); } /** * Cancels the data loading. * @see MetadataLoader#cancel() */ public void cancel() { handle.cancel(); } /** * Feeds the result back to the viewer. * @see MetadataLoader#handleResult(Object) */ public void handleResult(Object result) { if (viewer.getState() == MetadataViewer.DISCARDED) return; //Async cancel. viewer.onDataSave((List) result); } }