summaryrefslogtreecommitdiff
path: root/jurt/com/sun/star/lib/util
diff options
context:
space:
mode:
Diffstat (limited to 'jurt/com/sun/star/lib/util')
-rw-r--r--jurt/com/sun/star/lib/util/AsynchronousFinalizer.java102
-rw-r--r--jurt/com/sun/star/lib/util/NativeLibraryLoader.java118
-rw-r--r--jurt/com/sun/star/lib/util/StringHelper.java51
-rw-r--r--jurt/com/sun/star/lib/util/UrlToFileMapper.java161
-rw-r--r--jurt/com/sun/star/lib/util/makefile.mk42
5 files changed, 474 insertions, 0 deletions
diff --git a/jurt/com/sun/star/lib/util/AsynchronousFinalizer.java b/jurt/com/sun/star/lib/util/AsynchronousFinalizer.java
new file mode 100644
index 000000000000..32303775b191
--- /dev/null
+++ b/jurt/com/sun/star/lib/util/AsynchronousFinalizer.java
@@ -0,0 +1,102 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org 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 version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+package com.sun.star.lib.util;
+
+import java.util.LinkedList;
+
+/**
+ Helper class to asynchronously execute finalize methods.
+
+ Current JVMs seem not to be robust against long-running finalize methods, in
+ that such long-running finalize methods may lead to OutOfMemoryErrors. This
+ class mitigates the problem by asynchronously shifting the bodies of
+ potentially long-running finalize methods into an extra thread. Classes that
+ make use of this in their finalize methods are the proxies used in the
+ intra-process JNI UNO bridge and the inter-process Java URP UNO bridge (where
+ in both cases finalizers lead to synchronous UNO release calls).
+
+ If JVMs are getting more mature and should no longer have problems with
+ long-running finalize mehtods, this class could be removed again.
+*/
+public final class AsynchronousFinalizer {
+ /**
+ Add a job to be executed asynchronously.
+
+ The run method of the given job is called exactly once. If it terminates
+ abnormally by throwing any Throwable, that is ignored.
+
+ @param job represents the body of some finalize method; must not be null.
+ */
+ public static void add(Job job) {
+ synchronized (queue) {
+ boolean first = queue.isEmpty();
+ queue.add(job);
+ if (first) {
+ queue.notify();
+ }
+ }
+ }
+
+ /**
+ An interface to represent bodies of finalize methods.
+
+ Similar to Runnable, except that the run method may throw any Throwable
+ (which is effectively ignored by AsynchronousFinalizer.add, similar to
+ any Throwables raised by finalize being ignored).
+ */
+ public interface Job {
+ void run() throws Throwable;
+ }
+
+ private static final LinkedList queue = new LinkedList();
+
+ static {
+ Thread t = new Thread() {
+ public void run() {
+ for (;;) {
+ Job j;
+ synchronized (queue) {
+ while (queue.isEmpty()) {
+ try {
+ queue.wait();
+ } catch (InterruptedException e) {}
+ }
+ j = (Job) queue.remove(0);
+ }
+ try {
+ j.run();
+ } catch (Throwable e) {}
+ }
+ }
+ };
+ t.setDaemon(true);
+ t.start();
+ }
+
+ private AsynchronousFinalizer() {}
+}
diff --git a/jurt/com/sun/star/lib/util/NativeLibraryLoader.java b/jurt/com/sun/star/lib/util/NativeLibraryLoader.java
new file mode 100644
index 000000000000..05455a87814d
--- /dev/null
+++ b/jurt/com/sun/star/lib/util/NativeLibraryLoader.java
@@ -0,0 +1,118 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org 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 version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+package com.sun.star.lib.util;
+
+import java.io.File;
+import java.net.URL;
+import java.net.URLClassLoader;
+
+/** Helper functions to locate and load native files.
+
+ The methods in this class are designed to find the requested resources in as
+ many cases as possible. They search various places, roughly from most
+ specific to most general. This works well if a component is known to bring
+ with it a certain resource, and that resource has to be found. However, it
+ might not work very well in cases where you want to check whether a
+ component brings with it a certain resource or not: a similarly named
+ resource from another component might be found by the eager search
+ algorithm.
+ */
+public final class NativeLibraryLoader {
+ /** Load a system library, using a given class loader to locate the library.
+
+ This is similar to System.loadLibrary.
+
+ @param loader a class loader; may be null
+
+ @param libname the library name; how this name is mapped to a system
+ library name is system dependent
+ */
+ public static void loadLibrary(ClassLoader loader, String libname) {
+ File path = getResource(loader, System.mapLibraryName(libname));
+ if (path == null) {
+ // If the library cannot be found as a class loader resource, try
+ // the global System.loadLibrary as a last resort:
+ System.loadLibrary(libname);
+ } else {
+ System.load(path.getAbsolutePath());
+ }
+ }
+
+ /** Locate a system resource, using a given class loader.
+
+ This is similar to ClassLoader.getResource, but only works for local
+ resources (local files), and adds additional functionality for
+ URLClassLoaders.
+
+ @param loader a class loader; may be null
+
+ @param name a resource name (that is, the name of a file)
+
+ @return a File locating the resource, or null if the resource was not
+ found
+ */
+ public static File getResource(ClassLoader loader, String name) {
+ if (loader != null) {
+ File path = UrlToFileMapper.mapUrlToFile(loader.getResource(name));
+ if (path != null) {
+ return path;
+ }
+ }
+ // URLClassLoaders work on lists of URLs, which are typically URLs
+ // locating JAR files (scheme://auth/dir1/dir2/some.jar). The following
+ // code looks for resource name beside the JAR file
+ // (scheme://auth/dir1/dir2/name) and one directory up
+ // (scheme://auth/dir1/name). The second step is important in a typical
+ // OOo installation, where the JAR files are in the program/classes
+ // directory while the shared libraries are in the program directory.
+ if (loader instanceof URLClassLoader) {
+ URL[] urls = ((URLClassLoader) loader).getURLs();
+ for (int i = 0; i < urls.length; ++i) {
+ File path = UrlToFileMapper.mapUrlToFile(urls[i]);
+ if (path != null) {
+ File dir = path.isDirectory() ? path : path.getParentFile();
+ if (dir != null) {
+ path = new File(dir, name);
+ if (path.exists()) {
+ return path;
+ }
+ dir = dir.getParentFile();
+ if (dir != null) {
+ path = new File(dir, name);
+ if (path.exists()) {
+ return path;
+ }
+ }
+ }
+ }
+ }
+ }
+ return null;
+ }
+
+ private NativeLibraryLoader() {} // do not instantiate
+}
diff --git a/jurt/com/sun/star/lib/util/StringHelper.java b/jurt/com/sun/star/lib/util/StringHelper.java
new file mode 100644
index 000000000000..5962d19e7b14
--- /dev/null
+++ b/jurt/com/sun/star/lib/util/StringHelper.java
@@ -0,0 +1,51 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org 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 version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+package com.sun.star.lib.util;
+
+/** jurt.jar internal string helper methods.
+ */
+public final class StringHelper
+{
+ private StringHelper() {} // do not instantiate
+
+ public static String replace(String str, char from, String to) {
+ StringBuffer b = new StringBuffer();
+ for (int i = 0;;) {
+ int j = str.indexOf(from, i);
+ if (j == -1) {
+ b.append(str.substring(i));
+ break;
+ } else {
+ b.append(str.substring(i, j));
+ b.append(to);
+ i = j + 1;
+ }
+ }
+ return b.toString();
+ }
+}
diff --git a/jurt/com/sun/star/lib/util/UrlToFileMapper.java b/jurt/com/sun/star/lib/util/UrlToFileMapper.java
new file mode 100644
index 000000000000..22b6ccf0a745
--- /dev/null
+++ b/jurt/com/sun/star/lib/util/UrlToFileMapper.java
@@ -0,0 +1,161 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org 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 version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+package com.sun.star.lib.util;
+
+import java.io.File;
+import java.lang.reflect.Constructor;
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Method;
+import java.net.URL;
+import java.net.URLDecoder;
+import java.net.URLEncoder;
+
+/**
+ * Maps Java URL representations to File representations, on any Java version.
+ *
+ * @since UDK 3.2.8
+ */
+public final class UrlToFileMapper {
+
+ // java.net.URLEncoder.encode(String, String) and java.net.URI are only
+ // available since Java 1.4:
+ private static Method urlEncoderEncode;
+ private static Constructor uriConstructor;
+ private static Constructor fileConstructor;
+ static {
+ try {
+ urlEncoderEncode = URLEncoder.class.getMethod(
+ "encode", new Class[] { String.class, String.class });
+ Class uriClass = Class.forName("java.net.URI");
+ uriConstructor = uriClass.getConstructor(
+ new Class[] { String.class });
+ fileConstructor = File.class.getConstructor(
+ new Class[] { uriClass });
+ } catch (ClassNotFoundException e) {
+ } catch (NoSuchMethodException e) {
+ }
+ }
+
+ /**
+ * Maps Java URL representations to File representations.
+ *
+ * @param url some URL, possibly null.
+ * @return a corresponding File, or null on failure.
+ */
+ public static File mapUrlToFile(URL url) {
+ if (url == null) {
+ return null;
+ } else if (fileConstructor == null) {
+ // If java.net.URI is not available, hope that the following works
+ // well: First, check that the given URL has a certain form.
+ // Second, use the URLDecoder to decode the URL path (taking care
+ // not to change any plus signs to spaces), hoping that the used
+ // default encoding is the proper one for file URLs. Third, create
+ // a File from the decoded path.
+ return url.getProtocol().equalsIgnoreCase("file")
+ && url.getAuthority() == null && url.getQuery() == null
+ && url.getRef() == null
+ ? new File(URLDecoder.decode(
+ StringHelper.replace(url.getPath(), '+', "%2B")))
+ : null;
+ } else {
+ // If java.net.URI is avaliable, do
+ // URI uri = new URI(encodedUrl);
+ // try {
+ // return new File(uri);
+ // } catch (IllegalArgumentException e) {
+ // return null;
+ // }
+ // where encodedUrl is url.toString(), but since that may contain
+ // unsafe characters (e.g., space, " "), it is encoded, as otherwise
+ // the URI constructor might throw java.net.URISyntaxException (in
+ // Java 1.5, URL.toURI might be used instead).
+ String encodedUrl = encode(url.toString());
+ try {
+ Object uri = uriConstructor.newInstance(
+ new Object[] { encodedUrl });
+ try {
+ return (File) fileConstructor.newInstance(
+ new Object[] { uri });
+ } catch (InvocationTargetException e) {
+ if (e.getTargetException() instanceof
+ IllegalArgumentException) {
+ return null;
+ } else {
+ throw e;
+ }
+ }
+ } catch (InstantiationException e) {
+ throw new RuntimeException("This cannot happen: " + e);
+ } catch (IllegalAccessException e) {
+ throw new RuntimeException("This cannot happen: " + e);
+ } catch (InvocationTargetException e) {
+ if (e.getTargetException() instanceof Error) {
+ throw (Error) e.getTargetException();
+ } else if (e.getTargetException() instanceof RuntimeException) {
+ throw (RuntimeException) e.getTargetException();
+ } else {
+ throw new RuntimeException("This cannot happen: " + e);
+ }
+ }
+ }
+ }
+
+
+
+ private static String encode(String url) {
+ StringBuffer buf = new StringBuffer();
+ for (int i = 0; i < url.length(); ++i) {
+ char c = url.charAt(i);
+ // The RFC 2732 <uric> characters: !$&'()*+,-./:;=?@[]_~ plus digits
+ // and letters; additionally, do not encode % again.
+ if (c >= 'a' && c <= 'z' || c >= '?' && c <= '['
+ || c >= '$' && c <= ';' || c == '!' || c == '=' || c == ']'
+ || c == '_' || c == '~')
+ {
+ buf.append(c);
+ } else if (c == ' ') {
+ buf.append("%20");
+ } else {
+ String enc;
+ try {
+ enc = (String) urlEncoderEncode.invoke(
+ null,
+ new Object[] { new Character(c).toString(), "UTF-8" });
+ } catch (IllegalAccessException e) {
+ throw new RuntimeException("This cannot happen: " + e);
+ } catch (InvocationTargetException e) {
+ throw new RuntimeException("This cannot happen: " + e);
+ }
+ buf.append(enc);
+ }
+ }
+ return buf.toString();
+ }
+
+ private UrlToFileMapper() {}
+}
diff --git a/jurt/com/sun/star/lib/util/makefile.mk b/jurt/com/sun/star/lib/util/makefile.mk
new file mode 100644
index 000000000000..323e0dd6f376
--- /dev/null
+++ b/jurt/com/sun/star/lib/util/makefile.mk
@@ -0,0 +1,42 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2010 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org 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 version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org. If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+PRJ := ..$/..$/..$/..$/..
+PRJNAME := jurt
+
+TARGET := com_sun_star_lib_util
+PACKAGE := com$/sun$/star$/lib$/util
+
+.INCLUDE: $(PRJ)$/util$/makefile.pmk
+
+JAVAFILES = \
+ AsynchronousFinalizer.java \
+ NativeLibraryLoader.java \
+ StringHelper.java \
+ UrlToFileMapper.java
+
+.INCLUDE: target.mk