com.google.inject.Module Java Examples
The following examples show how to use
com.google.inject.Module.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractServiceTest_initializeGuice.java From ja-micro with Apache License 2.0 | 6 votes |
@Test public void initializeGuice_ProvideImmutableListViaExtendingService_NoProblem() throws Exception { // given final AbstractService service = new AbstractService() { @Override public void displayHelp(PrintStream out) { } @Override protected List<Module> getGuiceModules() { return Collections.emptyList(); } }; // when service.initializeGuice(); // then // no exception should be raised assertThat(service.injector).isNotNull(); }
Example #2
Source File: AbstractSystemTestCase.java From arcusplatform with Apache License 2.0 | 6 votes |
public static void startIrisSystem(Collection<? extends Class<? extends Module>> extra) throws Exception { File basePath = BASE_PATH.get(); if (basePath != null) { throw new IllegalStateException("iris test harness already started: " + basePath); } basePath = Files.createTempDir(); if (!BASE_PATH.compareAndSet(null, basePath)) { FileUtils.deleteDirectory(basePath); throw new IllegalStateException("iris test harness startup race condition"); } System.out.println("Starting up simulated iris hal: " + basePath + "..."); FileUtils.deleteDirectory(basePath); BootUtils.addExtraModules(extra); BootUtils.initialize(new IrisHalTest(), basePath, Collections.<String>emptyList()); }
Example #3
Source File: ObjectMapperModuleTest.java From jackson-modules-base with Apache License 2.0 | 6 votes |
@Test public void testModulesRegisteredThroughInjectionWithAnnotation() throws Exception { final Injector injector = Guice.createInjector( new ObjectMapperModule().registerModule(IntegerAsBase16Module.class, Ann.class), new Module() { @Override public void configure(Binder binder) { binder.bind(IntegerAsBase16Module.class).annotatedWith(Ann.class).to(IntegerAsBase16Module.class); } } ); final ObjectMapper mapper = injector.getInstance(ObjectMapper.class); Assert.assertEquals(mapper.writeValueAsString(Integer.valueOf(10)), "\"A\""); }
Example #4
Source File: SagaModuleBuilderTest.java From saga-lib with Apache License 2.0 | 6 votes |
/** * <pre> * Given => Custom interceptor is configured * When => String message is handled * Then => Interceptor has been called * </pre> */ @Test public void handleString_interceptorConfigured_interceptorIsCalled() throws InvocationTargetException, IllegalAccessException { // given Module sagaModule = SagaModuleBuilder.configure().callInterceptor(CustomInterceptor.class).build(); Injector injector = Guice.createInjector(sagaModule, new CustomModule()); MessageStream msgStream = injector.getInstance(MessageStream.class); Set<SagaLifetimeInterceptor> interceptors = injector.getInstance(Key.get(new TypeLiteral<Set<SagaLifetimeInterceptor>>() {})); // when msgStream.handle("anyString"); // then CustomInterceptor interceptor = (CustomInterceptor) interceptors.iterator().next(); assertThat("Expected interceptor to be called.", interceptor.hasStartingBeenCalled(), equalTo(true)); }
Example #5
Source File: SuroServer.java From suro with Apache License 2.0 | 6 votes |
public static void create(AtomicReference<Injector> injector, final Properties properties, Module... modules) throws Exception { // Create the injector injector.set(LifecycleInjector.builder() .withBootstrapModule( new BootstrapModule() { @Override public void configure(BootstrapBinder binder) { binder.bindConfigurationProvider().toInstance( new PropertiesConfigurationProvider(properties)); } } ) .withModules( new RoutingPlugin(), new ServerSinkPlugin(), new SuroInputPlugin(), new SuroDynamicPropertyModule(), new SuroModule(), StatusServer.createJerseyServletModule() ) .withAdditionalModules(modules) .build().createInjector()); }
Example #6
Source File: RiemannInputPlugin.java From ffwd with Apache License 2.0 | 6 votes |
@Override public Module module(final Key<PluginSource> key, final String id) { return new PrivateModule() { @Override protected void configure() { bind(ProtocolServer.class).to(protocolServer).in(Scopes.SINGLETON); bind(Protocol.class).toInstance(protocol); bind(RiemannFrameDecoder.class); bind(RiemannResponder.class).in(Scopes.SINGLETON); bind(RiemannDatagramDecoder.class).in(Scopes.SINGLETON); bind(RiemannMessageDecoder.class).in(Scopes.SINGLETON); bind(Logger.class).toInstance(log); bind(RetryPolicy.class).toInstance(retry); bind(key).to(ProtocolPluginSource.class).in(Scopes.SINGLETON); expose(key); } }; }
Example #7
Source File: ComputeServiceBuilderUtil.java From attic-stratos with Apache License 2.0 | 6 votes |
public static ComputeService buildDefaultComputeService(IaasProvider iaasProvider) { Properties properties = new Properties(); // load properties for (Map.Entry<String, String> entry : iaasProvider.getProperties().entrySet()) { properties.put(entry.getKey(), entry.getValue()); } // set modules Iterable<Module> modules = ImmutableSet.<Module>of(new SshjSshClientModule(), new SLF4JLoggingModule(), new EnterpriseConfigurationModule()); // build context ContextBuilder builder = ContextBuilder.newBuilder(iaasProvider.getProvider()) .credentials(iaasProvider.getIdentity(), iaasProvider.getCredential()).modules(modules) .overrides(properties); return builder.buildView(ComputeServiceContext.class).getComputeService(); }
Example #8
Source File: AuthenticationModules.java From presto with Apache License 2.0 | 6 votes |
public static Module kerberosHdfsAuthenticationModule() { return new Module() { @Override public void configure(Binder binder) { binder.bind(HdfsAuthentication.class) .to(DirectHdfsAuthentication.class) .in(SINGLETON); configBinder(binder).bindConfig(HdfsKerberosConfig.class); } @Inject @Provides @Singleton @ForHdfs HadoopAuthentication createHadoopAuthentication(HdfsKerberosConfig config, HdfsConfigurationInitializer updater) { String principal = config.getHdfsPrestoPrincipal(); String keytabLocation = config.getHdfsPrestoKeytab(); return createCachingKerberosHadoopAuthentication(principal, keytabLocation, updater); } }; }
Example #9
Source File: WarehouseExport.java From usergrid with Apache License 2.0 | 6 votes |
private void copyToS3( String fileName ) { String bucketName = ( String ) properties.get( BUCKET_PROPNAME ); String accessId = ( String ) properties.get( ACCESS_ID_PROPNAME ); String secretKey = ( String ) properties.get( SECRET_KEY_PROPNAME ); Properties overrides = new Properties(); overrides.setProperty( "s3" + ".identity", accessId ); overrides.setProperty( "s3" + ".credential", secretKey ); final Iterable<? extends Module> MODULES = ImmutableSet .of( new JavaUrlHttpCommandExecutorServiceModule(), new Log4JLoggingModule(), new NettyPayloadModule() ); AWSCredentials credentials = new BasicAWSCredentials(accessId, secretKey); ClientConfiguration clientConfig = new ClientConfiguration(); clientConfig.setProtocol( Protocol.HTTP); AmazonS3Client s3Client = new AmazonS3Client(credentials, clientConfig); s3Client.createBucket( bucketName ); File uploadFile = new File( fileName ); PutObjectResult putObjectResult = s3Client.putObject( bucketName, uploadFile.getName(), uploadFile ); logger.info("Uploaded file etag={}", putObjectResult.getETag()); }
Example #10
Source File: AdminResourcesContainer.java From karyon with Apache License 2.0 | 6 votes |
private List<Module> buildAdminPluginsGuiceModules() { List<Module> guiceModules = new ArrayList<>(); if (adminPageRegistry != null) { final Collection<AdminPageInfo> allPages = adminPageRegistry.getAllPages(); for (AdminPageInfo adminPlugin : allPages) { logger.info("Adding admin page {}: jersey={} modules{}", adminPlugin.getName(), adminPlugin.getJerseyResourcePackageList(), adminPlugin.getGuiceModules()); final List<Module> guiceModuleList = adminPlugin.getGuiceModules(); if (guiceModuleList != null && !guiceModuleList.isEmpty()) { guiceModules.addAll(adminPlugin.getGuiceModules()); } } } guiceModules.add(getAdditionalBindings()); return guiceModules; }
Example #11
Source File: DefaultBindingsSpec.java From smartapp-sdk-java with Apache License 2.0 | 5 votes |
private <T extends Module> T createModule(Class<T> clazz) { try { return clazz.newInstance(); } catch (ReflectiveOperationException e) { throw new IllegalStateException("Module " + clazz.getName() + " is not reflectively instantiable", e); } }
Example #12
Source File: TestGuiceBundle.java From soabase with Apache License 2.0 | 5 votes |
@Test public void testIt() throws Exception { Module module = new AbstractModule() { @Override protected void configure() { bind(MockGuiceInjected.class).asEagerSingleton(); } }; final MockApplication mockApplication = new MockApplication(module); Callable callable = new Callable() { @Override public Object call() throws Exception { String[] args = {"server"}; mockApplication.run(args); return null; } }; Future future = Executors.newSingleThreadExecutor().submit(callable); try { Assert.assertTrue(mockApplication.getStartedLatch().await(5, TimeUnit.SECONDS)); URI uri = new URI("http://localhost:8080/test"); String str = CharStreams.toString(new InputStreamReader(uri.toURL().openStream())); Assert.assertEquals("guice - hk2", str); } finally { future.cancel(true); ShutdownThread.getInstance().run(); } }
Example #13
Source File: MetaBorgGeneric.java From spoofax with Apache License 2.0 | 5 votes |
/** * Instantiate the generic MetaBorg API. * * @param loader * Module plugin loader to use. * @param module * MetaBorg module to use, which should implement all services in this facade. Do not use * {@link MetaborgModule}. * @param additionalModules * Additional modules to use. * * @throws MetaborgException * When loading plugins or dependency injection fails. */ public MetaBorgGeneric(Class<I> iClass, Class<P> pClass, Class<A> aClass, Class<AU> auClass, Type tClass, Type tpClass, Type taClass, Class<F> fClass, IModulePluginLoader loader, MetaborgModule module, Module... additionalModules) throws MetaborgException { super(loader, module, additionalModules); this.dialectService = injector.getInstance(IDialectService.class); this.dialectIdentifier = injector.getInstance(IDialectIdentifier.class); this.unitService = instance(new TypeLiteral<IUnitService<I, P, A, AU, TP, TA>>() {}, iClass, pClass, aClass, auClass, tpClass, taClass); this.syntaxService = instance(new TypeLiteral<ISyntaxService<I, P>>() {}, iClass, pClass); this.analysisService = instance(new TypeLiteral<IAnalysisService<P, A, AU>>() {}, pClass, aClass, auClass); this.transformService = instance(new TypeLiteral<ITransformService<P, A, TP, TA>>() {}, pClass, aClass, tpClass, taClass); this.builder = instance(new TypeLiteral<IBuilder<P, A, AU, T>>() {}, pClass, aClass, auClass, tClass); this.processorRunner = instance(new TypeLiteral<IProcessorRunner<P, A, AU, T>>() {}, pClass, aClass, auClass, tClass); this.parseResultProcessor = instance(new TypeLiteral<IParseResultProcessor<I, P>>() {}, iClass, pClass); this.analysisResultProcessor = instance(new TypeLiteral<IAnalysisResultProcessor<I, P, A>>() {}, iClass, pClass, aClass); this.analysisResultRequester = instance(new TypeLiteral<IAnalysisResultRequester<I, A>>() {}, iClass, aClass); this.actionService = injector.getInstance(IActionService.class); this.menuService = injector.getInstance(IMenuService.class); this.tracingService = instance(new TypeLiteral<ITracingService<P, A, T, F>>() {}, pClass, aClass, tClass, fClass); this.categorizerService = instance(new TypeLiteral<ICategorizerService<P, A, F>>() {}, pClass, aClass, fClass); this.stylerService = instance(new TypeLiteral<IStylerService<F>>() {}, fClass); this.hoverService = instance(new TypeLiteral<IHoverService<P, A>>() {}, pClass, aClass); this.resolverService = instance(new TypeLiteral<IResolverService<P, A>>() {}, pClass, aClass); this.outlineService = instance(new TypeLiteral<IOutlineService<P, A>>() {}, pClass, aClass); this.completionService = instance(new TypeLiteral<ICompletionService<P>>() {}, pClass); }
Example #14
Source File: NexusContextListener.java From nexus-public with Eclipse Public License 1.0 | 5 votes |
/** * Registers our locator service with Pax-Exam to handle injection of test classes. */ private void registerLocatorWithPaxExam(final Provider<BeanLocator> locatorProvider) { // ensure this service is ranked higher than the Pax-Exam one final Dictionary<String, Object> examProperties = new Hashtable<>(); examProperties.put(Constants.SERVICE_RANKING, Integer.MAX_VALUE); examProperties.put("name", "nexus"); bundleContext.registerService(org.ops4j.pax.exam.util.Injector.class, new org.ops4j.pax.exam.util.Injector() { @Override public void injectFields(final Object target) { Module testModule = new WireModule(new AbstractModule() { @Override protected void configure() { // support injection of application components by wiring via shared locator // (use provider to avoid auto-publishing test-instance to the application) bind(BeanLocator.class).toProvider(locatorProvider); // support injection of application properties bind(ParameterKeys.PROPERTIES).toInstance( locatorProvider.get().locate(ParameterKeys.PROPERTIES).iterator().next().getValue()); // inject the test-instance requestInjection(target); } }); // lock locator to avoid a potential concurrency issue while injecting the target // (just in case there was a startup problem that left things in an odd state and // a Jetty thread is now trying to initialize the same singletons via the filter) // - locking the locator holds back dynamic injection while we populate the test synchronized (locatorProvider.get()) { Guice.createInjector(testModule); } } }, examProperties); }
Example #15
Source File: AWSEC2ApiMetadata.java From attic-stratos with Apache License 2.0 | 5 votes |
public Builder() { id("aws-ec2") .version("2014-02-01") .name("Amazon-specific EC2 API") .identityName("Access Key ID") .credentialName("Secret Access Key") .defaultEndpoint("https://ec2.us-east-1.amazonaws.com") .documentation(URI.create("http://docs.amazonwebservices.com/AWSEC2/latest/APIReference")) .defaultProperties(AWSEC2ApiMetadata.defaultProperties()) .view(AWSEC2ComputeServiceContext.class) .defaultModules(ImmutableSet.<Class<? extends Module>>of(AWSEC2HttpApiModule.class, EC2ResolveImagesModule.class, AWSEC2ComputeServiceContextModule.class)); }
Example #16
Source File: ScopeActivator.java From dsl-devkit with Eclipse Public License 1.0 | 5 votes |
protected Module getUiModule(String grammar) { if (COM_AVALOQ_TOOLS_DDK_XTEXT_SCOPE_SCOPE.equals(grammar)) { return new com.avaloq.tools.ddk.xtext.scope.ui.ScopeUiModule(this); } throw new IllegalArgumentException(grammar); }
Example #17
Source File: GuiceSystemUnderDevelopment.java From livingdoc-core with GNU General Public License v3.0 | 5 votes |
private List<Module> convertModuleNamesToModules() throws InstantiationException, IllegalAccessException { List<Module> modules = new ArrayList<Module>(moduleNames.size()); for (String moduleName : moduleNames) { Class< ? > klass = loadType(moduleName).getUnderlyingClass(); modules.add(( Module ) klass.newInstance()); } return modules; }
Example #18
Source File: JenkinsClient.java From jenkins-rest with Apache License 2.0 | 5 votes |
private JenkinsApi createApi(final String endPoint, final JenkinsAuthentication authentication, final Properties overrides, final List<Module> modules) { final List<Module> allModules = Lists.newArrayList(new JenkinsAuthenticationModule(authentication)); if (modules != null) { allModules.addAll(modules); } return ContextBuilder .newBuilder(new JenkinsApiMetadata.Builder().build()) .endpoint(endPoint) .modules(allModules) .overrides(overrides) .buildApi(JenkinsApi.class); }
Example #19
Source File: AggregateGuiceModuleTestRule.java From james-project with Apache License 2.0 | 5 votes |
@Override public Module getModule() { List<Module> modules = subrule .stream() .map(GuiceModuleTestRule::getModule) .collect(Guavate.toImmutableList()); return Modules.combine(modules); }
Example #20
Source File: NeutronNetworkingApi.java From attic-stratos with Apache License 2.0 | 5 votes |
private void buildNeutronApi() { String iaasProviderNullMsg = "IaasProvider is null. Unable to build neutron API"; assertNotNull(iaasProvider, iaasProviderNullMsg); String region = ComputeServiceBuilderUtil.extractRegion(iaasProvider); String regionNullOrEmptyErrorMsg = String.format("Region is not set. Unable to build neutron API for the iaas provider %s", iaasProvider.getProvider()); assertNotNullAndNotEmpty(region, regionNullOrEmptyErrorMsg); String endpoint = iaasProvider.getProperty(CloudControllerConstants.JCLOUDS_ENDPOINT); String endpointNullOrEmptyErrorMsg = String.format("Endpoint is not set. Unable to build neutorn API for the iaas provider %s", iaasProvider.getProvider()); assertNotNullAndNotEmpty(endpoint, endpointNullOrEmptyErrorMsg); Iterable<Module> modules = ImmutableSet.<Module>of(new SLF4JLoggingModule()); try { this.neutronApi = ContextBuilder.newBuilder(provider).credentials(iaasProvider.getIdentity(), iaasProvider.getCredential()).endpoint(endpoint).modules(modules).buildApi(NeutronApi.class); } catch (Exception e) { String msg = String.format("Unable to build neutron API for [provider=%s, identity=%s, credential=%s, endpoint=%s]", provider, iaasProvider.getIdentity(), iaasProvider.getCredential(), endpoint); log.error(msg, e); throw new CloudControllerException(msg, e); } this.portApi = neutronApi.getPortApi(region); String portApiNullOrEmptyErrorMessage = String.format("Unable to get port Api from neutron Api for region ", region); assertNotNull(portApi, portApiNullOrEmptyErrorMessage); this.floatingIPApi = neutronApi.getFloatingIPApi(region).get(); String floatingIPApiNullOrEmptyErrorMessage = String.format("Unable to get floatingIP Api from neutron Api for region ", region); assertNotNull(floatingIPApi, floatingIPApiNullOrEmptyErrorMessage); }
Example #21
Source File: ConfigurationContext.java From dropwizard-guicey with MIT License | 5 votes |
/** * @param modules overriding guice modules to register */ public void registerModulesOverride(final Module... modules) { ModuleItemInfoImpl.overrideScope(() -> { for (Module module : modules) { register(ConfigItem.Module, module); } }); }
Example #22
Source File: TestRMWebAppFairScheduler.java From big-c with Apache License 2.0 | 5 votes |
@Test public void testFairSchedulerWebAppPage() { List<RMAppState> appStates = Arrays.asList(RMAppState.NEW, RMAppState.NEW_SAVING, RMAppState.SUBMITTED); final RMContext rmContext = mockRMContext(appStates); Injector injector = WebAppTests.createMockInjector(RMContext.class, rmContext, new Module() { @Override public void configure(Binder binder) { try { ResourceManager mockRmWithFairScheduler = mockRm(rmContext); binder.bind(ResourceManager.class).toInstance (mockRmWithFairScheduler); binder.bind(ApplicationBaseProtocol.class).toInstance( mockRmWithFairScheduler.getClientRMService()); } catch (IOException e) { throw new IllegalStateException(e); } } }); FairSchedulerPage fsViewInstance = injector.getInstance(FairSchedulerPage .class); fsViewInstance.render(); WebAppTests.flushOutput(injector); }
Example #23
Source File: ConfigurationContext.java From dropwizard-guicey with MIT License | 5 votes |
/** * Guice module manual disable registration from * {@link ru.vyarus.dropwizard.guice.GuiceBundle.Builder#disableModules(Class[])}. * * @param modules modules to disable */ @SuppressWarnings("PMD.UseVarargs") public void disableModules(final Class<? extends Module>[] modules) { for (Class<? extends Module> module : modules) { registerDisable(ConfigItem.Module, ItemId.from(module)); } }
Example #24
Source File: BackupModule.java From presto with Apache License 2.0 | 5 votes |
public BackupModule(Map<String, Module> providers) { this.providers = ImmutableMap.<String, Module>builder() .put("file", new FileBackupModule()) .put("http", new HttpBackupModule()) .putAll(providers) .build(); }
Example #25
Source File: Bootstrap.java From arcusplatform with Apache License 2.0 | 5 votes |
public Builder withModuleClassnames(Collection<String> classes) throws ClassNotFoundException { if(classes != null) { Set<Class<? extends Module>> moduleClasses = classnamesToClasses(classes); this.moduleClasses.addAll(moduleClasses); } return this; }
Example #26
Source File: DefaultSharedContributionOverridingRegistry.java From n4js with Eclipse Public License 1.0 | 5 votes |
/** * Here we override the childModule if it is a {@link DefaultSharedContribution}. In that case, we enhance it with * the {@link ProjectStateChangeListenerModule}. * * @param childModule * the module that shall be used to configure the contribution. */ @Override public SharedStateContribution createContribution(Module childModule) { if (childModule.getClass().equals(DefaultSharedContribution.class)) { childModule = Modules.override(childModule).with(new ProjectStateChangeListenerModule()); } return super.createContribution(childModule); }
Example #27
Source File: LabelProviderInjectionTest.java From xtext-eclipse with Eclipse Public License 2.0 | 5 votes |
@org.junit.Test public void testLabelProviderInjection() throws Exception { Module module = new Module() { @Override public void configure(Binder binder) { binder.bind(ILabelProvider.class).annotatedWith(ResourceServiceDescriptionLabelProvider.class).to(LabelProvider.class); } }; Injector injector = Guice.createInjector(module); Test instance = injector.getInstance(Test.class); assertTrue(instance.labelProvider instanceof LabelProvider); }
Example #28
Source File: ServerProviderConformanceTest.java From vespa with Apache License 2.0 | 5 votes |
private static Module newServerBinding(final String serverBinding) { return new AbstractModule() { @Override protected void configure() { bind(String.class).annotatedWith(Names.named("serverBinding")).toInstance(serverBinding); } }; }
Example #29
Source File: MockTraceContextFactory.java From pinpoint with Apache License 2.0 | 5 votes |
public static DefaultApplicationContext newMockApplicationContext(ProfilerConfig profilerConfig) { Module loggingModule = new LoggingModule(); InterceptorRegistryBinder interceptorRegistryBinder = new EmptyInterceptorRegistryBinder(); Module interceptorRegistryModule = InterceptorRegistryModule.wrap(interceptorRegistryBinder); ModuleFactory moduleFactory = new OverrideModuleFactory(loggingModule, interceptorRegistryModule); MockApplicationContextFactory factory = new MockApplicationContextFactory(); return factory.build(profilerConfig, moduleFactory); }
Example #30
Source File: Modules2.java From xtext-core with Eclipse Public License 2.0 | 5 votes |
public static Module mixin(Module...m) { if (m.length==0) return null; Module current = m[0]; for (int i=1;i<m.length;i++) { current = Modules.override(current).with(m[i]); } return current; }