File Monitor Demo : File Monoitor « File Input Output « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » File Input Output » File Monoitor 




File Monitor Demo
    

//$HeadURL: svn+ssh://[email protected]/deegree/base/branches/2.2_testing/src/org/deegree/io/util/FileMonitor.java $
/*----------------    FILE HEADER  ------------------------------------------

 This file is part of deegree.
 Copyright (C) 2001-2008 by:
 EXSE, Department of Geography, University of Bonn
 http://www.giub.uni-bonn.de/deegree/
 lat/lon GmbH
 http://www.lat-lon.de

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

 Contact:

 Andreas Poth
 lat/lon GmbH
 Aennchenstr. 19
 53115 Bonn
 Germany
 E-Mail: [email protected]

 Prof. Dr. Klaus Greve
 Department of Geography
 University of Bonn
 Meckenheimer Allee 166
 53115 Bonn
 Germany
 E-Mail: [email protected]

 
 ---------------------------------------------------------------------------*/


import java.io.File;
import java.io.FileNotFoundException;
import java.net.URL;
import java.util.Hashtable;
import java.util.Timer;
import java.util.TimerTask;

/**
 * Replaces inner class Reloader in AbstractOGCServlet.
 
 @author <a href="mailto:[email protected]">Torsten Friebe </A>
 @author last edited by: $Author: apoth $
 
 @version 2.0, $Revision: 9342 $, $Date: 2007-12-27 13:32:57 +0100 (Do, 27 Dez 2007) $
 
 @see org.deegree.enterprise.AbstractOGCServlet
 @see java.io.File#lastModified
 @see <a href="http://www.javaworld.com/javaworld/javatips/jw-javatip125.html">Java Tip 125 </a>
 
 @since 2.0
 */

public class FileMonitor {

    private static final FileMonitor instance = new FileMonitor();

    private Timer timer;

    private Hashtable<String, FileMonitorTask> timerEntries;

    /**
     * Factory method to get singleton instance.
     
     @return
     
     */
    public static FileMonitor getInstance() {
        return instance;
    }

    protected FileMonitor() {
        // Create timer, run timer thread as daemon.
        timer = new Timertrue );
        timerEntries = new Hashtable<String, FileMonitorTask>();
    }

    /**
     * Add a monitored file with a FileChangeListener.
     
     @param listener
     *            listener to notify when the file changed.
     @param fileName
     *            name of the file to monitor.
     @param period
     *            polling period in milliseconds.
     */
    public void addFileChangeListenerFileChangeListener listener, String fileName, long period )
                            throws FileNotFoundException {
        removeFileChangeListenerlistener, fileName );
        FileMonitorTask task = new FileMonitorTasklistener, fileName );
        timerEntries.putfileName + listener.hashCode(), task );
        timer.scheduletask, period, period );
    }

    /**
     * Remove the listener from the notification list.
     
     @param listener
     *            the listener to be removed.
     */
    public void removeFileChangeListenerFileChangeListener listener, String fileName ) {
        FileMonitorTask task = timerEntries.removefileName + listener.hashCode() );
        if task != null ) {
            task.cancel();
        }
    }

    protected void fireFileChangeEventFileChangeListener listener, String fileName ) {
        listener.fileChangedfileName );
    }

    class FileMonitorTask extends TimerTask {

        FileChangeListener listener;

        String fileName;

        File monitoredFile;

        long lastModified;

        public FileMonitorTaskFileChangeListener listener, String fileName throws FileNotFoundException {
            this.listener = listener;
            this.fileName = fileName;
            this.lastModified = 0;

            monitoredFile = new FilefileName );
            if !monitoredFile.exists() ) { // but is it on CLASSPATH?
                URL fileURL = listener.getClass().getClassLoader().getResourcefileName );
                if fileURL != null ) {
                    monitoredFile = new FilefileURL.getFile() );
                else {
                    throw new FileNotFoundException"File Not Found: " + fileName );
                }
            }
            this.lastModified = monitoredFile.lastModified();
        }

        public void run() {
            long lastModified = monitoredFile.lastModified();
            if lastModified != this.lastModified ) {
                this.lastModified = lastModified;
                fireFileChangeEventthis.listener, this.fileName );
            }
        }
    }
}
//$HeadURL: svn+ssh://[email protected]/deegree/base/branches/2.2_testing/src/org/deegree/io/util/FileChangeListener.java $
/*----------------    FILE HEADER  ------------------------------------------

 This file is part of deegree.
 Copyright (C) 2001-2008 by:
 EXSE, Department of Geography, University of Bonn
 http://www.giub.uni-bonn.de/deegree/
 lat/lon GmbH
 http://www.lat-lon.de

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

 Contact:

 Andreas Poth
 lat/lon GmbH
 Aennchenstr. 19
 53115 Bonn
 Germany
 E-Mail: [email protected]

 Prof. Dr. Klaus Greve
 Department of Geography
 University of Bonn
 Meckenheimer Allee 166
 53115 Bonn
 Germany
 E-Mail: [email protected]


 ---------------------------------------------------------------------------*/


/**
 @author <a href="mailto:[email protected]">Torsten Friebe </A>
 
 @author last edited by: $Author: apoth $
 
 @version 2.0, $Revision: 9342 $, $Date: 2007-12-27 13:32:57 +0100 (Do, 27 Dez 2007) $
 
 
 @since 2.0
 */
interface FileChangeListener {

    /**
     * Invoked when a file changes.
     
     @param fileName
     *            name of changed file.
     */
    public void fileChanged(String fileName);
}

   
    
    
    
  














Related examples in the same category
1.Utility class for synchronizing files/directories
2.Monitoring a File for changes.
3.Monitor files for changes
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.