forked from apache/dubbo
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Polish apache#3355 : Still exists the issues in service discovery.
- Loading branch information
1 parent
8ff4f37
commit ebeb1dd
Showing
15 changed files
with
731 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
142 changes: 142 additions & 0 deletions
142
...a/com/alibaba/dubbo/config/spring/beans/factory/annotation/AnnotationBeanNameBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
/* | ||
* 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.alibaba.dubbo.config.spring.beans.factory.annotation; | ||
|
||
import com.alibaba.dubbo.common.Constants; | ||
import com.alibaba.dubbo.config.annotation.Reference; | ||
import com.alibaba.dubbo.config.annotation.Service; | ||
import com.alibaba.dubbo.registry.Registry; | ||
|
||
import org.springframework.core.env.Environment; | ||
|
||
import static com.alibaba.dubbo.common.Constants.CONSUMERS_CATEGORY; | ||
import static com.alibaba.dubbo.common.Constants.DEFAULT_PROTOCOL; | ||
import static com.alibaba.dubbo.common.Constants.PROVIDERS_CATEGORY; | ||
import static com.alibaba.dubbo.config.spring.util.AnnotationUtils.resolveInterfaceName; | ||
import static org.springframework.util.StringUtils.arrayToCommaDelimitedString; | ||
import static org.springframework.util.StringUtils.hasText; | ||
|
||
/** | ||
* The Bean Name Builder for the annotations {@link Service} and {@link Reference} | ||
* <p> | ||
* The naming rule is consistent with the the implementation {@link Registry} that is based on the service-name aware | ||
* infrastructure, e.g Spring Cloud, Cloud Native and so on. | ||
* <p> | ||
* The pattern of bean name : ${category}:${protocol}:${serviceInterface}:${version}:${group}. | ||
* <p> | ||
* ${version} and ${group} are optional. | ||
* | ||
* @since 2.6.6 | ||
*/ | ||
class AnnotationBeanNameBuilder { | ||
|
||
private static final String SEPARATOR = ":"; | ||
|
||
// Required properties | ||
|
||
private final String category; | ||
|
||
private final String protocol; | ||
|
||
private final String interfaceClassName; | ||
|
||
// Optional properties | ||
|
||
private String version; | ||
|
||
private String group; | ||
|
||
private Environment environment; | ||
|
||
private AnnotationBeanNameBuilder(String category, String protocol, String interfaceClassName) { | ||
this.category = category; | ||
this.protocol = protocol; | ||
this.interfaceClassName = interfaceClassName; | ||
} | ||
|
||
private AnnotationBeanNameBuilder(Service service, Class<?> interfaceClass) { | ||
this(PROVIDERS_CATEGORY, resolveProtocol(service.protocol()), resolveInterfaceName(service, interfaceClass)); | ||
this.group(service.group()); | ||
this.version(service.version()); | ||
} | ||
|
||
private AnnotationBeanNameBuilder(Reference reference, Class<?> interfaceClass) { | ||
this(CONSUMERS_CATEGORY, resolveProtocol(reference.protocol()), resolveInterfaceName(reference, interfaceClass)); | ||
this.group(reference.group()); | ||
this.version(reference.version()); | ||
} | ||
|
||
public static AnnotationBeanNameBuilder create(Service service, Class<?> interfaceClass) { | ||
return new AnnotationBeanNameBuilder(service, interfaceClass); | ||
} | ||
|
||
public static AnnotationBeanNameBuilder create(Reference reference, Class<?> interfaceClass) { | ||
return new AnnotationBeanNameBuilder(reference, interfaceClass); | ||
} | ||
|
||
private static void append(StringBuilder builder, String value) { | ||
if (hasText(value)) { | ||
builder.append(SEPARATOR).append(value); | ||
} | ||
} | ||
|
||
public AnnotationBeanNameBuilder group(String group) { | ||
this.group = group; | ||
return this; | ||
} | ||
|
||
public AnnotationBeanNameBuilder version(String version) { | ||
this.version = version; | ||
return this; | ||
} | ||
|
||
public AnnotationBeanNameBuilder environment(Environment environment) { | ||
this.environment = environment; | ||
return this; | ||
} | ||
|
||
/** | ||
* Resolve the protocol | ||
* | ||
* @param protocols one or more protocols | ||
* @return if <code>protocols</code> == <code>null</code>, it will return | ||
* {@link Constants#DEFAULT_PROTOCOL "dubbo"} as the default protocol | ||
* @see Constants#DEFAULT_PROTOCOL | ||
*/ | ||
private static String resolveProtocol(String... protocols) { | ||
String protocol = arrayToCommaDelimitedString(protocols); | ||
return hasText(protocol) ? protocol : DEFAULT_PROTOCOL; | ||
} | ||
|
||
/** | ||
* Build bean name while resolve the placeholders if possible. | ||
* | ||
* @return pattern : ${category}:${protocol}:${serviceInterface}:${version}:${group} | ||
*/ | ||
public String build() { | ||
// Append the required properties | ||
StringBuilder beanNameBuilder = new StringBuilder(category); | ||
append(beanNameBuilder, protocol); | ||
append(beanNameBuilder, interfaceClassName); | ||
// Append the optional properties | ||
append(beanNameBuilder, version); | ||
append(beanNameBuilder, group); | ||
String beanName = beanNameBuilder.toString(); | ||
// Resolve placeholders | ||
return environment != null ? environment.resolvePlaceholders(beanName) : beanName; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.