Package com.linkedin.r2.caprep

Source Code of com.linkedin.r2.caprep.CapRepFilter

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

import java.io.IOException;
import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.linkedin.r2.caprep.db.DefaultMessageSerializer;
import com.linkedin.r2.caprep.db.DirectoryDbSink;
import com.linkedin.r2.caprep.db.DirectoryDbSource;
import com.linkedin.r2.filter.Filter;
import com.linkedin.r2.filter.NextFilter;
import com.linkedin.r2.filter.message.rest.RestFilter;
import com.linkedin.r2.filter.message.rpc.RpcFilter;
import com.linkedin.r2.message.RequestContext;
import com.linkedin.r2.message.rest.RestRequest;
import com.linkedin.r2.message.rest.RestResponse;
import com.linkedin.r2.message.rpc.RpcRequest;
import com.linkedin.r2.message.rpc.RpcResponse;

/**
* @author Chris Pettitt
* @version $Revision$
*/
public class CapRepFilter implements RpcFilter, RestFilter, CapRepAdmin
{
  private static final Logger _log = LoggerFactory.getLogger(CapRepFilter.class);

  private static final Filter PASS_THROUGH_FILTER = new PassThroughFilter();

  private final ReplaceableFilter _filter = new ReplaceableFilter(PASS_THROUGH_FILTER);

  @Override
  public void capture(String directory) throws IOException
  {
    _log.debug("Switching to capture mode. Directory: " + directory);
    _filter.setFilter(PASS_THROUGH_FILTER);
    try
    {
      _filter.setFilter(new CaptureFilter(new DirectoryDbSink(directory,
                                                              new DefaultMessageSerializer())));
    }
    catch (IOException e)
    {
      _log.warn("Error switching to capture mode", e);
      throw e;
    }
    catch (RuntimeException e)
    {
      _log.warn("Error switching to capture mode", e);
      throw e;
    }
  }

  @Override
  public void replay(String directory) throws IOException
  {
    _log.debug("Switching to replay mode. Directory: " + directory);
    _filter.setFilter(PASS_THROUGH_FILTER);
    try
    {
      _filter.setFilter(new ReplayFilter(new DirectoryDbSource(directory,
                                                               new DefaultMessageSerializer())));
    }
    catch (IOException e)
    {
      _log.warn("Error switching to replay mode", e);
      throw e;
    }
    catch (RuntimeException e)
    {
      _log.warn("Error switching to capture mode", e);
      throw e;
    }
  }

  @Override
  public void passThrough()
  {
    _log.debug("Switching to pass-through mode.");
    _filter.setFilter(PASS_THROUGH_FILTER);
  }

  @Override
  public String getMode()
  {
    return _filter.getFilter().getClass().getSimpleName();
  }

  @Override
  public void onRestRequest(RestRequest req, RequestContext requestContext,
                            Map<String, String> wireAttrs,
                            NextFilter<RestRequest, RestResponse> nextFilter)
  {
    _filter.onRestRequest(req, requestContext, wireAttrs, nextFilter);
  }

  @Override
  public void onRestResponse(RestResponse res, RequestContext requestContext,
                             Map<String, String> wireAttrs,
                             NextFilter<RestRequest, RestResponse> nextFilter)
  {
    _filter.onRestResponse(res, requestContext, wireAttrs, nextFilter);
  }

  @Override
  public void onRestError(Throwable ex, RequestContext requestContext,
                          Map<String, String> wireAttrs,
                          NextFilter<RestRequest, RestResponse> nextFilter)
  {
    _filter.onRestError(ex, requestContext, wireAttrs, nextFilter);
  }

  @Override
  @Deprecated
  public void onRpcRequest(RpcRequest req, RequestContext requestContext,
                           Map<String, String> wireAttrs,
                           NextFilter<RpcRequest, RpcResponse> nextFilter)
  {
    _filter.onRpcRequest(req, requestContext, wireAttrs, nextFilter);
  }

  @Override
  @Deprecated
  public void onRpcResponse(RpcResponse res, RequestContext requestContext,
                            Map<String, String> wireAttrs,
                            NextFilter<RpcRequest, RpcResponse> nextFilter)
  {
    _filter.onRpcResponse(res, requestContext, wireAttrs, nextFilter);
  }

  @Override
  @Deprecated
  public void onRpcError(Throwable ex, RequestContext requestContext, Map<String, String> wireAttrs,
                         NextFilter<RpcRequest, RpcResponse> nextFilter)
  {
    _filter.onRpcError(ex, requestContext, wireAttrs, nextFilter);
  }
}
TOP

Related Classes of com.linkedin.r2.caprep.CapRepFilter

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.