/* *------------------------------------------------------------------------------ * Copyright (C) 2006-2012 University of Dundee & Open Microscopy Environment. * 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.env.data.views.calls; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.openmicroscopy.shoola.env.data.OmeroDataService; import org.openmicroscopy.shoola.env.data.RequestCallback; import org.openmicroscopy.shoola.env.data.model.TransferableObject; import omero.gateway.SecurityContext; import org.openmicroscopy.shoola.env.data.views.BatchCall; import org.openmicroscopy.shoola.env.data.views.BatchCallTree; import org.openmicroscopy.shoola.env.data.views.ProcessBatchCall; import org.openmicroscopy.shoola.env.data.views.ProcessCallback; import omero.gateway.model.DataObject; /** * Command to move between groups the passed objects. * * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @since Beta4.4 */ public class DataObjectTransfer extends BatchCallTree { /** The server call-handle to the computation. */ private Object callBack; /** The object to transfer.*/ private TransferableObject value; /** * Creates a {@link BatchCall} to transfer the specified objects. * * @param ctx The security context. * @param values The objects to transfer. * @return The {@link BatchCall}. */ private BatchCall makeTransferCall(final SecurityContext ctx, final List<DataObject> values) { return new ProcessBatchCall("Transfer objects") { public ProcessCallback initialize() throws Exception { OmeroDataService os = context.getDataService(); RequestCallback cb = os.transfer(ctx, value.getTargetContext(), value.getTarget(), values); if (cb == null) { callBack = Boolean.valueOf(false); return null; } else { callBack = new ProcessCallback(cb); return (ProcessCallback) callBack; } } }; } /** * Adds the {@link #makeTransferCall} to the computation tree. * @see BatchCallTree#buildTree() */ protected void buildTree() { Entry entry; Map<SecurityContext, List<DataObject>> map = value.getSource(); Iterator i = map.entrySet().iterator(); while (i.hasNext()) { entry = (Entry) i.next(); final List<DataObject> l = (List<DataObject>) entry.getValue(); final SecurityContext ctx = (SecurityContext) entry.getKey(); add(makeTransferCall(ctx, l)); } } /** * Returns the server call-handle to the computation. * * @return See above. */ protected Object getPartialResult() { return callBack; } /** * Returns the result. * @see BatchCallTree#getResult() */ protected Object getResult() { return null; } /** * Creates a new instance. * If bad arguments are passed, we throw a runtime * exception so to fail early and in the caller's thread. * * @param value The collection of object to transfer. */ public DataObjectTransfer(TransferableObject value) { if (value == null) throw new IllegalArgumentException("No objects to move."); this.value = value; } }