1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
28
29
30
31 public class ModificationTracker implements Modifiable {
32
33 protected final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(getClass());
34
35
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
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 }