]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.lib.detached/src/main/java/org/argeo/slc/lib/detached/DetachedLauncher.java
Fix renamed third-party bundles
[gpl/argeo-slc.git] / runtime / org.argeo.slc.lib.detached / src / main / java / org / argeo / slc / lib / detached / DetachedLauncher.java
index d9ff2f6be118c7f2fbd84e01fae688f1fb2d1ad5..5f2bbd2e977a0aa800ea42d15a700c009a7bf429 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2007-2012 Argeo GmbH
+ *
+ * Licensed 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.argeo.slc.lib.detached;
 
 import java.io.File;
@@ -26,10 +41,10 @@ public class DetachedLauncher extends JvmProcess implements BundleContextAware,
        private ResourceLoader resourceLoader = null;
 
        private Resource osgiFramework = null;
-       private String osgibootBundleName = "org.argeo.slc.osgiboot";
+       private String osgibootBundleName = "org.argeo.osgi.boot";      
        private String equinoxBundleName = "org.eclipse.osgi";
-       private String xmlapisBundleName = "com.springsource.org.apache.xmlcommons";
-       private String xercesBundleName = "com.springsource.org.apache.xerces";
+       private String xmlapisBundleName = "org.apache.xmlcommons";
+       private String xercesBundleName = "org.apache.xerces";
 
        private List<String> excludeBundleNames = new ArrayList<String>();
        private List<String> includeBundleUrls = new ArrayList<String>();
@@ -43,7 +58,7 @@ public class DetachedLauncher extends JvmProcess implements BundleContextAware,
        public DetachedLauncher() {
                // Override defaults
                setSynchronous(false);
-               setMainClass("org.argeo.slc.osgiboot.Launcher");
+               setMainClass("org.argeo.osgi.boot.Launcher");
        }
 
        public void afterPropertiesSet() throws Exception {
@@ -62,11 +77,17 @@ public class DetachedLauncher extends JvmProcess implements BundleContextAware,
                bundles: for (Bundle bundle : bundleContext.getBundles()) {
                        String name = bundle.getSymbolicName();
 
-                       if (excludeBundleNames.contains(name))
+                       if (excludeBundleNames.contains(name)) {
+                               if (log.isDebugEnabled())
+                                       log.debug("Exclude bundle " + name);
                                continue bundles;// skip excluded
+                       }
 
-                       String location = bundle.getLocation();
-                       location = removeInitialReference(location);
+                       String originalLocation = bundle.getLocation();
+                       if (log.isTraceEnabled())
+                               log.trace("Original location of bundle " + name + ": "
+                                               + originalLocation);
+                       String location = removeInitialReference(originalLocation);
 
                        // Special bundles
                        if (osgibootBundleName.equals(name))
@@ -82,12 +103,19 @@ public class DetachedLauncher extends JvmProcess implements BundleContextAware,
                                File file = new File(location.substring("file:".length()));
                                if (osgiLocations.length() != 0)
                                        osgiLocations.append(File.pathSeparatorChar);
-                               osgiLocations.append(file.getPath().replace('/',
-                                               File.separatorChar));
+                               location = file.getPath().replace('/', File.separatorChar);
+                               osgiLocations.append(location);
+                               if (log.isTraceEnabled())
+                                       log.trace("Added bundle " + name
+                                                       + " to argeo.osgi.locations: " + location);
                        } else {
                                if (osgiBundles.length() != 0)
                                        osgiBundles.append(',');
-                               osgiBundles.append(location.replace('/', File.separatorChar));
+                               location = location.replace('/', File.separatorChar);
+                               osgiBundles.append(location);
+                               if (log.isTraceEnabled())
+                                       log.trace("Added bundle " + name + " to osgi.bundles: "
+                                                       + location);
                        }
                }
 
@@ -95,12 +123,16 @@ public class DetachedLauncher extends JvmProcess implements BundleContextAware,
                        if (osgiBundles.length() != 0)
                                osgiBundles.append(',');
                        osgiBundles.append(url);
+                       if (log.isDebugEnabled())
+                               log.debug("Include url" + url);
                }
 
                getSystemProperties().setProperty("osgi.bundles",
                                osgiBundles.toString());
-               getSystemProperties().setProperty("slc.osgi.locations",
+               getSystemProperties().setProperty("argeo.osgi.locations",
                                osgiLocations.toString());
+               
+               super.afterPropertiesSet();
        }
 
        protected String removeInitialReference(String location) {