View Javadoc

1   /*
2    * Copyright 2005-2008 The Kuali Foundation
3    * 
4    * 
5    * Licensed under the Educational Community License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    * 
9    * http://www.opensource.org/licenses/ecl2.php
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.kuali.rice.kew.plugin;
18  
19  import java.io.File;
20  import java.net.MalformedURLException;
21  import java.net.URL;
22  import java.util.HashMap;
23  import java.util.Iterator;
24  import java.util.Map;
25  
26  /**
27   * Tracks modifications to a set of files and directories.
28   * 
29   * @author Kuali Rice Team (rice.collab@kuali.org)
30   */
31  public class ModificationTracker implements Modifiable {
32  
33  	protected final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(getClass());
34  	
35  	// Maintains a map of root directories that we are watching to sub directories  
36      private final Map dirTree = new HashMap();
37      
38      public synchronized void addURL(URL url) {
39          addURL(dirTree, url);
40      }
41              
42      private void addURL(Map parentMap, URL url)  {
43          Node node = new Node(url);
44          if (!parentMap.keySet().contains(node)) {
45              Map subDir = new HashMap();
46              parentMap.put(node, subDir);
47              if (node.getFile().isDirectory()) {
48                  File[] files = node.getFile().listFiles();
49                  for (int index = 0; index < files.length; index++) {
50                      try {
51                          addURL(subDir, files[index].toURL());
52                      } catch (MalformedURLException e) {
53                          // TODO fix up this error handling
54                          throw new RuntimeException(e);
55                      }
56                  }
57              }
58          }
59      }
60      
61      public boolean isModified() {
62      	return isModified(dirTree);
63      }
64          
65      private boolean isModified(Map dirTree) {
66      	for (Iterator iterator = dirTree.keySet().iterator(); iterator.hasNext();) {
67  			Node node = (Node) iterator.next();
68  			if (node.isModified() || isModified((Map)dirTree.get(node))) {
69  				return true;
70  			}
71  		}
72      	return false;
73      }
74      
75      private class Node implements Modifiable {
76          private URL url;
77          private File file;
78          private long lastModified;
79          public Node(URL url) {
80              this.url = url;
81              this.file = new File(url.getFile());
82              this.lastModified = file.lastModified();
83          }
84          public URL getURL() {
85              return url;
86          }
87          public File getFile() {
88              return file;
89          }
90          public long getLastModified() {
91              return lastModified;
92          }
93          public boolean isModified() {
94              return lastModified != file.lastModified();
95          }
96          public boolean equals(Object object) {
97              if (object instanceof Node) {
98                  return ((Node)object).getURL().equals(getURL());
99              }
100             return false;
101         }
102         public int hashCode() {
103             return url.hashCode();
104         }
105     }
106 
107 }