Package org.impalaframework.module.source

Source Code of org.impalaframework.module.source.InternalPropertiesModuleDefinitionSource

/*
* Copyright 2007-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
*
* 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 org.impalaframework.module.source;

import java.util.Map;
import java.util.Properties;
import java.util.Set;

import org.impalaframework.module.ModuleDefinition;
import org.impalaframework.module.RootModuleDefinition;
import org.impalaframework.module.definition.ModuleTypes;
import org.impalaframework.module.spi.TypeReader;
import org.impalaframework.module.type.TypeReaderRegistry;
import org.springframework.util.Assert;

/**
* Responsible for building <code>RootModuleDefinition</code> from information provided in the form of properties
* @author Phil Zoio
*/
public class InternalPropertiesModuleDefinitionSource extends BasePropertiesModuleDefinitionSource {
   
    private String rootModuleName;
    private Map<String, Set<String>> children;
    private Set<String> siblings;
   
    InternalPropertiesModuleDefinitionSource() {
        super();
    }
   
    public InternalPropertiesModuleDefinitionSource(
            TypeReaderRegistry typeReaderRegistry,
            String rootModule,
            Map<String, Properties> moduleProperties,
            Map<String, Set<String>> children,
            Set<String> siblings) {
        super(moduleProperties, typeReaderRegistry);
        Assert.notNull(children, "children cannot be null");
        Assert.notNull(siblings, "siblings cannot be null");
       
        Assert.isTrue(!(rootModule == null && (!children.isEmpty() || !siblings.isEmpty())), "rootModuleName cannot be null unless there are no modules present");
        this.rootModuleName = rootModule;
        this.children = children;
        this.siblings = siblings;
    }

    public RootModuleDefinition getModuleDefinition() {
       
        if (rootModuleName == null) {
            return null;
        }
       
        Properties rootModuleProperties = getPropertiesForModule(rootModuleName);
        TypeReader typeReader = getTypeReadeRegistry().getTypeReader(ModuleTypes.ROOT);
        RootModuleDefinition rootModuleDefinition = readRootModuleDefinition(rootModuleProperties, typeReader);
       
        //recursively build child definitions
        buildChildDefinitions(rootModuleDefinition, rootModuleName);
       
        for (String sibling : siblings) {
            ModuleDefinition siblingDefinition = buildModuleDefinition(null, sibling);
            buildChildDefinitions(siblingDefinition, siblingDefinition.getName());
            rootModuleDefinition.addSibling(siblingDefinition);
        }
        return rootModuleDefinition;
    }
   
    protected void buildChildDefinitions(ModuleDefinition parentDefinition, String parentModuleName) {
        Set<String> moduleChildren = children.get(parentModuleName);
        if (moduleChildren != null) {
            for (String moduleName : moduleChildren) {
                ModuleDefinition definition = buildModuleDefinition(parentDefinition, moduleName);
                buildChildDefinitions(definition, moduleName);
            }
        }
    }
   
    private RootModuleDefinition readRootModuleDefinition(Properties rootModuleProperties,
            TypeReader typeReader) {
        ModuleDefinition moduleDefinition = typeReader.readModuleDefinition(null, rootModuleName, rootModuleProperties);
        if (!(moduleDefinition instanceof RootModuleDefinition)) {
            throw new IllegalStateException("Type reader " + typeReader + " produced " + ModuleDefinition.class.getSimpleName() + " which is not an instance of " + RootModuleDefinition.class.getName());
        }
        RootModuleDefinition rootDefinition = (RootModuleDefinition) moduleDefinition;
        return rootDefinition;
    }
   
}
TOP

Related Classes of org.impalaframework.module.source.InternalPropertiesModuleDefinitionSource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.