/* * ome.formats.model.WellProcessor * *------------------------------------------------------------------------------ * 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 ome.formats.model; import static omero.rtypes.rint; import static omero.rtypes.rstring; import java.util.LinkedHashMap; import java.util.List; import ome.formats.Index; import ome.util.LSID; import omero.metadatastore.IObjectContainer; import omero.model.Plate; import omero.model.PlateAcquisition; import omero.model.Well; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Processes the Wells of an IObjectContainerStore and ensures that the Plate * has been populated and that it is validated and that if any PlateAcquisition * objects are in the hierarchy that they have a name. * * @author Chris Allan <callan at blackcat dot ca> * */ public class WellProcessor implements ModelProcessor { /** Logger for this class */ private Logger log = LoggerFactory.getLogger(WellProcessor.class); /** Object container store to process. */ private IObjectContainerStore store; /** * Processes the OMERO client side metadata store. * @param store OMERO metadata store to process. * @throws ModelException If there is an error during processing. */ public void process(IObjectContainerStore store) throws ModelException { this.store = store; List<IObjectContainer> containers = store.getIObjectContainers(Well.class); for (IObjectContainer container : containers) { Integer plateIndex = container.indexes.get(Index.PLATE_INDEX.getValue()); // Validate Plate Plate plate = validatePlate(plateIndex); Well well = (Well) container.sourceObject; if (well.getColumn() != null && well.getColumn().getValue() >= plate.getColumns().getValue()) { plate.setColumns(rint(well.getColumn().getValue() + 1)); } if (well.getRow() != null && well.getRow().getValue() >= plate.getRows().getValue()) { plate.setRows(rint(well.getRow().getValue() + 1)); } } } /** * Validates that a Plate object container exists and that the Plate source * object has a name and that its row and column count are initialized. * @param plateIndex Index of the plate within the data model. * @return The existing or created plate. */ private Plate validatePlate(int plateIndex) { LinkedHashMap<Index, Integer> indexes = new LinkedHashMap<Index, Integer>(); indexes.put(Index.PLATE_INDEX, plateIndex); IObjectContainer container = store.getIObjectContainer(Plate.class, indexes); Plate plate = (Plate) container.sourceObject; String userSpecifiedPlateName = store.getUserSpecifiedName(); String userSpecifiedPlateDescription = store.getUserSpecifiedDescription(); if (userSpecifiedPlateName != null) { plate.setName(rstring(userSpecifiedPlateName)); } if (userSpecifiedPlateDescription != null) { plate.setDescription(rstring(userSpecifiedPlateDescription)); } if (plate.getName() == null) { log.warn("Missing plate name for: " + container.LSID); plate.setName(rstring("Plate")); } if (plate.getRows() == null) { plate.setRows(rint(1)); } if (plate.getColumns() == null) { plate.setColumns(rint(1)); } return plate; } }