X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=org.argeo.cms%2Fsrc%2Forg%2Fargeo%2Fcms%2Finternal%2Fkernel%2FKernel.java;h=62efa364de3d470cd48b26b976f7be9033375efd;hb=2f7e4652af30d568491041ca2bed1c54b3246766;hp=e38704d5cd67df3f2571137ca2ce5f01f2e87657;hpb=759a7c0396796565b231738b855c8b0a8413be6b;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 e38704d5c..62efa364d 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 @@ -1,9 +1,12 @@ package org.argeo.cms.internal.kernel; +import java.lang.management.ManagementFactory; + import javax.jcr.RepositoryFactory; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; +import org.apache.jackrabbit.util.TransientFileFactory; import org.argeo.ArgeoException; import org.argeo.jackrabbit.OsgiJackrabbitRepositoryFactory; import org.argeo.security.core.InternalAuthentication; @@ -23,7 +26,8 @@ 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 static final String PROP_WORKBENCH_AUTOSTART = + // "org.eclipse.rap.workbenchAutostart"; private final BundleContext bundleContext; @@ -59,10 +63,13 @@ final class Kernel { throw new ArgeoException("Cannot initialize", e); } - long duration = System.currentTimeMillis() - begin; - log.info("## ARGEO CMS UP in " + (duration / 1000) + "." - + (duration % 1000) + "s ##"); - directorsCut(); + long jvmUptime = ManagementFactory.getRuntimeMXBean().getUptime(); + log.info("## ARGEO CMS UP in " + (jvmUptime / 1000) + "." + + (jvmUptime % 1000) + "s ##"); + long initDuration = System.currentTimeMillis() - begin; + if (log.isTraceEnabled()) + log.trace("Kernel initialization took " + initDuration + "ms"); + directorsCut(initDuration); } void destroy() { @@ -72,24 +79,17 @@ final class Kernel { nodeSecurity.destroy(); node.destroy(); + // Clean hanging threads from Jackrabbit + TransientFileFactory.shutdown(); + long duration = System.currentTimeMillis() - begin; log.info("## ARGEO CMS DOWN in " + (duration / 1000) + "." + (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); + private void directorsCut(long initDuration) { + // final long ms = 128l + (long) (Math.random() * 128d); + long ms = initDuration / 10; log.info("Spend " + ms + "ms" + " reflecting on the progress brought to mankind" + " by Free Software...");