-
Notifications
You must be signed in to change notification settings - Fork 119
Move CredentialProvider up to ClientSettings #305
Changes from 5 commits
8d748e2
591056d
6341a2c
064288c
a1dcbd4
0f985ba
79efe90
994737d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* 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.common.base.Preconditions; | ||
import io.grpc.CallCredentials; | ||
/** | ||
* Implements the credential insertion for {@link UnaryCallable}. | ||
* | ||
* <p>Package-private for internal use. | ||
*/ | ||
class AuthCallable<RequestT, ResponseT> implements FutureCallable<RequestT, ResponseT> { | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
private final FutureCallable<RequestT, ResponseT> callable; | ||
private final CallCredentials credentials; | ||
|
||
AuthCallable(FutureCallable<RequestT, ResponseT> callable, CallCredentials credentials) { | ||
this.callable = Preconditions.checkNotNull(callable); | ||
this.credentials = 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); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/* | ||
* 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.CallCredentials; | ||
import io.grpc.Channel; | ||
import io.grpc.ManagedChannel; | ||
import io.grpc.auth.MoreCallCredentials; | ||
import java.io.IOException; | ||
import java.util.Collection; | ||
import java.util.concurrent.ScheduledExecutorService; | ||
import javax.annotation.Nullable; | ||
|
||
/** | ||
* Encapsulates data used to initialize a client. | ||
* | ||
* <p>Unlike {@link ClientSettings} which allows users to configure the client, {@code | ||
* ClientInitContext} gathers members to simplify initialization later on. | ||
* | ||
* <p>It is intended to be used in generated code. Most users will not need to use it. | ||
*/ | ||
@BetaApi | ||
@AutoValue | ||
public abstract class ClientInitContext { | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
public abstract Collection<AutoCloseable> getCloseables(); | ||
|
||
public abstract Channel getChannel(); | ||
|
||
public abstract ScheduledExecutorService getExecutor(); | ||
|
||
@Nullable | ||
public abstract CallCredentials getCallCredentials(); | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
|
||
static Builder newBuilder() { | ||
return new AutoValue_ClientInitContext.Builder(); | ||
} | ||
|
||
public static ClientInitContext initialize(ClientSettings settings) throws IOException { | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
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(); | ||
} | ||
}); | ||
} | ||
|
||
CallCredentials callCredentials = null; | ||
Credentials credentials = settings.getCredentialsProvider().getCredentials(); | ||
if (credentials != null) { | ||
callCredentials = MoreCallCredentials.from(credentials); | ||
} | ||
return newBuilder() | ||
.setCloseables(closeables.build()) | ||
.setChannel(channel) | ||
.setExecutor(executor) | ||
.setCallCredentials(callCredentials) | ||
.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 setCallCredentials(CallCredentials value); | ||
|
||
public abstract ClientInitContext build(); | ||
} | ||
} |
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong.