org.graylog2.shared.bindings.Graylog2ServiceLocatorGenerator Maven / Gradle / Ivy
/**
* This file is part of Graylog.
*
* Graylog is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Graylog is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Graylog. If not, see .
*/
package org.graylog2.shared.bindings;
import org.glassfish.hk2.api.DynamicConfigurationService;
import org.glassfish.hk2.api.ServiceLocator;
import org.glassfish.hk2.extension.ServiceLocatorGenerator;
import org.glassfish.hk2.utilities.BuilderHelper;
import org.jvnet.hk2.external.generator.ServiceLocatorGeneratorImpl;
import org.jvnet.hk2.guice.bridge.api.GuiceBridge;
import org.jvnet.hk2.guice.bridge.api.GuiceIntoHK2Bridge;
import org.jvnet.hk2.internal.DefaultClassAnalyzer;
import org.jvnet.hk2.internal.DynamicConfigurationImpl;
import org.jvnet.hk2.internal.DynamicConfigurationServiceImpl;
import org.jvnet.hk2.internal.ServiceLocatorImpl;
import org.jvnet.hk2.internal.Utilities;
import javax.inject.Singleton;
/**
* @author Dennis Oelkers
*/
public class Graylog2ServiceLocatorGenerator extends ServiceLocatorGeneratorImpl implements ServiceLocatorGenerator {
private ServiceLocator initialize(final String name, final ServiceLocator parent) {
if (parent != null && !(parent instanceof ServiceLocatorImpl)) {
throw new AssertionError("parent must be a " + ServiceLocatorImpl.class.getName() +
" instead it is a " + parent.getClass().getName());
}
final ServiceLocatorImpl sli = new ServiceLocatorImpl(name, (ServiceLocatorImpl) parent);
final DynamicConfigurationImpl dci = new DynamicConfigurationImpl(sli);
// The service locator itself
dci.bind(Utilities.getLocatorDescriptor(sli));
// The injection resolver for three thirty
dci.addActiveDescriptor(Utilities.getThreeThirtyDescriptor(sli));
// The dynamic configuration utility
dci.bind(BuilderHelper.link(DynamicConfigurationServiceImpl.class, false).
to(DynamicConfigurationService.class).
in(Singleton.class.getName()).
localOnly().
build());
dci.bind(BuilderHelper.createConstantDescriptor(
new DefaultClassAnalyzer(sli)));
dci.commit();
GuiceBridge.getGuiceBridge().initializeGuiceBridge(sli);
GuiceIntoHK2Bridge guiceBridge = sli.getService(GuiceIntoHK2Bridge.class);
guiceBridge.bridgeGuiceInjector(GuiceInjectorHolder.getInjector());
return sli;
}
@Override
public ServiceLocator create(String name, ServiceLocator parent) {
return initialize(name, parent);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy