This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move CredentialProvider up to ClientSettings (#305)
Updates googleapis/google-cloud-java#2034. This commit should resolve the first 3 bullets in the linked issue. Major changes are: - ClientContext is added to pull together channel, executor, and credentials, which are often needed together. This change will also simplify future work if more ClientSettings are added.
- Loading branch information
Showing
20 changed files
with
530 additions
and
140 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
gax-grpc/src/main/java/com/google/api/gax/grpc/AuthCallable.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,59 @@ | ||
/* | ||
* Copyright 2017, Google Inc. All rights reserved. | ||
* | ||
* 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 Inc. 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.grpc; | ||
|
||
import com.google.api.core.ApiFuture; | ||
import com.google.auth.Credentials; | ||
import com.google.common.base.Preconditions; | ||
import io.grpc.CallCredentials; | ||
import io.grpc.auth.MoreCallCredentials; | ||
|
||
/** | ||
* Implements the credential insertion for {@link UnaryCallable}. | ||
* | ||
* <p>Package-private for internal use. | ||
*/ | ||
class AuthCallable<RequestT, ResponseT> implements FutureCallable<RequestT, ResponseT> { | ||
private final FutureCallable<RequestT, ResponseT> callable; | ||
private final CallCredentials credentials; | ||
|
||
AuthCallable(FutureCallable<RequestT, ResponseT> callable, Credentials credentials) { | ||
this.callable = Preconditions.checkNotNull(callable); | ||
this.credentials = MoreCallCredentials.from(Preconditions.checkNotNull(credentials)); | ||
} | ||
|
||
@Override | ||
public ApiFuture<ResponseT> futureCall(RequestT request, CallContext context) { | ||
if (context.getCallOptions().getCredentials() == null) { | ||
context = context.withCallOptions(context.getCallOptions().withCallCredentials(credentials)); | ||
} | ||
return callable.futureCall(request, context); | ||
} | ||
} |
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
116 changes: 116 additions & 0 deletions
116
gax-grpc/src/main/java/com/google/api/gax/grpc/ClientContext.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,116 @@ | ||
/* | ||
* Copyright 2017, Google Inc. All rights reserved. | ||
* | ||
* 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 Inc. 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.grpc; | ||
|
||
import com.google.api.core.BetaApi; | ||
import com.google.auth.Credentials; | ||
import com.google.auto.value.AutoValue; | ||
import com.google.common.collect.ImmutableList; | ||
import io.grpc.Channel; | ||
import io.grpc.ManagedChannel; | ||
import java.io.IOException; | ||
import java.util.Collection; | ||
import java.util.concurrent.ScheduledExecutorService; | ||
import javax.annotation.Nullable; | ||
|
||
/** | ||
* Encapsulates client state, including channel, executor, and credentials. | ||
* | ||
* <p>Unlike {@link ClientSettings} which allows users to configure the client, {@code | ||
* ClientContext} is intended to be used in generated code. Most users will not need to use it. | ||
*/ | ||
@BetaApi | ||
@AutoValue | ||
public abstract class ClientContext { | ||
public abstract Collection<AutoCloseable> getCloseables(); | ||
|
||
public abstract Channel getChannel(); | ||
|
||
public abstract ScheduledExecutorService getExecutor(); | ||
|
||
@Nullable | ||
public abstract Credentials getCredentials(); | ||
|
||
static Builder newBuilder() { | ||
return new AutoValue_ClientContext.Builder(); | ||
} | ||
|
||
public static ClientContext create(ClientSettings settings) throws IOException { | ||
ImmutableList.Builder<AutoCloseable> closeables = ImmutableList.builder(); | ||
|
||
ExecutorProvider executorProvider = settings.getExecutorProvider(); | ||
final ScheduledExecutorService executor = executorProvider.getExecutor(); | ||
if (executorProvider.shouldAutoClose()) { | ||
closeables.add( | ||
new AutoCloseable() { | ||
@Override | ||
public void close() { | ||
executor.shutdown(); | ||
} | ||
}); | ||
} | ||
|
||
final ManagedChannel channel; | ||
ChannelProvider channelProvider = settings.getChannelProvider(); | ||
if (channelProvider.needsExecutor()) { | ||
channel = channelProvider.getChannel(executor); | ||
} else { | ||
channel = channelProvider.getChannel(); | ||
} | ||
if (channelProvider.shouldAutoClose()) { | ||
closeables.add( | ||
new AutoCloseable() { | ||
@Override | ||
public void close() { | ||
channel.shutdown(); | ||
} | ||
}); | ||
} | ||
return newBuilder() | ||
.setCloseables(closeables.build()) | ||
.setChannel(channel) | ||
.setExecutor(executor) | ||
.setCredentials(settings.getCredentialsProvider().getCredentials()) | ||
.build(); | ||
} | ||
|
||
@AutoValue.Builder | ||
abstract static class Builder { | ||
public abstract Builder setCloseables(Collection<AutoCloseable> value); | ||
|
||
public abstract Builder setChannel(Channel value); | ||
|
||
public abstract Builder setExecutor(ScheduledExecutorService value); | ||
|
||
public abstract Builder setCredentials(Credentials value); | ||
|
||
public abstract ClientContext build(); | ||
} | ||
} |
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.