Package org.apache.james.util.watchdog

Source Code of org.apache.james.util.watchdog.SchedulerWatchdogFactory

/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2003 The Apache Software 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:
*
* 1. Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
*
* 2. 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.
*
* 3. The end-user documentation included with the redistribution,
*    if any, must include the following acknowledgment:
*       "This product includes software developed by the
*        Apache Software Foundation (http://www.apache.org/)."
*    Alternately, this acknowledgment may appear in the software itself,
*    if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache", "Jakarta", "JAMES" and "Apache Software Foundation"
*    must not be used to endorse or promote products derived from this
*    software without prior written permission. For written
*    permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
*    nor may "Apache" appear in their name, without prior written
*    permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR
* ITS 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.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation.  For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/

/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included  with this distribution in
* the LICENSE file.
*/
package org.apache.james.util.watchdog;

import org.apache.avalon.cornerstone.services.scheduler.PeriodicTimeTrigger;
import org.apache.avalon.cornerstone.services.scheduler.Target;
import org.apache.avalon.cornerstone.services.scheduler.TimeScheduler;

/**
* This class is a factory to produce Watchdogs, each of which is associated
* with a single TimeScheduler Target and a TimeScheduler object.
*
* This could be used in James by adding a server configuration
* parameter:
*
*     schedulerWatchdogs = conf.getChild("useSchedulerWatchdogs").getValueAsBoolean(false);
*
* getting the TimeScheduler component:
*
*     scheduler = (TimeScheduler) compMgr.lookup(TimeScheduler.ROLE);
*
* and changing AbstractJamesService.getWatchdogFactory to look
* something like:
*
*     protected WatchdogFactory getWatchdogFactory() {
*        WatchdogFactory theWatchdogFactory = null;
*        if (schedulerWatchdogs) {
*             theWatchdogFactory = new SchedulerWatchdogFactory(scheduler, timeout);
*           } else {
*             theWatchdogFactory = new ThreadPerWatchdogFactory(threadPool, timeout);
*           }
*        if (theWatchdogFactory instanceof LogEnabled) {
*             ((LogEnabled)theWatchdogFactory).enableLogging(getLogger());
*        }
*        return theWatchdogFactory;
*     }
*
* @author Peter M. Goldstein <farsight@alum.mit.edu>
*/
public class SchedulerWatchdogFactory implements WatchdogFactory {

    /**
     * The thread pool used to generate InaccurateTimeoutWatchdogs
     */
    private TimeScheduler myTimeScheduler;

    private long timeout = -1;

    /**
     * Creates the factory and sets the TimeScheduler used to implement
     * the watchdogs.
     *
     * @param theTimeScheduler the scheduler that manages Watchdog triggering
     *                         for Watchdogs produced by this factory
     * @param timeout the timeout for Watchdogs produced by this factory
     */
    public SchedulerWatchdogFactory(TimeScheduler theTimeScheduler, long timeout) {
        this.timeout = timeout;
        myTimeScheduler = theTimeScheduler;
    }

    /**
     * @see org.apache.james.util.watchdog.WatchdogFactory#getWatchdog(WatchdogTarget)
     */
    public Watchdog getWatchdog(WatchdogTarget theTarget) {
        return new SchedulerWatchdog(theTarget);
    }

    /**
     * An inner class that acts as an adaptor between the Watchdog
     * interface and the TimeScheduler interface.
     */
    private class SchedulerWatchdog implements Watchdog {

        /**
         * The in-scheduler identifier for this trigger.
         */
        private String triggerID = null;

        /**
         * The WatchdogTarget that is passed in when this
         * SchedulerWatchdog is initialized
         */
        private WatchdogTarget theWatchdogTarget;

        /**
         * Constructor for the SchedulerWatchdog
         *
         * @param theTarget the target triggered by this Watchdog
         */
        SchedulerWatchdog(WatchdogTarget theTarget) {
            // TODO: This should be made more robust then just
            //       using toString()
            triggerID = this.toString();
            theWatchdogTarget = theTarget;
        }

        /**
         * Start this Watchdog, causing it to begin monitoring.  The Watchdog can
         * be stopped and restarted.
         */
        public void start() {
            PeriodicTimeTrigger theTrigger = new PeriodicTimeTrigger((int)SchedulerWatchdogFactory.this.timeout, -1);
            Target theTarget = new Target() {
                                    public void targetTriggered(String targetID) {
                                        theWatchdogTarget.execute();
                                    }
                               };
            SchedulerWatchdogFactory.this.myTimeScheduler.addTrigger(triggerID, theTrigger, theTarget);
        }

        /**
         * Reset this Watchdog.  Resets any conditions in the implementations
         * (time to expiration, etc.) to their original values
         */
        public void reset() {
            SchedulerWatchdogFactory.this.myTimeScheduler.resetTrigger(triggerID);
        }

        /**
         * Stop this Watchdog, terminating the monitoring condition.  The monitor
         * can be restarted with a call to startWatchdog.
         */
        public void stop() {
            SchedulerWatchdogFactory.this.myTimeScheduler.removeTrigger(triggerID);
        }
    }

}
TOP

Related Classes of org.apache.james.util.watchdog.SchedulerWatchdogFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.