summaryrefslogtreecommitdiffstats
path: root/sandbox/old/contrib/runtime-standalone/standalone-api/src/main/java/org/apache/tuscany/runtime/standalone/DirectoryHelper.java
blob: abacda879b3004055af70e8a32d654cf807cc5a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */
package org.apache.tuscany.runtime.standalone;

import java.io.File;
import java.io.FileFilter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.Properties;
import java.util.jar.JarFile;

import org.apache.tuscany.host.runtime.TuscanyRuntime;

/**
 * Utility class for installation directory related operations.
 *
 * @version $Revision$ $Date$
 */
public final class DirectoryHelper {

    /**
     * Installation directory system property name.
     */
    private static final String INSTALL_DIRECTORY_PROPERTY = "tuscany.installDir";

    private DirectoryHelper() {
    }

    /**
     * Gets the installation directory based on the location of a class file.
     * If the system property <code>tuscany.installDir</code> is set then its value is used as the
     * location of the installation directory. Otherwise, we assume we are running from an
     * executable jar containing the supplied class and the installation directory is assumed to
     * be the parent of the directory containing that jar.
     *
     * @param clazz the class to use as a way to find the executable jar
     * @return directory where tuscany standalone server is installed.
     * @throws IllegalArgumentException if the property is set but its value is not an existing directory
     * @throws IllegalStateException    if the location could not be determined from the location of the class file
     */
    public static File getInstallDirectory(Class clazz) throws IllegalStateException, IllegalArgumentException {

        String installDirectoryPath = System.getProperty(INSTALL_DIRECTORY_PROPERTY);

        if (installDirectoryPath != null) {
            File installDirectory = new File(installDirectoryPath);
            if (!installDirectory.exists()) {
                throw new IllegalArgumentException(INSTALL_DIRECTORY_PROPERTY
                    + " property does not refer to an existing directory: " + installDirectory);
            }
            return installDirectory;
        }

        // get the name of the Class's bytecode
        String name = clazz.getName();
        int last = name.lastIndexOf('.');
        if (last != -1) {
            name = name.substring(last + 1);
        }
        name = name + ".class";

        // get location of the bytecode - should be a jar: URL
        URL url = clazz.getResource(name);
        if (url == null) {
            throw new IllegalStateException("Unable to get location of bytecode resource " + name);
        }

        String jarLocation = url.toString();
        if (!jarLocation.startsWith("jar:")) {
            throw new IllegalStateException("Must be run from a jar: " + url);
        }

        // extract the location of thr jar from the resource URL 
        jarLocation = jarLocation.substring(4, jarLocation.lastIndexOf("!/"));
        if (!jarLocation.startsWith("file:")) {
            throw new IllegalStateException("Must be run from a local filesystem: " + jarLocation);
        }

        File jarFile = new File(URI.create(jarLocation));
        return jarFile.getParentFile().getParentFile();
    }

    /**
     * Get the directory associated with a runtime profile.
     * If the system property <code>tuscany.profileDir.${profileName}</code> is set then its value
     * is used as the value for the profile directory. Otherwise, the directory ${installDir}/profiles/${profileName}
     * is used.
     *
     * @param installDir  the installation directory
     * @param profileName tha name of the profile
     * @return the directory for the the specified profile
     * @throws FileNotFoundException if the directory does not exist
     */
    public static File getProfileDirectory(File installDir, String profileName) throws FileNotFoundException {
        String propName = "tuscany.profileDir." + profileName;
        String profilePath = System.getProperty(propName);
        File profileDir;
        if (profilePath != null) {
            profileDir = new File(profilePath);
        } else {
            profileDir = new File(new File(installDir, "profiles"), profileName);
        }

        if (!profileDir.isDirectory()) {
            throw new FileNotFoundException("Unable to locate profile directory: " + profileDir.toString());
        }
        return profileDir;
    }

    /**
     * Gets the boot directory where all the boot libraries are stored. This
     * is expected to be a directory named <code>boot</code> under the install
     * directory.
     *
     * @param installDirectory Tuscany install directory.
     * @param bootPath         Boot path for the runtime.
     * @return Tuscany boot directory.
     */
    public static File getBootDirectory(File installDirectory, String bootPath) {

        File bootDirectory = new File(installDirectory, bootPath);
        if (!bootDirectory.exists()) {
            throw new IllegalStateException("Boot directory doesn't exist: " + bootDirectory.getAbsolutePath());
        }
        return bootDirectory;

    }

    /**
     * Gets the boot directory for the specified profile.
     * If the bootPath is not null then it is used to specify the location of the boot directory
     * relative to the profile directory. Otherwise, if there is a directory named "boot" relative
     * to the profile or install directory then it is used.
     *
     * @param installDir the installation directory
     * @param profileDir the profile directory
     * @param bootPath   the path to the boot directory
     * @return the boot directory
     * @throws FileNotFoundException if the boot directory does not exist
     */
    public static File getBootDirectory(File installDir, File profileDir, String bootPath)
        throws FileNotFoundException {
        File bootDir;
        if (bootPath != null) {
            bootDir = new File(profileDir, bootPath);
        } else {
            bootDir = new File(profileDir, "boot");
            if (!bootDir.isDirectory()) {
                bootDir = new File(installDir, "boot");
            }
        }
        if (!bootDir.isDirectory()) {
            throw new FileNotFoundException("Unable to locate boot directory: " + bootDir);
        }
        return bootDir;
    }

    /**
     * Create a classloader from all the jar files or subdirectories in a directory.
     * The classpath for the returned classloader will comprise all jar files and subdirectories
     * of the supplied directory. Hidden files and those that do not contain a valid manifest will
     * be silently ignored.
     *
     * @param parent    the parent for the new classloader
     * @param directory the directory to scan
     * @return a classloader whose classpath includes all jar files and subdirectories of the supplied directory
     */
    public static ClassLoader createClassLoader(ClassLoader parent, File directory) {
        File[] jars = directory.listFiles(new FileFilter() {
            public boolean accept(File file) {
                if (file.isHidden()) {
                    return false;
                }
                if (file.isDirectory()) {
                    return true;
                }
                try {
                    JarFile jar = new JarFile(file);
                    return jar.getManifest() != null;
                } catch (IOException e) {
                    return false;
                }
            }
        });

        URL[] urls = new URL[jars.length];
        for (int i = 0; i < jars.length; i++) {
            try {
                urls[i] = jars[i].toURI().toURL();
            } catch (MalformedURLException e) {
                // toURI should have escaped the URL
                throw new AssertionError();
            }
        }

        return new URLClassLoader(urls, parent);
    }

    /**
     * Load properties from the specified file.
     * If the file does not exist then an empty properties object is returned.
     *
     * @param propFile the file to load from
     * @param defaults defaults for the properties
     * @return a Properties object loaded from the file
     * @throws IOException if there was a problem loading the properties
     */
    public static Properties loadProperties(File propFile, Properties defaults) throws IOException {
        Properties props = defaults == null ? new Properties() : new Properties(defaults);
        FileInputStream is;
        try {
            is = new FileInputStream(propFile);
        } catch (FileNotFoundException e) {
            return props;
        }
        try {
            props.load(is);
            return props;
        } finally {
            is.close();
        }
    }

    /**
     * Convert a File to a URL. Equivalent to file.toURI().toURL()
     *
     * @param file the file to convert
     * @return the URL for the File
     */
    public static URL toURL(File file) {
        try {
            return file.toURI().toURL();
        } catch (MalformedURLException e) {
            // toURI should have escaped this
            throw new AssertionError();
        }
    }

    public static StandaloneRuntimeInfo createRuntimeInfo(String defaultProfile, Class<?> markerClass) throws IOException {
        // get profile to use, defaulting to "launcher"
        String profile = System.getProperty("tuscany.profile", defaultProfile);

        File installDir = getInstallDirectory(markerClass);
        File profileDir = getProfileDirectory(installDir, profile);

        // load properties for this runtime
        File propFile = new File(profileDir, "etc/runtime.properties");
        Properties props = loadProperties(propFile, System.getProperties());

        // online unless the offline property is set
        boolean online = !Boolean.parseBoolean(props.getProperty("offline", "false"));

        return new StandaloneRuntimeInfoImpl(null, profile, installDir, profileDir, null, online, props);

    }

    public static TuscanyRuntime createRuntime(StandaloneRuntimeInfo runtimeInfo) throws Exception {
        File installDir = runtimeInfo.getInstallDirectory();
        File profileDir = runtimeInfo.getProfileDirectory();
        URL profileURL = toURL(profileDir);
        ClassLoader hostClassLoader = ClassLoader.getSystemClassLoader();

        // create the classloader for booting the runtime
        String bootPath = runtimeInfo.getProperty("tuscany.bootDir", null);
        File bootDir = getBootDirectory(installDir, profileDir, bootPath);
        ClassLoader bootClassLoader = createClassLoader(hostClassLoader, bootDir);

        // locate the system SCDL
        URL systemSCDL = new URL(profileURL, runtimeInfo.getProperty("tuscany.systemSCDL", "system.scdl"));

        // locate the implementation
        String className = runtimeInfo.getProperty("tuscany.runtimeClass",
                                                   "org.apache.tuscany.runtime.standalone.host.StandaloneRuntimeImpl");
        Class<?> implClass = Class.forName(className, true, bootClassLoader);

        TuscanyRuntime runtime = (TuscanyRuntime) implClass.newInstance();
        runtime.setHostClassLoader(hostClassLoader);
        runtime.setSystemScdl(systemSCDL);
        runtime.setRuntimeInfo(runtimeInfo);
        return runtime;
    }
}