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

com.alibaba.nacos.config.server.configuration.ConfigChangeConfigs Maven / Gradle / Ivy

There is a newer version: 3.0.0-ALPHA.2
Show newest version
/*
 * Copyright 1999-2022 Alibaba Group Holding Ltd.
 *
 * 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 com.alibaba.nacos.config.server.configuration;

import com.alibaba.nacos.common.event.ServerConfigChangeEvent;
import com.alibaba.nacos.common.notify.Event;
import com.alibaba.nacos.common.notify.NotifyCenter;
import com.alibaba.nacos.common.notify.listener.Subscriber;
import com.alibaba.nacos.plugin.config.constants.ConfigChangeConstants;
import com.alibaba.nacos.sys.env.EnvUtil;
import com.alibaba.nacos.sys.utils.PropertiesUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Configuration;

import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

/**
 * config change plugin configs.
 *
 * @author liyunfei
 **/
@Configuration
public class ConfigChangeConfigs extends Subscriber {
    
    private static final Logger LOGGER = LoggerFactory.getLogger(ConfigChangeConfigs.class);
    
    private static final String PREFIX = ConfigChangeConstants.NACOS_CORE_CONFIG_PLUGIN_PREFIX;
    
    private Map configPluginProperties = new HashMap<>();
    
    public ConfigChangeConfigs() {
        NotifyCenter.registerSubscriber(this);
        refreshPluginProperties();
    }
    
    private void refreshPluginProperties() {
        try {
            Map newProperties = new HashMap<>(3);
            Properties properties = PropertiesUtil.getPropertiesWithPrefix(EnvUtil.getEnvironment(), PREFIX);
            if (properties != null) {
                for (String each : properties.stringPropertyNames()) {
                    int typeIndex = each.indexOf('.');
                    String type = each.substring(0, typeIndex);
                    String subKey = each.substring(typeIndex + 1);
                    newProperties.computeIfAbsent(type, key -> new Properties())
                            .setProperty(subKey, properties.getProperty(each));
                }
            }
            configPluginProperties = newProperties;
        } catch (Exception e) {
            LOGGER.warn("[ConfigChangeConfigs]Refresh config plugin properties failed ", e);
        }
    }
    
    public Properties getPluginProperties(String configPluginType) {
        if (!configPluginProperties.containsKey(configPluginType)) {
            LOGGER.warn(
                    "[ConfigChangeConfigs]Can't find config plugin properties for type {}, will use empty properties",
                    configPluginType);
            return new Properties();
        }
        return configPluginProperties.get(configPluginType);
    }
    
    @Override
    public void onEvent(ServerConfigChangeEvent event) {
        refreshPluginProperties();
    }
    
    @Override
    public Class subscribeType() {
        return ServerConfigChangeEvent.class;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy