net.ymate.platform.configuration.impl.DefaultModuleCfg.java Source code

Java tutorial

Introduction

Here is the source code for net.ymate.platform.configuration.impl.DefaultModuleCfg.java

Source

/*
 * Copyright 2007-2016 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 net.ymate.platform.configuration.impl;

import net.ymate.platform.configuration.IConfig;
import net.ymate.platform.configuration.IConfigModuleCfg;
import net.ymate.platform.configuration.IConfigurationProvider;
import net.ymate.platform.core.YMP;
import net.ymate.platform.core.util.ClassUtils;
import net.ymate.platform.core.util.RuntimeUtils;
import org.apache.commons.lang.StringUtils;

import java.util.Map;

/**
 * ???
 *
 * @author  (suninformation@163.com) on 15/3/16 ?6:57
 * @version 1.0
 */
public class DefaultModuleCfg implements IConfigModuleCfg {

    private String configHome;
    private String projectName;
    private String moduleName;
    private Class<? extends IConfigurationProvider> providerClass;

    @SuppressWarnings("unchecked")
    public DefaultModuleCfg(YMP owner) {
        Map<String, String> _moduleCfgs = owner.getConfig().getModuleConfigs(IConfig.MODULE_NAME);
        //
        this.configHome = RuntimeUtils
                .replaceEnvVariable(StringUtils.defaultIfEmpty(_moduleCfgs.get("config_home"), "${root}"));
        //
        this.projectName = _moduleCfgs.get("project_name");
        this.moduleName = _moduleCfgs.get("module_name");
        //
        try {
            if (StringUtils.isNotBlank(_moduleCfgs.get("provider_class"))) {
                this.providerClass = (Class<? extends IConfigurationProvider>) ClassUtils
                        .loadClass(_moduleCfgs.get("provider_class"), this.getClass());
            } else {
                this.providerClass = DefaultConfigurationProvider.class;
            }
        } catch (Exception e) {
            this.providerClass = DefaultConfigurationProvider.class;
        }
    }

    public String getConfigHome() {
        return this.configHome;
    }

    public String getProjectName() {
        return this.projectName;
    }

    public String getModuleName() {
        return this.moduleName;
    }

    public Class<? extends IConfigurationProvider> getProviderClass() {
        return this.providerClass;
    }
}