/** * * Copyright * 2009-2015 Jayway Products AB * 2016-2017 Föreningen Sambruk * * Licensed under AGPL, Version 3.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.gnu.org/licenses/agpl.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package se.streamsource.streamflow.client.assembler; import org.qi4j.api.common.Visibility; import org.qi4j.api.structure.Application; import org.qi4j.bootstrap.AssemblyException; import org.qi4j.bootstrap.LayerAssembly; import org.qi4j.bootstrap.ModuleAssembly; import org.qi4j.entitystore.jdbm.JdbmConfiguration; import org.qi4j.entitystore.jdbm.JdbmEntityStoreService; import org.qi4j.entitystore.memory.MemoryEntityStoreService; import org.qi4j.spi.uuid.UuidIdentityGeneratorService; import se.streamsource.streamflow.client.infrastructure.configuration.ServiceConfiguration; import se.streamsource.streamflow.client.infrastructure.events.ClientEventSourceService; import se.streamsource.streamflow.infrastructure.configuration.FileConfiguration; import se.streamsource.streamflow.infrastructure.event.domain.DomainEvent; import se.streamsource.streamflow.infrastructure.event.domain.TransactionDomainEvents; /** * JAVADOC */ public class InfrastructureAssembler { public void assemble( LayerAssembly layer ) throws AssemblyException { configuration( layer.module( "Configuration" ) ); clientEntityStyore( layer.module( "Client EntityStore" ) ); clientEvents( layer.module( "Client Events" ) ); } public void configuration( ModuleAssembly module ) throws AssemblyException { System.setProperty( "application", "StreamFlowClient" ); module.services( ServiceConfiguration.class ).instantiateOnStartup(); module.services( FileConfiguration.class ).instantiateOnStartup().visibleIn( Visibility.application ); // Configurations module.entities( JdbmConfiguration.class ).visibleIn( Visibility.layer ); // Configuration store module.services( MemoryEntityStoreService.class ); } private void clientEntityStyore( ModuleAssembly module ) throws AssemblyException { Application.Mode mode = module.layer().application().mode(); if (mode.equals( Application.Mode.development )) { // In-memory store module.services( MemoryEntityStoreService.class, UuidIdentityGeneratorService.class ).visibleIn( Visibility.application ); } else if (mode.equals( Application.Mode.test )) { // In-memory store module.services( MemoryEntityStoreService.class, UuidIdentityGeneratorService.class ).visibleIn( Visibility.application ); } else if (mode.equals( Application.Mode.production )) { // JDBM storage module.services( JdbmEntityStoreService.class, UuidIdentityGeneratorService.class ).visibleIn( Visibility.application ); } } private void clientEvents( ModuleAssembly module ) throws AssemblyException { module.values( TransactionDomainEvents.class, DomainEvent.class ).visibleIn( Visibility.application ); module.services( ClientEventSourceService.class ).visibleIn( Visibility.application ); } }