Package io.reactivex.netty.protocol.http.client

Source Code of io.reactivex.netty.protocol.http.client.HttpClientBuilder

/*
* Copyright 2014 Netflix, 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 io.reactivex.netty.protocol.http.client;

import io.netty.bootstrap.Bootstrap;
import io.netty.channel.Channel;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.epoll.EpollSocketChannel;
import io.netty.channel.socket.SocketChannel;
import io.reactivex.netty.RxNetty;
import io.reactivex.netty.channel.ObservableConnection;
import io.reactivex.netty.client.AbstractClientBuilder;
import io.reactivex.netty.client.ClientChannelFactory;
import io.reactivex.netty.client.ClientChannelFactoryImpl;
import io.reactivex.netty.client.ClientConnectionFactory;
import io.reactivex.netty.client.ClientMetricsEvent;
import io.reactivex.netty.client.ConnectionPoolBuilder;
import io.reactivex.netty.client.UnpooledClientConnectionFactory;
import io.reactivex.netty.metrics.MetricEventsListener;
import io.reactivex.netty.metrics.MetricEventsListenerFactory;
import io.reactivex.netty.pipeline.PipelineConfigurators;

/**
* @param <I> The type of the content of request.
* @param <O> The type of the content of response.
*
* @author Nitesh Kant
*/
public class HttpClientBuilder<I, O>
        extends AbstractClientBuilder<HttpClientRequest<I>, HttpClientResponse<O>, HttpClientBuilder<I, O>, HttpClient<I, O>> {


    public HttpClientBuilder(String host, int port) {
        this(host, port, new Bootstrap());
    }

    public HttpClientBuilder(String host, int port, Bootstrap bootstrap) {
        this(bootstrap, host, port,
             new UnpooledClientConnectionFactory<HttpClientResponse<O>, HttpClientRequest<I>>(),
             new ClientChannelFactoryImpl<HttpClientResponse<O>, HttpClientRequest<I>>(bootstrap));
    }

    public HttpClientBuilder(Bootstrap bootstrap, String host, int port,
                             ClientConnectionFactory<HttpClientResponse<O>, HttpClientRequest<I>,
                                     ? extends ObservableConnection<HttpClientResponse<O>, HttpClientRequest<I>>> connectionFactory,
                             ClientChannelFactory<HttpClientResponse<O>, HttpClientRequest<I>> factory) {
        super(bootstrap, host, port, connectionFactory, factory);
        clientConfig = HttpClient.HttpClientConfig.Builder.newDefaultConfig();
        pipelineConfigurator(PipelineConfigurators.<I, O>httpClientConfigurator());
    }

    public HttpClientBuilder(Bootstrap bootstrap, String host, int port,
                             ConnectionPoolBuilder<HttpClientResponse<O>, HttpClientRequest<I>> poolBuilder) {
        super(bootstrap, host, port, poolBuilder);
        clientConfig = HttpClient.HttpClientConfig.Builder.newDefaultConfig();
        pipelineConfigurator(PipelineConfigurators.<I, O>httpClientConfigurator());
    }

    @Override
    protected Class<? extends SocketChannel> defaultSocketChannelClass() {
        if (RxNetty.isUsingNativeTransport()) {
            return EpollSocketChannel.class;
        }
        return super.defaultSocketChannelClass();
    }

    @Override
    protected EventLoopGroup defaultEventloop(Class<? extends Channel> socketChannel) {
        return RxNetty.getRxEventLoopProvider().globalClientEventLoop(true); // get native eventloop if configured.
    }

    @Override
    protected HttpClient<I, O> createClient() {
        if (null == poolBuilder) {
            return new HttpClientImpl<I, O>(getOrCreateName(), serverInfo, bootstrap, pipelineConfigurator,
                                            clientConfig, channelFactory, connectionFactory, eventsSubject);
        }
        return new HttpClientImpl<I, O>(getOrCreateName(), serverInfo, bootstrap, pipelineConfigurator, clientConfig,
                                        poolBuilder, eventsSubject);
    }

    @Override
    protected String generatedNamePrefix() {
        return "HttpClient-";
    }

    @Override
    protected MetricEventsListener<? extends ClientMetricsEvent<?>>
    newMetricsListener(MetricEventsListenerFactory factory, HttpClient<I, O> client) {
        return factory.forHttpClient(client);
    }
}
TOP

Related Classes of io.reactivex.netty.protocol.http.client.HttpClientBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.