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

com.caucho.v5.http.dispatch.InvocationManagerBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
/*
 * Copyright (c) 1998-2015 Caucho Technology -- all rights reserved
 *
 * This file is part of Baratine(TM)
 *
 * Each copy or derived work must preserve the copyright notice and this
 * notice unmodified.
 *
 * Baratine is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Baratine is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
 * of NON-INFRINGEMENT.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Baratine; if not, write to the
 *
 *   Free Software Foundation, Inc.
 *   59 Temple Place, Suite 330
 *   Boston, MA 02111-1307  USA
 *
 * @author Scott Ferguson
 */

package com.caucho.v5.http.dispatch;

import java.util.Objects;

/**
 * The dispatch server is responsible for building Invocations,
 * specifically for creating the FilterChain for the invocation.
 */
public class InvocationManagerBuilder
{
  private InvocationRouter _router;

  private int _cacheSize = 64 * 1024;
  private int _maxURLLength = 256;
  //sets a limit on URIs Resin serves
  private int _maxURILength = 1024;

  private InvocationDecoder _decoder;
  
  /**
   * Sets router
   */
  public InvocationManagerBuilder router(InvocationRouter router)
  {
    Objects.requireNonNull(router);
    
    _router = router;
    
    return this;
  }

  /**
   * Gets the router
   */
  InvocationRouter getRouter()
  {
    return _router;
  }

  /**
   * Sets the invocation cache size.
   */
  public InvocationManagerBuilder cacheSize(int size)
  {
    _cacheSize = Math.max(size, 16);
    
    return this;
  }
  
  public int getCacheSize()
  {
    return _cacheSize;
  }

  public int getMaxURLLength()
  {
    return _maxURLLength;
  }

  /**
   * Sets the max url length.
   */
  public InvocationManagerBuilder maxURLLength(int length)
  {
    _maxURLLength = length;
    
    return this;
  }

  public int getMaxURILength()
  {
    return _maxURILength;
  }

  /**
   * Sets max uri length
   */
  public InvocationManagerBuilder maxURILength(int maxURILength)
  {
    _maxURILength = maxURILength;
    
    return this;
  }
  
  public InvocationManagerBuilder decoder(InvocationDecoder decoder)
  {
    Objects.requireNonNull(decoder);
    
    _decoder = decoder;
    
    return this;
  }

  public InvocationDecoder getDecoder()
  {
    if (_decoder != null) {
      return _decoder;
    }
    else {
      return new InvocationDecoder<>();
    }
  }
  
  public InvocationManager build()
  {
    return new InvocationManager<>(this);
  }
}