Workbench and CMS now compatible
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / internal / kernel / Kernel.java
index c38a4b29a73744eb4d553941bd646a0285066828..ef2403b445af8b665ec219929454f73e6fdcabb0 100644 (file)
@@ -1,5 +1,7 @@
 package org.argeo.cms.internal.kernel;
 
+import java.util.Hashtable;
+
 import javax.jcr.RepositoryFactory;
 
 import org.apache.commons.logging.Log;
@@ -7,7 +9,11 @@ import org.apache.commons.logging.LogFactory;
 import org.argeo.ArgeoException;
 import org.argeo.jackrabbit.OsgiJackrabbitRepositoryFactory;
 import org.argeo.security.core.InternalAuthentication;
+import org.eclipse.rap.rwt.application.ApplicationConfiguration;
+import org.eclipse.rap.rwt.osgi.ApplicationLauncher;
+import org.eclipse.rap.ui.internal.servlet.WorkbenchApplicationConfiguration;
 import org.osgi.framework.BundleContext;
+import org.osgi.framework.ServiceRegistration;
 import org.springframework.security.core.context.SecurityContextHolder;
 
 /**
@@ -21,6 +27,7 @@ import org.springframework.security.core.context.SecurityContextHolder;
  * <li>OS access</li>
  * </ul>
  */
+@SuppressWarnings("restriction")
 final class Kernel {
        private final static Log log = LogFactory.getLog(Kernel.class);
 
@@ -31,6 +38,8 @@ final class Kernel {
        private NodeSecurity nodeSecurity;
        private NodeHttp nodeHttp;
 
+       private ServiceRegistration<ApplicationConfiguration> workbenchReg;
+
        Kernel(BundleContext bundleContext) {
                this.bundleContext = bundleContext;
        }
@@ -46,13 +55,15 @@ final class Kernel {
                        repositoryFactory = new OsgiJackrabbitRepositoryFactory();
                        nodeSecurity = new NodeSecurity(bundleContext, node);
                        nodeHttp = new NodeHttp(bundleContext, node, nodeSecurity);
+                       WorkbenchApplicationConfiguration wac = new WorkbenchApplicationConfiguration();
 
-                       // Publish services to OSGi register
+                       // Publish services to OSGi
                        nodeSecurity.publish();
                        node.publish();
                        bundleContext.registerService(RepositoryFactory.class,
                                        repositoryFactory, null);
                        nodeHttp.publish();
+                       registerWorkbench(wac);
                } catch (Exception e) {
                        log.error("Cannot initialize Argeo CMS", e);
                        throw new ArgeoException("Cannot initialize", e);
@@ -66,6 +77,9 @@ final class Kernel {
 
        void destroy() {
                long begin = System.currentTimeMillis();
+               
+               // OSGi
+               workbenchReg.unregister();
 
                nodeHttp = null;
                nodeSecurity.destroy();
@@ -76,6 +90,14 @@ final class Kernel {
                                + (duration % 1000) + "s ##");
        }
 
+       private ServiceRegistration<ApplicationConfiguration> registerWorkbench(
+                       WorkbenchApplicationConfiguration wac) {
+               Hashtable<String, String> props = new Hashtable<String, String>();
+               props.put(ApplicationLauncher.PROPERTY_CONTEXT_NAME, "ui");
+               return bundleContext.registerService(ApplicationConfiguration.class,
+                               wac, props);
+       }
+
        private void directorsCut() {
                final long ms = 128l + (long) (Math.random() * 128d);
                log.info("Spend " + ms + "ms"