Search in sources :

Example 1 with AbstractAmqpEndpoint

use of org.eclipse.hono.service.amqp.AbstractAmqpEndpoint in project hono by eclipse.

the class ApplicationConfig method amqpServer.

/**
 * Creates a new server for exposing the device registry's AMQP 1.0 based
 * endpoints.
 *
 * @param tenantService The tenant service instance.
 * @param registrationService The device registration service instance.
 * @param credentialsService The credentials service instance.
 * @param tenantManagementService The tenant management service instance.
 * @param deviceManagementService The device management service instance.
 * @param credentialsManagementService The credentials management service instance.
 * @return The server.
 */
@Bean(name = BEAN_NAME_AMQP_SERVER)
@Scope("prototype")
@Profile(Profiles.PROFILE_REGISTRY_ADAPTER)
public DeviceRegistryAmqpServer amqpServer(@Autowired(required = false) final TenantService tenantService, final RegistrationServiceImpl registrationService, final CredentialsServiceImpl credentialsService, @Autowired(required = false) final TenantManagementService tenantManagementService, @Autowired(required = false) final DeviceManagementService deviceManagementService, @Autowired(required = false) final CredentialsManagementService credentialsManagementService) {
    final DeviceRegistryAmqpServer amqpServer = new DeviceRegistryAmqpServer();
    final TenantInformationService tenantInformationService = createAndApplyTenantInformationService(tenantManagementService, deviceManagementService, credentialsManagementService);
    if (deviceManagementService != null) {
        final var eventSenderProvider = eventSenderProvider();
        final EdgeDeviceAutoProvisioner edgeDeviceAutoProvisioner = new EdgeDeviceAutoProvisioner(vertx(), deviceManagementService, eventSenderProvider, autoProvisionerConfigProperties(), tracer());
        registrationService.setEdgeDeviceAutoProvisioner(edgeDeviceAutoProvisioner);
        if (credentialsManagementService != null) {
            final DeviceAndGatewayAutoProvisioner deviceAndGatewayAutoProvisioner = new DeviceAndGatewayAutoProvisioner(vertx(), deviceManagementService, credentialsManagementService, eventSenderProvider);
            credentialsService.setDeviceAndGatewayAutoProvisioner(deviceAndGatewayAutoProvisioner);
        }
    }
    registrationService.setTenantInformationService(tenantInformationService);
    credentialsService.setTenantInformationService(tenantInformationService);
    // add endpoints
    final List<AbstractAmqpEndpoint<ServiceConfigProperties>> endpoints = new ArrayList<>();
    Optional.ofNullable(tenantService).ifPresent(svc -> endpoints.add(new DelegatingTenantAmqpEndpoint<>(vertx(), svc)));
    endpoints.add(new DelegatingRegistrationAmqpEndpoint<>(vertx(), registrationService));
    endpoints.add(new DelegatingCredentialsAmqpEndpoint<>(vertx(), credentialsService));
    endpoints.forEach(ep -> {
        ep.setTracer(tracer());
        ep.setConfiguration(amqpServerProperties());
        amqpServer.addEndpoint(ep);
    });
    return amqpServer;
}
Also used : EdgeDeviceAutoProvisioner(org.eclipse.hono.deviceregistry.service.device.EdgeDeviceAutoProvisioner) DelegatingTenantAmqpEndpoint(org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint) AbstractAmqpEndpoint(org.eclipse.hono.service.amqp.AbstractAmqpEndpoint) DeviceAndGatewayAutoProvisioner(org.eclipse.hono.service.management.device.DeviceAndGatewayAutoProvisioner) ArrayList(java.util.ArrayList) DeviceRegistryAmqpServer(org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer) NoopTenantInformationService(org.eclipse.hono.deviceregistry.service.tenant.NoopTenantInformationService) TenantInformationService(org.eclipse.hono.deviceregistry.service.tenant.TenantInformationService) DefaultTenantInformationService(org.eclipse.hono.deviceregistry.service.tenant.DefaultTenantInformationService) Scope(org.springframework.context.annotation.Scope) Profile(org.springframework.context.annotation.Profile) ObjectFactoryCreatingFactoryBean(org.springframework.beans.factory.config.ObjectFactoryCreatingFactoryBean) Bean(org.springframework.context.annotation.Bean)

Aggregations

ArrayList (java.util.ArrayList)1 DeviceRegistryAmqpServer (org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer)1 EdgeDeviceAutoProvisioner (org.eclipse.hono.deviceregistry.service.device.EdgeDeviceAutoProvisioner)1 DefaultTenantInformationService (org.eclipse.hono.deviceregistry.service.tenant.DefaultTenantInformationService)1 NoopTenantInformationService (org.eclipse.hono.deviceregistry.service.tenant.NoopTenantInformationService)1 TenantInformationService (org.eclipse.hono.deviceregistry.service.tenant.TenantInformationService)1 AbstractAmqpEndpoint (org.eclipse.hono.service.amqp.AbstractAmqpEndpoint)1 DeviceAndGatewayAutoProvisioner (org.eclipse.hono.service.management.device.DeviceAndGatewayAutoProvisioner)1 DelegatingTenantAmqpEndpoint (org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint)1 ObjectFactoryCreatingFactoryBean (org.springframework.beans.factory.config.ObjectFactoryCreatingFactoryBean)1 Bean (org.springframework.context.annotation.Bean)1 Profile (org.springframework.context.annotation.Profile)1 Scope (org.springframework.context.annotation.Scope)1