/* * Copyright (c) 2002-2009, The DSpace Foundation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * - Neither the name of the DSpace Foundation nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. */ package org.dspace.checker; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import org.apache.log4j.Logger; import org.dspace.content.DSpaceObject; import org.dspace.core.Constants; import org.dspace.core.Context; import org.dspace.handle.HandleManager; /** * A BitstreamDispatcher that checks all the bitstreams contained within an * item, collection or community referred to by Handle. * * @author Jim Downing * @author Grace Carpenter * @author Nathan Sarr * */ public class HandleDispatcher implements BitstreamDispatcher { /** Log 4j logger. */ private static final Logger LOG = Logger.getLogger(HandleDispatcher.class); /** Handle to retrieve bitstreams from. */ String handle = null; /** Has the type of object the handle refers to been determined. */ Boolean init = Boolean.FALSE; /** the delegate to dispatch to. */ ListDispatcher delegate = null; /** * Database access for retrieving bitstreams */ BitstreamInfoDAO bitstreamInfoDAO; /** * Blanked off, no-op constructor. */ private HandleDispatcher() { ; } /** * Main constructor. * * @param hdl * the handle to get bitstreams from. */ public HandleDispatcher(BitstreamInfoDAO bitInfoDAO, String hdl) { bitstreamInfoDAO = bitInfoDAO; handle = hdl; } /** * Private initialization routine. * * @throws SQLException * if database access fails. */ private synchronized void init() { if (init == Boolean.FALSE) { Context context = null; int dsoType = -1; int id = -1; try { context = new Context(); DSpaceObject dso = HandleManager.resolveToObject(context, handle); id = dso.getID(); dsoType = dso.getType(); context.abort(); } catch (SQLException e) { LOG.error("init error " + e.getMessage(), e); throw new RuntimeException("init error" + e.getMessage(), e); } finally { // Abort the context if it's still valid if ((context != null) && context.isValid()) { context.abort(); } } List ids = new ArrayList(); switch (dsoType) { case Constants.BITSTREAM: ids.add(new Integer(id)); break; case Constants.ITEM: ids = bitstreamInfoDAO.getItemBitstreams(id); break; case Constants.COLLECTION: ids = bitstreamInfoDAO.getCollectionBitstreams(id); break; case Constants.COMMUNITY: ids = bitstreamInfoDAO.getCommunityBitstreams(id); break; } delegate = new ListDispatcher(ids); init = Boolean.TRUE; } } /** * Initializes this dispatcher on first execution. * * @see org.dspace.checker.BitstreamDispatcher#next() */ public int next() { if (init == Boolean.FALSE) { init(); } return delegate.next(); } }