com.proofpoint.http.client.HttpClientModule Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2010 Proofpoint, Inc.
*
* Licensed 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.proofpoint.http.client;
import com.google.inject.Binder;
import com.google.inject.Injector;
import com.google.inject.Key;
import com.google.inject.Module;
import com.google.inject.Scopes;
import com.google.inject.TypeLiteral;
import com.proofpoint.http.client.jetty.JettyHttpClient;
import com.proofpoint.http.client.jetty.JettyHttpClientOptions;
import com.proofpoint.log.Logger;
import jakarta.annotation.PreDestroy;
import jakarta.inject.Inject;
import jakarta.inject.Provider;
import java.lang.annotation.Annotation;
import java.util.HashSet;
import java.util.Set;
import static com.google.common.base.Preconditions.checkState;
import static com.google.inject.multibindings.Multibinder.newSetBinder;
import static com.proofpoint.configuration.ConfigBinder.bindConfig;
import static com.proofpoint.reporting.ReportBinder.reportBinder;
import static java.util.Objects.requireNonNull;
import static org.weakref.jmx.guice.ExportBinder.newExporter;
class HttpClientModule
implements Module
{
private static final Logger log = Logger.get(HttpClientModule.class);
private final String name;
private final Class extends Annotation> annotation;
private final Binder rootBinder;
private final boolean isPrivate;
protected Binder binder;
HttpClientModule(String name, Class extends Annotation> annotation, Binder rootBinder, boolean isPrivate)
{
this.name = requireNonNull(name, "name is null");
this.annotation = requireNonNull(annotation, "annotation is null");
this.rootBinder = rootBinder;
this.isPrivate = isPrivate;
}
@Override
public final void configure(Binder binder)
{
this.binder = requireNonNull(binder, "binder is null");
// bind the configuration
bindConfig(binder).bind(HttpClientConfig.class).annotatedWith(annotation).prefixedWith(name);
// bind the client
this.binder.bind(HttpClient.class).annotatedWith(annotation).toProvider(new HttpClientProvider(name, annotation)).in(Scopes.SINGLETON);
// kick off the binding for the filter set
newSetBinder(binder, HttpRequestFilter.class, annotation);
// export stats
if (!isPrivate) {
reportBinder(binder).export(HttpClient.class).annotatedWith(annotation);
newExporter(binder).export(HttpClient.class).annotatedWith(annotation).withGeneratedName();
}
}
void addAlias(Class extends Annotation> alias)
{
binder.bind(HttpClient.class).annotatedWith(alias).to(Key.get(HttpClient.class, annotation));
}
private static class HttpClientProvider
implements Provider
{
private final String name;
private final Class extends Annotation> annotation;
private Injector injector;
private JettyHttpClient client;
private HttpClientProvider(String name, Class extends Annotation> annotation)
{
this.name = requireNonNull(name, "name is null");
this.annotation = requireNonNull(annotation, "annotation is null");
}
@Inject
public void setInjector(Injector injector)
{
this.injector = injector;
}
@Override
public HttpClient get()
{
checkState(client == null, "client already created");
HttpClientConfig config = injector.getInstance(Key.get(HttpClientConfig.class, annotation));
Set filters = new HashSet<>(injector.getInstance(Key.get(new TypeLiteral>() {}, annotation)));
HttpClientBindOptions httpClientBindOptions = injector.getInstance(Key.get(HttpClientBindOptions.class, annotation));
if (httpClientBindOptions.isWithTracing()) {
filters.add(new TraceTokenRequestFilter());
}
JettyHttpClientOptions.Builder optionsBuilder = JettyHttpClientOptions.builder();
if (!httpClientBindOptions.isWithCertificateVerification()) {
optionsBuilder.setEnableCertificateVerification(false);
}
client = new JettyHttpClient(name, config, optionsBuilder.build(), filters);
injector = null;
return client;
}
@PreDestroy
public void destroy()
{
client.close();
}
}
}