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

com.alipay.sofa.runtime.spring.parser.ReferenceDefinitionParser Maven / Gradle / Ivy

/*
 * 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 com.alipay.sofa.runtime.spring.parser;

import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.ParserContext;
import org.springframework.util.StringUtils;
import org.w3c.dom.Element;

import com.alipay.sofa.runtime.spring.factory.ReferenceFactoryBean;

/**
 * Reference definition parser.
 *
 * @author xuanbei 18/3/1
 */
public class ReferenceDefinitionParser extends AbstractContractDefinitionParser {
    public static final String JVM_FIRST             = "jvm-first";
    public static final String PROPERTY_JVM_FIRST    = "jvmFirst";
    public static final String PROPERTY_LOAD_BALANCE = "loadBalance";
    public static final String REQUIRED              = "required";

    @Override
    protected void doParseInternal(Element element, ParserContext parserContext,
                                   BeanDefinitionBuilder builder) {
        String jvmFirstString = element.getAttribute(JVM_FIRST);

        if (StringUtils.hasText(jvmFirstString)) {
            if ("true".equalsIgnoreCase(jvmFirstString)) {
                builder.addPropertyValue(PROPERTY_JVM_FIRST, true);
            } else if ("false".equalsIgnoreCase(jvmFirstString)) {
                builder.addPropertyValue(PROPERTY_JVM_FIRST, false);
            } else {
                throw new RuntimeException(
                    "Invalid value of property jvm-first, can only be true or false.");
            }
        }

        String loadBalance = element.getAttribute(PROPERTY_LOAD_BALANCE);
        if (StringUtils.hasText(loadBalance)) {
            builder.addPropertyValue(PROPERTY_LOAD_BALANCE, loadBalance);
        }

        String required = element.getAttribute(REQUIRED);
        if (StringUtils.hasText(required)) {
            if ("true".equalsIgnoreCase(required)) {
                builder.addPropertyValue(REQUIRED, true);
            } else if ("false".equalsIgnoreCase(required)) {
                builder.addPropertyValue(REQUIRED, false);
            } else {
                throw new RuntimeException(
                    "Invalid value of property required, can only be true or false.");
            }
        }

        String interfaceType = element.getAttribute(INTERFACE_ELEMENT);
        builder.getBeanDefinition().setAttribute(FactoryBean.OBJECT_TYPE_ATTRIBUTE,
            getInterfaceClass(interfaceType));
    }

    @Override
    protected Class getBeanClass(Element element) {
        return ReferenceFactoryBean.class;
    }

    @Override
    public String supportTagName() {
        return "reference";
    }

    protected Class getInterfaceClass(String interfaceType) {
        try {
            return Thread.currentThread().getContextClassLoader().loadClass(interfaceType);
        } catch (Throwable t) {
            throw new IllegalArgumentException("Failed to load class for interface: "
                                               + interfaceType, t);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy