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

org.dspace.event.ConsumerProfile 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.event;

import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.dspace.services.ConfigurationService;
import org.dspace.services.factory.DSpaceServicesFactory;

/**
 * An instance of this class contains the configuration profile of a specific,
 * named Consumer, in the context of a specific Dispatcher. This
 * includes the name, the class to instantiate and event filters. Note that all
 * characteristics are "global" and the same for all dispatchers.
 */
public class ConsumerProfile {
    /**
     * log4j category
     */
    private static final Logger log = LogManager.getLogger(ConsumerProfile.class);

    /**
     * Name matching the key in DSpace Configuration
     */
    private final String name;

    /**
     * Instance of configured consumer class
     */
    private Consumer consumer;

    /**
     * Filters - each is an array of 2 bitmasks, action mask and subject mask
     */
    private List filters;

    // Prefix of keys in DSpace Configuration.
    private static final String CONSUMER_PREFIX = "event.consumer.";

    /**
     * Constructor.
     */
    private ConsumerProfile(String name) {
        this.name = name;
    }

    /**
     * Factory method, create new profile from configuration.
     *
     * @param name configuration name of the consumer profile
     * @return a new ConsumerProfile; never null.
     * @throws IllegalArgumentException if no class or no filters configured for the specified consumer
     * @throws ClassNotFoundException    passed through.
     * @throws InstantiationException    passed through.
     * @throws IllegalAccessException    passed through.
     * @throws NoSuchMethodException     passed through.
     * @throws InvocationTargetException passed through.
     */
    public static ConsumerProfile makeConsumerProfile(String name)
        throws IllegalArgumentException, ClassNotFoundException,
            InstantiationException, IllegalAccessException, NoSuchMethodException,
            InvocationTargetException {
        ConsumerProfile result = new ConsumerProfile(name);
        result.readConfiguration();
        return result;
    }

    /**
     * Get class and filters from DSpace Configuration.
     *
     * @throws IllegalArgumentException if no class or no filters configured for the specified consumer
     * @throws ClassNotFoundException    passed through.
     * @throws InstantiationException    passed through.
     * @throws IllegalAccessException    passed through.
     * @throws NoSuchMethodException     passed through.
     * @throws InvocationTargetException passed through.
     */
    private void readConfiguration()
        throws IllegalArgumentException, ClassNotFoundException,
            InstantiationException, IllegalAccessException, NoSuchMethodException,
            InvocationTargetException {
        ConfigurationService configurationService
                = DSpaceServicesFactory.getInstance().getConfigurationService();
        String className = configurationService.getProperty(CONSUMER_PREFIX
                                                                + name + ".class");
        String filterString = configurationService.getProperty(CONSUMER_PREFIX
                                                                   + name + ".filters");

        if (className == null) {
            throw new IllegalArgumentException(
                "No class configured for consumer named: " + name);
        }
        if (filterString == null) {
            throw new IllegalArgumentException(
                "No filters configured for consumer named: " + name);
        }

        consumer = Class.forName(className.trim())
                .asSubclass(Consumer.class)
                .getDeclaredConstructor().newInstance();

        // Each "filter" is  +  : ...
        filters = new ArrayList<>();
        String part[] = filterString.trim().split(":");
        for (int j = 0; j < part.length; ++j) {
            String fpart[] = part[j].split("\\+");
            if (fpart.length != 2) {
                log.error("Bad Filter clause in consumer stanza in Configuration entry for "
                              + CONSUMER_PREFIX
                              + name
                              + ".consumers: "
                              + part[j]);
            } else {
                int filter[] = new int[2];
                filter[0] = 0;
                filter[1] = 0;
                String objectNames[] = fpart[0].split("\\|");
                for (int k = 0; k < objectNames.length; ++k) {
                    int ot = Event.parseObjectType(objectNames[k]);
                    if (ot == 0) {
                        log.error("Bad ObjectType in Consumer Stanza in Configuration entry for "
                                      + CONSUMER_PREFIX
                                      + name
                                      + ".consumers: " + objectNames[k]);
                    } else {
                        filter[Event.SUBJECT_MASK] |= ot;
                    }
                }
                String eventNames[] = fpart[1].split("\\|");
                for (int k = 0; k < eventNames.length; ++k) {
                    int et = Event.parseEventType(eventNames[k]);
                    if (et == 0) {
                        log.error("Bad EventType in Consumer Stanza in Configuration entry for "
                                      + CONSUMER_PREFIX
                                      + name
                                      + ".consumers: " + eventNames[k]);
                    } else {
                        filter[Event.EVENT_MASK] |= et;
                    }
                }
                filters.add(filter);
            }
        }
    }

    public Consumer getConsumer() {
        return consumer;
    }

    public List getFilters() {
        return filters;
    }

    public String getName() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy