<?php
/**
 * Zend Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 */

/**
 * @namespace
 */
namespace Zend\Mvc\Router\Console;

use 
Traversable;
use 
Zend\Stdlib\RequestInterface as Request;
use 
Zend\Mvc\Router\Exception;
use 
Zend\Console\Request as ConsoleRequest;
use 
Zend\Filter\FilterChain;
use 
Zend\Validator\ValidatorChain;

/**
 * Segment route.
 *
 * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @see        http://guides.rubyonrails.org/routing.html
 */
class Catchall implements RouteInterface
{

    
/**
     * Parts of the route.
     *
     * @var array
     */
    
protected $parts;

    
/**
     * Default values.
     *
     * @var array
     */
    
protected $defaults;

    
/**
     * Parameters' name aliases.
     *
     * @var array
     */
    
protected $aliases;

    
/**
     * List of assembled parameters.
     *
     * @var array
     */
    
protected $assembledParams = array();

    
/**
     * @var ValidatorChain
     */
    
protected $validators;

    
/**
     * @var FilterChain
     */
    
protected $filters;

    
/**
     * Create a new simple console route.
     *
     * @param  array                                    $defaults
     * @return Catchall
     */
    
public function __construct(array $defaults = array())
    {
        
$this->defaults $defaults;
    }

    
/**
     * factory(): defined by Route interface.
     *
     * @see    \Zend\Mvc\Router\RouteInterface::factory()
     * @param  array|Traversable $options
     * @return Simple
     */
    
public static function factory($options = array())
    {
        return new static(
$options['defaults']);
    }

    
/**
     * match(): defined by Route interface.
     *
     * @see     Route::match()
     * @param   Request             $request
     * @return  RouteMatch
     */
    
public function match(Request $request)
    {
        if (!
$request instanceof ConsoleRequest) {
            return 
null;
        }

        return new 
RouteMatch($this->defaults);
    }

    
/**
     * assemble(): Defined by Route interface.
     *
     * @see    \Zend\Mvc\Router\RouteInterface::assemble()
     * @param  array $params
     * @param  array $options
     * @return mixed
     */
    
public function assemble(array $params = array(), array $options = array())
    {
        
$this->assembledParams = array();
    }

    
/**
     * getAssembledParams(): defined by Route interface.
     *
     * @see    RouteInterface::getAssembledParams
     * @return array
     */
    
public function getAssembledParams()
    {
        return 
$this->assembledParams;
    }
}