Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ClientCore] Introduce Union type #43778

Merged
merged 26 commits into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bcaa09b
introduce Union type
mssfang Jan 13, 2025
8d9c0a4
fix CI
mssfang Jan 13, 2025
a80757b
Address most of feedback
mssfang Jan 14, 2025
3e2227a
null check, validate type in ==
mssfang Jan 15, 2025
87890c4
types must be of type Class or ParameterizedType
mssfang Jan 16, 2025
845f48f
style format after recompile
mssfang Jan 16, 2025
2c281d1
consume Map as type
mssfang Jan 16, 2025
dbf38ab
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-java in…
mssfang Jan 17, 2025
4793ae5
import ClientLogger
mssfang Jan 17, 2025
ec4a09a
remove PI likely value and add null check
mssfang Jan 17, 2025
70bc387
suppress false positive BC_UNCONFIRMED_CAST_OF_RETURN_VALUE
mssfang Jan 17, 2025
85cc159
Added nested union test
mssfang Jan 22, 2025
6439464
Added nested union sample
mssfang Jan 23, 2025
10a0a23
enhance javadoc for method Union.ofTypes()
mssfang Jan 23, 2025
2d0dc3c
Hide GenericParameterizedType, Unmodifiable types, etc
mssfang Jan 24, 2025
5967e8f
replace switch statement by if-else for java 8+ comparable
mssfang Jan 27, 2025
c0d796a
build for javadoc code snippet
mssfang Jan 27, 2025
4151248
remove more switch pattern matching usage from the code to support ja…
mssfang Jan 27, 2025
51e55ad
replace Set/List/Map .of() method by Java 8 compatible
mssfang Jan 27, 2025
14cb466
revert non-union related changes
mssfang Jan 27, 2025
b1d2cf8
correct format error in CI
mssfang Jan 27, 2025
6dd4ba6
add a new private constructor for a new instance of Union constructor.
mssfang Jan 27, 2025
6197e9d
setValue's value is nullable
mssfang Jan 27, 2025
26ddb82
merge the main and resolve conflict
mssfang Jan 28, 2025
8eaffce
revert setValue to be mutable
mssfang Jan 31, 2025
ab41fa2
show more tryConsume() method usage in sample
mssfang Jan 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sdk/clientcore/core/checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<suppress files="io.clientcore.core.implementation.util.ImplUtils.java" checks="MissingJavadocTypeCheck" />
<suppress files="io.clientcore.core.implementation.instrumentation.Slf4jLoggerShim.java" checks="com.azure.tools.checkstyle.checks.EnforceFinalFieldsCheck" />
<suppress files="io.clientcore.core.implementation.util.EnvironmentConfiguration.java" checks="com.azure.tools.checkstyle.checks.EnforceFinalFieldsCheck" />
<suppress files="io.clientcore.core.util.Union.java" checks="com.azure.tools.checkstyle.checks.EnforceFinalFieldsCheck" />
<suppress files="io.clientcore.core.implementation.ReflectionSerializable.java" checks="com.azure.tools.checkstyle.checks.JavadocThrowsChecks" />
<suppress files="io.clientcore.core.implementation.http.serializer.HttpResponseBodyDecoder.java" checks="com.azure.tools.checkstyle.checks.JavadocThrowsChecks" />
<suppress files="io.clientcore.core.http.client.DefaultHttpClientBuilder.java" checks="com.azure.tools.checkstyle.checks.ServiceClientBuilderCheck" />
Expand Down
6 changes: 6 additions & 0 deletions sdk/clientcore/core/spotbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
<Class name="io.clientcore.core.implementation.util.XmlSerializer" />
<Class name="io.clientcore.core.serialization.xml.XmlReader" />
<Class name="io.clientcore.core.shared.HttpClientTests" />
<Class name="io.clientcore.core.implementation.GenericParameterizedType" />
<Class name="io.clientcore.core.util.SharedExecutorService" />
<Class name="io.clientcore.core.util.Union" />
<Class name="io.clientcore.core.util.binarydata.FileBinaryData" />
<Class name="io.clientcore.core.util.binarydata.InputStreamBinaryData" />
<Class name="io.clientcore.core.util.binarydata.ListByteBufferBinaryData" />
Expand Down Expand Up @@ -280,6 +282,10 @@
<Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
<Class name="io.clientcore.core.http.client.implementation.InputStreamTimeoutResponseSubscriber" />
</Match>
<Match>
<Bug pattern="RV_RETURN_VALUE_IGNORED_INFERRED" />
<Class name="io.clientcore.core.util.UnionTests" />
</Match>
<Match>
<Bug pattern="RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT" />
<Class name="io.clientcore.core.serialization.xml.XmlReaderCodesnippetsTests" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package io.clientcore.core.implementation;

import io.clientcore.core.instrumentation.logging.ClientLogger;

import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.Arrays;
import java.util.Objects;
import java.util.stream.Collectors;

/**
* A {@link ParameterizedType} implementation that allows for reference type arguments.
*/
public final class GenericParameterizedType implements ParameterizedType {
private static final ClientLogger LOGGER = new ClientLogger(GenericParameterizedType.class);

private final Class<?> raw;
private final Type[] args;
private String cachedToString;

/**
* Creates a new instance of {@link GenericParameterizedType}.
*
* @param raw The raw type.
* @param args The type arguments.
*/
public GenericParameterizedType(Class<?> raw, Type... args) {
this.raw = raw;

if (args == null) {
throw LOGGER.logThrowableAsError(new IllegalArgumentException("args cannot be null"));
}

Type[] argsCopy = new Type[args.length];
for (int i = 0; i < args.length; i++) {
if (args[i] == null) {
throw LOGGER.logThrowableAsError(
new IllegalArgumentException("args cannot contain null: null value in index " + i));
}
argsCopy[i] = args[i];
}
this.args = argsCopy;
}

@Override
public Type[] getActualTypeArguments() {
return args;
}

@Override
public Type getRawType() {
return raw;
}

@Override
public Type getOwnerType() {
return null;
}

@Override
public String toString() {
if (cachedToString == null) {
cachedToString = raw.getTypeName() + "<"
+ Arrays.stream(args).map(Type::getTypeName).collect(Collectors.joining(", ")) + ">";
}
return cachedToString;
}

@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GenericParameterizedType that = (GenericParameterizedType) o;
return Objects.equals(raw, that.raw) && Objects.deepEquals(args, that.args);
}

@Override
public int hashCode() {
return Objects.hash(raw, Arrays.hashCode(args));
}
}
Loading