All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.ymate.platform.configuration.AbstractConfigurationProvider Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
/*
 * Copyright 2007-2017 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;

import net.ymate.platform.core.lang.BlurObject;
import net.ymate.platform.core.support.ReentrantLockHelper;
import net.ymate.platform.core.util.FileUtils;
import org.apache.commons.lang.NullArgumentException;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import java.net.URL;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.ReentrantLock;

/**
 * @author 刘镇 ([email protected]) on 2017/7/31 上午12:39
 * @version 1.0
 */
public abstract class AbstractConfigurationProvider implements IConfigurationProvider {

    private static final Log _LOG = LogFactory.getLog(AbstractConfigurationProvider.class);

    /**
     * 配置对象缓存,对于重复的文件加载会使用缓存,减少文件读写频率
     */
    private static final Map __CONFIG_CACHE_MAPS = new ConcurrentHashMap();

    private static final ReentrantLockHelper __LOCK = new ReentrantLockHelper();

    /**
     * 配置对象
     */
    private IConfigFileParser __configFileParser;

    /**
     * 装载配置文件参数
     */
    private String __cfgFileName;

    @Override
    public void load(String cfgFileName) throws Exception {
        if (StringUtils.isBlank(cfgFileName)) {
            throw new NullArgumentException("cfgFileName");
        }
        __cfgFileName = cfgFileName;
        //
        ReentrantLock _locker = __LOCK.getLocker(__cfgFileName);
        try {
            _locker.lock();
            __doLoad(false);
        } finally {
            __LOCK.unlock(_locker);
        }
    }

    private void __doLoad(boolean update) throws Exception {
        if (update || !__CONFIG_CACHE_MAPS.containsKey(__cfgFileName)) {
            __configFileParser = __buildConfigFileParser(FileUtils.toURL(__cfgFileName)).load(true);
            __CONFIG_CACHE_MAPS.put(__cfgFileName, __configFileParser);
            if (update && _LOG.isInfoEnabled()) {
                _LOG.info("The configuration file \"" + __cfgFileName + "\" is reloaded.");
            }
        } else {
            __configFileParser = __CONFIG_CACHE_MAPS.get(__cfgFileName);
        }
    }

    protected abstract IConfigFileParser __buildConfigFileParser(URL cfgFileName) throws Exception;

    @Override
    public IConfigFileParser getConfigFileParser() {
        return __configFileParser;
    }

    @Override
    public void reload() throws Exception {
        ReentrantLock _locker = __LOCK.getLocker(__cfgFileName);
        try {
            _locker.lock();
            // 加载配置
            __doLoad(true);
        } finally {
            __LOCK.unlock(_locker);
        }
    }

    @Override
    public String getCfgFileName() {
        return __cfgFileName;
    }

    @Override
    public String getString(String key) {
        IConfigFileParser.Property _prop = __configFileParser.getDefaultCategory().getProperty(key);
        return _prop == null ? null : _prop.getContent();
    }

    @Override
    public String getString(String key, String defaultValue) {
        return StringUtils.defaultIfEmpty(getString(key), defaultValue);
    }

    @Override
    public String getString(String category, String key, String defaultValue) {
        IConfigFileParser.Category _category = __configFileParser.getCategory(category);
        if (_category == null) {
            return null;
        }
        IConfigFileParser.Property _prop = _category.getProperty(key);
        return StringUtils.defaultIfEmpty(_prop == null ? null : _prop.getContent(), defaultValue);
    }

    @Override
    public List getList(String key) {
        return getList(IConfigFileParser.DEFAULT_CATEGORY_NAME, key);
    }

    @Override
    public List getList(String category, String key) {
        List _returnValue = new ArrayList();
        IConfigFileParser.Property _prop = __configFileParser.getCategory(category).getProperty(key);
        if (_prop != null) {
            for (IConfigFileParser.Attribute _attr : _prop.getAttributeMap().values()) {
                if (StringUtils.isBlank(_attr.getValue())) {
                    _returnValue.add(_attr.getKey());
                }
            }
        }
        return _returnValue;
    }

    @Override
    public Map getMap(String key) {
        return getMap(IConfigFileParser.DEFAULT_CATEGORY_NAME, key);
    }

    @Override
    public Map getMap(String category, String key) {
        Map _returnValue = new LinkedHashMap();
        IConfigFileParser.Property _prop = __configFileParser.getCategory(category).getProperty(key);
        if (_prop != null) {
            for (IConfigFileParser.Attribute _attr : _prop.getAttributeMap().values()) {
                if (StringUtils.isNotBlank(_attr.getValue())) {
                    _returnValue.put(_attr.getKey(), _attr.getValue());
                }
            }
        }
        return _returnValue;
    }

    @Override
    public String[] getArray(String key) {
        List _resultValue = getList(key);
        return _resultValue.toArray(new String[0]);
    }

    @Override
    public String[] getArray(String key, boolean zeroSize) {
        return getArray(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, zeroSize);
    }

    @Override
    public String[] getArray(String category, String key, boolean zeroSize) {
        List _values = getList(category, key);
        if (_values.isEmpty() && !zeroSize) {
            return null;
        }
        return _values.toArray(new String[0]);
    }

    @Override
    public int getInt(String key) {
        return getInt(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, 0);
    }

    @Override
    public int getInt(String key, int defaultValue) {
        return getInt(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, defaultValue);
    }

    @Override
    public int getInt(String category, String key, int defaultValue) {
        IConfigFileParser.Category _category = __configFileParser.getCategory(category);
        if (_category != null) {
            IConfigFileParser.Property _prop = _category.getProperty(key);
            if (_prop != null) {
                return new BlurObject(_prop.getContent()).toIntValue();
            }
        }
        return defaultValue;
    }

    @Override
    public boolean getBoolean(String key) {
        return getBoolean(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, false);
    }

    @Override
    public boolean getBoolean(String key, boolean defaultValue) {
        return getBoolean(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, defaultValue);
    }

    @Override
    public boolean getBoolean(String category, String key, boolean defaultValue) {
        IConfigFileParser.Category _category = __configFileParser.getCategory(category);
        if (_category != null) {
            IConfigFileParser.Property _prop = _category.getProperty(key);
            if (_prop != null) {
                return new BlurObject(_prop.getContent()).toBooleanValue();
            }
        }
        return defaultValue;
    }

    @Override
    public long getLong(String key) {
        return getLong(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, 0L);
    }

    @Override
    public long getLong(String key, long defaultValue) {
        return getLong(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, defaultValue);
    }

    @Override
    public long getLong(String category, String key, long defaultValue) {
        IConfigFileParser.Category _category = __configFileParser.getCategory(category);
        if (_category != null) {
            IConfigFileParser.Property _prop = _category.getProperty(key);
            if (_prop != null) {
                return new BlurObject(_prop.getContent()).toLongValue();
            }
        }
        return defaultValue;
    }

    @Override
    public float getFloat(String key) {
        return getFloat(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, 0f);
    }

    @Override
    public float getFloat(String key, float defaultValue) {
        return getFloat(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, defaultValue);
    }

    @Override
    public float getFloat(String category, String key, float defaultValue) {
        IConfigFileParser.Category _category = __configFileParser.getCategory(category);
        if (_category != null) {
            IConfigFileParser.Property _prop = _category.getProperty(key);
            if (_prop != null) {
                return new BlurObject(_prop.getContent()).toFloatValue();
            }
        }
        return defaultValue;
    }

    @Override
    public double getDouble(String key) {
        return getDouble(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, 0d);
    }

    @Override
    public double getDouble(String key, double defaultValue) {
        return getDouble(IConfigFileParser.DEFAULT_CATEGORY_NAME, key, defaultValue);
    }

    @Override
    public double getDouble(String category, String key, double defaultValue) {
        IConfigFileParser.Category _category = __configFileParser.getCategory(category);
        if (_category != null) {
            IConfigFileParser.Property _prop = _category.getProperty(key);
            if (_prop != null) {
                return new BlurObject(_prop.getContent()).toDoubleValue();
            }
        }
        return defaultValue;
    }

    @Override
    public Map toMap() {
        return toMap(IConfigFileParser.DEFAULT_CATEGORY_NAME);
    }

    @Override
    public Map toMap(String category) {
        IConfigFileParser.Category _category = __configFileParser.getCategory(category);
        if (_category == null) {
            return Collections.emptyMap();
        }
        Collection _properties = _category.getPropertyMap().values();
        Map _returnValue = new LinkedHashMap(_properties.size());
        for (IConfigFileParser.Property _prop : _properties) {
            _returnValue.put(_prop.getName(), _prop.getContent());
            for (IConfigFileParser.Attribute _attr : _prop.getAttributeMap().values()) {
                _returnValue.put(_prop.getName().concat(".").concat(_attr.getKey()), _attr.getValue());
            }
        }
        return _returnValue;
    }

    @Override
    public List getCategoryNames() {
        return new ArrayList(__configFileParser.getCategories().keySet());
    }

    @Override
    public boolean contains(String key) {
        return __configFileParser.getDefaultCategory().getProperty(key) != null;
    }

    @Override
    public boolean contains(String category, String key) {
        IConfigFileParser.Category _category = __configFileParser.getCategory(category);
        return _category != null && _category.getProperty(key) != null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy