1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.io;
17
18 import java.io.IOException;
19 import java.lang.reflect.Method;
20 import java.net.URL;
21 import java.util.ArrayList;
22 import java.util.Collections;
23 import java.util.List;
24
25 import org.apache.ibatis.logging.Log;
26 import org.apache.ibatis.logging.LogFactory;
27
28
29
30
31
32
33 public class JBoss6VFS extends VFS {
34 private static final Log log = LogFactory.getLog(JBoss6VFS.class);
35
36
37 static class VirtualFile {
38 static Class<?> VirtualFile;
39 static Method getPathNameRelativeTo;
40 static Method getChildrenRecursively;
41
42 Object virtualFile;
43
44 VirtualFile(Object virtualFile) {
45 this.virtualFile = virtualFile;
46 }
47
48 String getPathNameRelativeTo(VirtualFile parent) {
49 try {
50 return invoke(getPathNameRelativeTo, virtualFile, parent.virtualFile);
51 } catch (IOException e) {
52
53 log.error("This should not be possible. VirtualFile.getPathNameRelativeTo() threw IOException.");
54 return null;
55 }
56 }
57
58 List<VirtualFile> getChildren() throws IOException {
59 List<?> objects = invoke(getChildrenRecursively, virtualFile);
60 List<VirtualFile> children = new ArrayList<>(objects.size());
61 for (Object object : objects) {
62 children.add(new VirtualFile(object));
63 }
64 return children;
65 }
66 }
67
68
69 static class VFS {
70 static Class<?> VFS;
71 static Method getChild;
72
73 private VFS() {
74
75 }
76
77 static VirtualFile getChild(URL url) throws IOException {
78 Object o = invoke(getChild, VFS, url);
79 return o == null ? null : new VirtualFile(o);
80 }
81 }
82
83
84 private static Boolean valid;
85
86
87 protected static synchronized void initialize() {
88 if (valid == null) {
89
90 valid = Boolean.TRUE;
91
92
93 VFS.VFS = checkNotNull(getClass("org.jboss.vfs.VFS"));
94 VirtualFile.VirtualFile = checkNotNull(getClass("org.jboss.vfs.VirtualFile"));
95
96
97 VFS.getChild = checkNotNull(getMethod(VFS.VFS, "getChild", URL.class));
98 VirtualFile.getChildrenRecursively = checkNotNull(getMethod(VirtualFile.VirtualFile,
99 "getChildrenRecursively"));
100 VirtualFile.getPathNameRelativeTo = checkNotNull(getMethod(VirtualFile.VirtualFile,
101 "getPathNameRelativeTo", VirtualFile.VirtualFile));
102
103
104 checkReturnType(VFS.getChild, VirtualFile.VirtualFile);
105 checkReturnType(VirtualFile.getChildrenRecursively, List.class);
106 checkReturnType(VirtualFile.getPathNameRelativeTo, String.class);
107 }
108 }
109
110
111
112
113
114
115
116
117
118
119
120 protected static <T> T checkNotNull(T object) {
121 if (object == null) {
122 setInvalid();
123 }
124 return object;
125 }
126
127
128
129
130
131
132
133
134
135 protected static void checkReturnType(Method method, Class<?> expected) {
136 if (method != null && !expected.isAssignableFrom(method.getReturnType())) {
137 log.error("Method " + method.getClass().getName() + "." + method.getName()
138 + "(..) should return " + expected.getName() + " but returns "
139 + method.getReturnType().getName() + " instead.");
140 setInvalid();
141 }
142 }
143
144
145
146
147 protected static void setInvalid() {
148 if (JBoss6VFS.valid.booleanValue()) {
149 log.debug("JBoss 6 VFS API is not available in this environment.");
150 JBoss6VFS.valid = Boolean.FALSE;
151 }
152 }
153
154 static {
155 initialize();
156 }
157
158 @Override
159 public boolean isValid() {
160 return valid;
161 }
162
163 @Override
164 public List<String> list(URL url, String path) throws IOException {
165 VirtualFile directory;
166 directory = VFS.getChild(url);
167 if (directory == null) {
168 return Collections.emptyList();
169 }
170
171 if (!path.endsWith("/")) {
172 path += "/";
173 }
174
175 List<VirtualFile> children = directory.getChildren();
176 List<String> names = new ArrayList<>(children.size());
177 for (VirtualFile vf : children) {
178 names.add(path + vf.getPathNameRelativeTo(directory));
179 }
180
181 return names;
182 }
183 }