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

org.apache.servicecomb.registry.lightweight.model.AbstractPropertiesLoader Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.apache.servicecomb.registry.lightweight.model;

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

import org.apache.commons.lang3.StringUtils;
import org.apache.servicecomb.registry.api.PropertyExtended;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.env.Environment;

/**
 * Loading microservice properties
 */
public abstract class AbstractPropertiesLoader {
  private static final Logger LOGGER = LoggerFactory.getLogger(AbstractPropertiesLoader.class);

  public Map loadProperties(Environment environment) {
    Map propertiesMap = new HashMap<>();
    loadPropertiesFromConfigMap(environment, propertiesMap);
    loadPropertiesFromExtendedClass(environment, propertiesMap);

    return propertiesMap;
  }

  protected abstract Map readProperties(Environment environment);

  protected abstract String readPropertiesExtendedClass(Environment environment);

  private void loadPropertiesFromConfigMap(Environment environment, Map propertiesMap) {
    propertiesMap.putAll(readProperties(environment));
  }

  private void loadPropertiesFromExtendedClass(Environment environment, Map propertiesMap) {
    String extendedPropertyClass = readPropertiesExtendedClass(environment);

    if (StringUtils.isEmpty(extendedPropertyClass)) {
      return;
    }

    try {
      Class classExternalProperty = Class.forName(extendedPropertyClass);
      if (!PropertyExtended.class.isAssignableFrom(classExternalProperty)) {
        String errMsg = String.format(
            "Define propertyExtendedClass %s in yaml, but not implement the interface PropertyExtended.",
            extendedPropertyClass);
        LOGGER.error(errMsg);
        throw new Error(errMsg);
      }

      PropertyExtended instance = (PropertyExtended) classExternalProperty.getDeclaredConstructor().newInstance();
      Map extendedPropertiesMap = instance.getExtendedProperties();
      if (extendedPropertiesMap != null && !extendedPropertiesMap.isEmpty()) {
        propertiesMap.putAll(extendedPropertiesMap);
      }
    } catch (ReflectiveOperationException e) {
      String errMsg = "Fail to create instance of class: " + extendedPropertyClass;
      LOGGER.error(errMsg);
      throw new Error(errMsg, e);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy