All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.grpc.AbstractChannelBuilder Maven / Gradle / Ivy

There is a newer version: 1.65.1
Show newest version
/*
 * Copyright 2014, 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 io.grpc;

import com.google.common.base.Preconditions;
import com.google.common.util.concurrent.ThreadFactoryBuilder;

import io.grpc.internal.ClientTransportFactory;
import io.grpc.internal.Internal;
import io.grpc.internal.SharedResourceHolder;
import io.grpc.internal.SharedResourceHolder.Resource;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

import javax.annotation.Nullable;

/**
 * The base class for channel builders.
 *
 * @param  The concrete type of this builder.
 */
public abstract class AbstractChannelBuilder> {
  static final Resource DEFAULT_EXECUTOR =
      new Resource() {
        private static final String name = "grpc-default-executor";
        @Override
        public ExecutorService create() {
          return Executors.newCachedThreadPool(new ThreadFactoryBuilder()
              .setNameFormat(name + "-%d").build());
        }

        @Override
        public void close(ExecutorService instance) {
          instance.shutdown();
        }

        @Override
        public String toString() {
          return name;
        }
      };

  @Nullable
  private ExecutorService userExecutor;
  private final List interceptors = new ArrayList();

  @Nullable
  private String userAgent;

  /**
   * Provides a custom executor.
   *
   * 

It's an optional parameter. If the user has not provided an executor when the channel is * built, the builder will use a static cached thread pool. * *

The channel won't take ownership of the given executor. It's caller's responsibility to * shut down the executor when it's desired. */ public final BuilderT executor(ExecutorService executor) { userExecutor = executor; return thisT(); } /** * Adds interceptors that will be called before the channel performs its real work. This is * functionally equivalent to using {@link ClientInterceptors#intercept(Channel, List)}, but while * still having access to the original {@code ChannelImpl}. */ public final BuilderT intercept(List interceptors) { this.interceptors.addAll(interceptors); return thisT(); } /** * Adds interceptors that will be called before the channel performs its real work. This is * functionally equivalent to using {@link ClientInterceptors#intercept(Channel, * ClientInterceptor...)}, but while still having access to the original {@code ChannelImpl}. */ public final BuilderT intercept(ClientInterceptor... interceptors) { return intercept(Arrays.asList(interceptors)); } private BuilderT thisT() { @SuppressWarnings("unchecked") BuilderT thisT = (BuilderT) this; return thisT; } /** * Provides a custom {@code User-Agent} for the application. * *

It's an optional parameter. If provided, the given agent will be prepended by the * grpc {@code User-Agent}. */ @SuppressWarnings("unchecked") public final BuilderT userAgent(String userAgent) { this.userAgent = userAgent; return (BuilderT) this; } /** * Builds a channel using the given parameters. */ public ChannelImpl build() { final ExecutorService executor; final boolean releaseExecutor; if (userExecutor != null) { executor = userExecutor; releaseExecutor = false; } else { executor = SharedResourceHolder.get(DEFAULT_EXECUTOR); releaseExecutor = true; } final ChannelEssentials essentials = buildEssentials(); ChannelImpl channel = new ChannelImpl(essentials.transportFactory, executor, userAgent, interceptors); channel.setTerminationRunnable(new Runnable() { @Override public void run() { if (releaseExecutor) { SharedResourceHolder.release(DEFAULT_EXECUTOR, executor); } if (essentials.terminationRunnable != null) { essentials.terminationRunnable.run(); } } }); return channel; } /** * The essentials required for creating a channel. */ @Internal protected static class ChannelEssentials { final ClientTransportFactory transportFactory; @Nullable final Runnable terminationRunnable; /** * Constructor. * * @param transportFactory the created channel uses this factory to create transports * @param terminationRunnable will be called at the channel termination */ public ChannelEssentials(ClientTransportFactory transportFactory, @Nullable Runnable terminationRunnable) { this.transportFactory = Preconditions.checkNotNull(transportFactory); this.terminationRunnable = terminationRunnable; } } /** * Children of AbstractChannelBuilder should override this method to provide transport specific * information for the channel. This method is mean for Transport implementors and should not be * used by normal users. */ @Internal protected abstract ChannelEssentials buildEssentials(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy