/* * ConsumerProfile.java * * Version: $Revision: 3762 $ * * Date: $Date: 2009-05-07 04:36:47 +0000 (Thu, 07 May 2009) $ * * 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.event; import java.util.ArrayList; import java.util.List; import org.apache.log4j.Logger; import org.dspace.core.ConfigurationManager; /** * An instance of this class contains the configuration profile of a specific, * named Consumer, <em>in the context of a specific * Dispatcher</em>. This * includes the name, the class to instantiate and event filters. Note that all * characteristics are "global" and the same for all dispatchers. * * @version $Revision: 3762 $ */ public class ConsumerProfile { /** log4j category */ private static Logger log = Logger.getLogger(EventManager.class); /** Name matching the key in DSpace Configuration */ private 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<int[]> filters; // Prefix of keys in DSpace Configuration. private 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 * @returns a new ConsumerProfile; never null. */ public static ConsumerProfile makeConsumerProfile(String name) throws IllegalArgumentException, ClassNotFoundException, InstantiationException, IllegalAccessException { ConsumerProfile result = new ConsumerProfile(name); result.readConfiguration(); return result; } // Get class and filters from DSpace Configuration. private void readConfiguration() throws IllegalArgumentException, ClassNotFoundException, InstantiationException, IllegalAccessException { String className = ConfigurationManager.getProperty(CONSUMER_PREFIX + name + ".class"); String filterString = ConfigurationManager.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 = (Consumer) Class.forName(className.trim()).newInstance(); // Each "filter" is <objectTypes> + <eventTypes> : ... filters = new ArrayList<int[]>(); 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] = 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<int[]> getFilters() { return filters; } public String getName() { return name; } }