All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dspace.checker.SimpleDispatcher Maven / Gradle / Ivy

The newest version!
/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.dspace.checker;

import java.sql.SQLException;
import java.time.Instant;

import org.dspace.checker.factory.CheckerServiceFactory;
import org.dspace.checker.service.MostRecentChecksumService;
import org.dspace.content.Bitstream;
import org.dspace.core.Context;

/**
 * An implementation of the selection strategy that selects bitstreams in the
 * order that they were last checked, looping endlessly.
 *
 * @author Jim Downing
 * @author Grace Carpenter
 * @author Nathan Sarr
 */
public class SimpleDispatcher implements BitstreamDispatcher {

    /**
     * Should this dispatcher keep on dispatching around the collection?
     */
    protected boolean loopContinuously = false;

    /**
     * Date this dispatcher started dispatching.
     */
    protected Instant processStartTime = null;

    /**
     * Access for bitstream information
     */
    protected MostRecentChecksumService checksumService;

    protected Context context;

    /**
     * Creates a new SimpleDispatcher.
     *
     * @param context   Context
     * @param startTime timestamp for beginning of checker process
     * @param looping   indicates whether checker should loop infinitely through
     *                  most_recent_checksum table
     */
    public SimpleDispatcher(Context context, Instant startTime, boolean looping) {
        checksumService = CheckerServiceFactory.getInstance().getMostRecentChecksumService();
        this.context = context;
        this.processStartTime = startTime;
        this.loopContinuously = looping;
    }

    /**
     * Blanked off, no-op constructor. Do not use.
     */
    private SimpleDispatcher() {
    }

    /**
     * Selects the next candidate bitstream.
     *
     * @throws SQLException if database error
     * @see org.dspace.checker.BitstreamDispatcher#next()
     */
    @Override
    public synchronized Bitstream next() throws SQLException {
        // should process loop infinitely through the
        // bitstreams in most_recent_checksum table?
        if (!loopContinuously && (processStartTime != null)) {
            MostRecentChecksum oldestRecord = checksumService.findOldestRecord(context, processStartTime);
            if (oldestRecord != null) {
                return oldestRecord.getBitstream();
            } else {
                return null;
            }
        } else {
            MostRecentChecksum oldestRecord = checksumService.findOldestRecord(context);
            if (oldestRecord != null) {
                return oldestRecord.getBitstream();
            } else {
                return null;
            }
        }

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy