X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.cms%2Fsrc%2Forg%2Fargeo%2Fcms%2Finternal%2Fkernel%2FKernel.java;h=848206f5c5248833707a99838b92bceb3210d031;hb=202de2cb4c3eb2ea051a577c9105205ff3c28388;hp=c38a4b29a73744eb4d553941bd646a0285066828;hpb=c322e016196139f7f4fb9192e5b1e773999143d0;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.cms/src/org/argeo/cms/internal/kernel/Kernel.java b/org.argeo.cms/src/org/argeo/cms/internal/kernel/Kernel.java index c38a4b29a..848206f5c 100644 --- a/org.argeo.cms/src/org/argeo/cms/internal/kernel/Kernel.java +++ b/org.argeo.cms/src/org/argeo/cms/internal/kernel/Kernel.java @@ -7,7 +7,9 @@ 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.osgi.framework.BundleContext; +import org.osgi.framework.ServiceRegistration; import org.springframework.security.core.context.SecurityContextHolder; /** @@ -23,6 +25,7 @@ import org.springframework.security.core.context.SecurityContextHolder; */ final class Kernel { private final static Log log = LogFactory.getLog(Kernel.class); +// private static final String PROP_WORKBENCH_AUTOSTART = "org.eclipse.rap.workbenchAutostart"; private final BundleContext bundleContext; @@ -31,6 +34,8 @@ final class Kernel { private NodeSecurity nodeSecurity; private NodeHttp nodeHttp; + private ServiceRegistration workbenchReg; + Kernel(BundleContext bundleContext) { this.bundleContext = bundleContext; } @@ -47,12 +52,18 @@ final class Kernel { nodeSecurity = new NodeSecurity(bundleContext, node); nodeHttp = new NodeHttp(bundleContext, node, nodeSecurity); - // Publish services to OSGi register + // Publish services to OSGi nodeSecurity.publish(); node.publish(); bundleContext.registerService(RepositoryFactory.class, repositoryFactory, null); nodeHttp.publish(); + +// if ("false".equals(bundleContext +// .getProperty(PROP_WORKBENCH_AUTOSTART))) { +// WorkbenchApplicationConfiguration wac = new WorkbenchApplicationConfiguration(); +// registerWorkbench(wac); +// } } catch (Exception e) { log.error("Cannot initialize Argeo CMS", e); throw new ArgeoException("Cannot initialize", e); @@ -67,6 +78,9 @@ final class Kernel { void destroy() { long begin = System.currentTimeMillis(); + // OSGi + workbenchReg.unregister(); + nodeHttp = null; nodeSecurity.destroy(); node.destroy(); @@ -76,6 +90,17 @@ final class Kernel { + (duration % 1000) + "s ##"); } +// private void registerWorkbench(final WorkbenchApplicationConfiguration wac) { +// new Thread("Worbench Launcher") { +// public void run() { +// Hashtable props = new Hashtable(); +// props.put(ApplicationLauncher.PROPERTY_CONTEXT_NAME, "ui"); +// workbenchReg = bundleContext.registerService( +// ApplicationConfiguration.class, wac, props); +// } +// }.start(); +// } + private void directorsCut() { final long ms = 128l + (long) (Math.random() * 128d); log.info("Spend " + ms + "ms"