Package com.linkedin.r2.transport.http.client

Source Code of com.linkedin.r2.transport.http.client.ChannelPoolLifecycle

/*
   Copyright (c) 2012 LinkedIn Corp.

   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.
*/

/**
* $Id: $
*/

package com.linkedin.r2.transport.http.client;

import com.linkedin.common.callback.Callback;
import com.linkedin.common.stats.LongStats;
import com.linkedin.common.stats.LongTracking;
import org.jboss.netty.bootstrap.ClientBootstrap;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelFutureListener;
import org.jboss.netty.channel.group.ChannelGroup;

import java.net.SocketAddress;
import java.util.concurrent.ScheduledExecutorService;

/**
* @author Steven Ihde
* @version $Revision: $
*/
class ChannelPoolLifecycle implements AsyncPool.Lifecycle<Channel>
{
  private final SocketAddress _remoteAddress;
  private final RateLimiter _rateLimiter;
  private final ClientBootstrap _bootstrap;
  private final ChannelGroup _channelGroup;
  private final LongTracking _createTimeTracker = new LongTracking();

  public ChannelPoolLifecycle(SocketAddress address, ClientBootstrap bootstrap, long getTimeout,
                              ScheduledExecutorService executor, ChannelGroup channelGroup)
  {
    _remoteAddress = address;
    _rateLimiter = new RateLimiter(0, getTimeout / 2, Math.max(10, getTimeout / 32), executor);
    _bootstrap = bootstrap;
    _channelGroup = channelGroup;
  }

  @Override
  public void create(final Callback<Channel> channelCallback)
  {
    _rateLimiter.submit(new Runnable()
    {
      @Override
      public void run()
      {
        final long start = System.currentTimeMillis();
        _bootstrap.connect(_remoteAddress).addListener(new ChannelFutureListener()
        {
          public void operationComplete(ChannelFuture channelFuture) throws Exception
          {
            if (channelFuture.isSuccess())
            {
              synchronized (_createTimeTracker)
              {
                _createTimeTracker.addValue(System.currentTimeMillis() - start);
              }
              Channel c = channelFuture.getChannel();
              _channelGroup.add(c);
              channelCallback.onSuccess(c);
            }
            else
            {
              _rateLimiter.incrementPeriod();
              channelCallback.onError(HttpNettyClient.toException(channelFuture.getCause()));
            }
          }
        });
      }
    });
  }

  @Override
  public boolean validateGet(Channel c)
  {
    return c.isConnected();
  }

  @Override
  public boolean validatePut(Channel c)
  {
    if (c.isConnected())
    {
      // A channel made it through a complete request lifecycle
      _rateLimiter.setPeriod(0);
      return true;
    }
    return false;
  }

  @Override
  public void destroy(final Channel channel, final boolean error, final Callback<Channel> channelCallback)
  {
    if (error)
    {
      _rateLimiter.incrementPeriod();
    }
    if (channel.isOpen())
    {
      channel.close().addListener(new ChannelFutureListener()
      {
        @Override
        public void operationComplete(ChannelFuture channelFuture) throws Exception
        {
          if (channelFuture.isSuccess())
          {
            channelCallback.onSuccess(channelFuture.getChannel());
          }
          else
          {
            channelCallback.onError(HttpNettyClient.toException(channelFuture.getCause()));
          }
        }
      });
    }
    else
    {
      channelCallback.onSuccess(channel);
    }
  }

  @Override
  public PoolStats.LifecycleStats getStats()
  {
    synchronized (_createTimeTracker)
    {
      LongStats stats = _createTimeTracker.getStats();
      _createTimeTracker.reset();
      return new AsyncPoolLifecycleStats(stats.getAverage(),
                                         stats.get50Pct(),
                                         stats.get95Pct(),
                                         stats.get99Pct());
    }
  }
}
TOP

Related Classes of com.linkedin.r2.transport.http.client.ChannelPoolLifecycle

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.