-
Notifications
You must be signed in to change notification settings - Fork 56
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
refactor: Add EndpointContext #2275
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
769a209
chore: Add EndpointContext
lqiu96 b12beeb
chore: Update constants scope to private
lqiu96 7bc8951
chore: Rename tests
lqiu96 c67a679
chore: Fix lint issues
lqiu96 2e1962f
chore: Clean up EndpointContext
lqiu96 2ebd48b
chore: Add uses for the EndpointContext in ClientContext
lqiu96 6f9928d
chore: Replace ClientContext getEndpoint() logic
lqiu96 201d786
chore: Remove stubsettings code
lqiu96 de2e309
chore: Clean up EndpointContext test case
lqiu96 d7f48f7
chore: Fix lint issues
lqiu96 ce5255a
chore: Add variables for test params
lqiu96 a6eeda8
feat: Remove TransportChannelProvider logic
lqiu96 588fd53
feat: Add javadocs for clientSettingsEndpoint
lqiu96 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
128 changes: 128 additions & 0 deletions
128
gax-java/gax/src/main/java/com/google/api/gax/rpc/EndpointContext.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,128 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are | ||
* met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following disclaimer | ||
* in the documentation and/or other materials provided with the | ||
* distribution. | ||
* * Neither the name of Google LLC nor the names of its | ||
* contributors may be used to endorse or promote products derived from | ||
* this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
package com.google.api.gax.rpc; | ||
|
||
import com.google.api.core.InternalApi; | ||
import com.google.api.gax.rpc.mtls.MtlsProvider; | ||
import com.google.auto.value.AutoValue; | ||
import com.google.common.annotations.VisibleForTesting; | ||
import java.io.IOException; | ||
import javax.annotation.Nullable; | ||
|
||
/** Contains the fields required to resolve the endpoint */ | ||
@InternalApi | ||
@AutoValue | ||
public abstract class EndpointContext { | ||
/** | ||
* ClientSettingsEndpoint is the endpoint value set via the ClientSettings/StubSettings classes. | ||
*/ | ||
@Nullable | ||
public abstract String clientSettingsEndpoint(); | ||
|
||
@Nullable | ||
public abstract String mtlsEndpoint(); | ||
|
||
public abstract boolean switchToMtlsEndpointAllowed(); | ||
|
||
@Nullable | ||
public abstract MtlsProvider mtlsProvider(); | ||
|
||
public abstract Builder toBuilder(); | ||
|
||
private String resolvedEndpoint; | ||
|
||
public static Builder newBuilder() { | ||
return new AutoValue_EndpointContext.Builder().setSwitchToMtlsEndpointAllowed(false); | ||
} | ||
|
||
@VisibleForTesting | ||
void determineEndpoint() throws IOException { | ||
MtlsProvider mtlsProvider = mtlsProvider() == null ? new MtlsProvider() : mtlsProvider(); | ||
resolvedEndpoint = | ||
mtlsEndpointResolver( | ||
clientSettingsEndpoint(), mtlsEndpoint(), switchToMtlsEndpointAllowed(), mtlsProvider); | ||
} | ||
|
||
// This takes in parameters because determineEndpoint()'s logic will be updated | ||
// to pass custom values in. | ||
// Follows https://google.aip.dev/auth/4114 for resolving the endpoint | ||
@VisibleForTesting | ||
String mtlsEndpointResolver( | ||
String endpoint, | ||
String mtlsEndpoint, | ||
boolean switchToMtlsEndpointAllowed, | ||
MtlsProvider mtlsProvider) | ||
throws IOException { | ||
if (switchToMtlsEndpointAllowed && mtlsProvider != null) { | ||
switch (mtlsProvider.getMtlsEndpointUsagePolicy()) { | ||
case ALWAYS: | ||
return mtlsEndpoint; | ||
case NEVER: | ||
return endpoint; | ||
default: | ||
if (mtlsProvider.useMtlsClientCertificate() && mtlsProvider.getKeyStore() != null) { | ||
return mtlsEndpoint; | ||
} | ||
return endpoint; | ||
} | ||
} | ||
return endpoint; | ||
} | ||
|
||
/** | ||
* The resolved endpoint is the computed endpoint after accounting for the custom endpoints and | ||
* mTLS configurations. | ||
*/ | ||
public String getResolvedEndpoint() { | ||
return resolvedEndpoint; | ||
} | ||
lqiu96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
@AutoValue.Builder | ||
public abstract static class Builder { | ||
/** | ||
* ClientSettingsEndpoint is the endpoint value set via the ClientSettings/StubSettings classes. | ||
*/ | ||
public abstract Builder setClientSettingsEndpoint(String clientSettingsEndpoint); | ||
lqiu96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
public abstract Builder setMtlsEndpoint(String mtlsEndpoint); | ||
|
||
public abstract Builder setSwitchToMtlsEndpointAllowed(boolean switchToMtlsEndpointAllowed); | ||
|
||
public abstract Builder setMtlsProvider(MtlsProvider mtlsProvider); | ||
|
||
abstract EndpointContext autoBuild(); | ||
|
||
public EndpointContext build() throws IOException { | ||
EndpointContext endpointContext = autoBuild(); | ||
endpointContext.determineEndpoint(); | ||
return endpointContext; | ||
} | ||
} | ||
} |
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this can be null as it is coming from StubSettings.endpoint?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe for most non-modified GAPICs, this is the case. It should be set via the {Service}StubSettings like: https://github.com/googleapis/google-cloud-java/blob/6227504db7c511b379cad2d67960d63f36eed39b/java-grafeas/src/main/java/io/grafeas/v1/stub/GrafeasStubSettings.java#L635 with a non-null value (as the generator will fail if it can't find it).
I'm accounting for the Grafeas edge case: https://github.com/googleapis/google-cloud-java/blob/6227504db7c511b379cad2d67960d63f36eed39b/java-grafeas/src/main/java/io/grafeas/v1/stub/GrafeasStubSettings.java#L403-L405 which has post-processed changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, this is good for now then. Let's keep this in mind and come back for it later if we have time. I'm not sure why we removed the default endpoint for grafeas, and how does grafeas create channels without a default endpoint. But ideally this should not be nullable, otherwise gRPC channel creation could fail.