use of com.peterphi.std.guice.common.logging.ServiceManagerClientGuiceModule in project stdlib by petergeneric.
the class GuiceFactory method createInjector.
/**
* Sets up a Guice Injector; this is achieved in the following stages:
* <ol>
* <li>Set up the Shutdown Manager</li>
* <li>Set up the Metrics Registry</li>
* <li>Call {@link GuiceRole#register} on all GuiceRoles - this allows modules supporting core plugin functionality to be set
* up </li>
* <li>Call {@link GuiceSetup#registerModules} on GuiceSetup to get the application's guice modules - this
* allows the application to set up helper modules</li>
* <li>Call {@link GuiceRole#injectorCreated} on all GuiceRoles with the newly-created {@link Injector} - this allows plugins
* to do one-time
* post-construction work that requires an Injector</li>
* <li>Call {@link GuiceSetup#injectorCreated} with the newly-created {@link Injector} - this allows the
* application
* to do one-time post-construction work that requires an Injector</li>
* </ol>
*
* @param registry
* (optional) the {@link GuiceRegistry} to expose to the guice environment
* @param scannerFactory
* the classpath scanner
* @param config
* the system configuration
* @param setup
* the setup class
* @param roles
* guice roles to use
*
* @return
*/
private static Injector createInjector(GuiceRegistry registry, ClassScannerFactory scannerFactory, GuiceConfig config, GuiceSetup setup, List<GuiceRole> roles) {
final long started = System.currentTimeMillis();
AtomicReference<Injector> injectorRef = new AtomicReference<>();
List<Module> modules = new ArrayList<>();
final Stage stage = Stage.valueOf(config.get(GuiceProperties.STAGE_PROPERTY, Stage.DEVELOPMENT.name()));
// Set up the shutdown module
ShutdownModule shutdown = new ShutdownModule();
// If a service manager endpoint is specified (and skip isn't set) then set up the service manager client
if (config.get("service.service-manager.endpoint") != null && !config.getBoolean(GuiceProperties.SERVICE_MANAGER_SKIP, false)) {
modules.add(new ServiceManagerClientGuiceModule(config, shutdown.getShutdownManager()));
} else {
// Don't store logs in memory waiting for the service manager, they will never be picked up
ServiceManagerAppender.shutdown();
}
final MetricRegistry metricRegistry = CoreMetricsModule.buildRegistry();
try {
// Hold a strong reference to the ClassScanner instance to help the JVM not garbage collect it during startup
// N.B. we don't actually do anything with the scanner in this method (other than read metrics)
final ClassScanner scanner = scannerFactory.getInstance();
modules.add(shutdown);
if (registry != null)
modules.add(new GuiceRegistryModule(registry));
// Initialise all the roles
for (GuiceRole role : roles) role.register(stage, scannerFactory, config, setup, modules, injectorRef, metricRegistry);
// Initialise the Setup class
setup.registerModules(modules, config);
if (log.isTraceEnabled())
log.trace("Creating Injector with modules: " + modules);
final Injector injector = Guice.createInjector(stage, modules);
injectorRef.set(injector);
for (GuiceRole role : roles) role.injectorCreated(stage, scannerFactory, config, setup, modules, injectorRef, metricRegistry);
setup.injectorCreated(injector);
if (scannerFactory != null) {
final long finished = System.currentTimeMillis();
final String contextName = config.get(GuiceProperties.SERVLET_CONTEXT_NAME, "(app)");
log.debug("Injector for " + contextName + " created in " + (finished - started) + " ms");
if (scanner != null)
log.debug("Class scanner stats: insts=" + scannerFactory.getMetricNewInstanceCount() + " cached createTime=" + scanner.getConstructionTime() + ", scanTime=" + scanner.getSearchTime());
}
return injector;
} catch (Throwable t) {
log.error("Error creating injector", t);
shutdown.shutdown();
throw t;
}
}
Aggregations