2007-10-10 01:39:48 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id: Task.php 2761 2007-10-07 23:42:29Z zYne $
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.phpdoctrine.com>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2007-10-20 06:30:15 +04:00
|
|
|
* Doctrine_Task
|
|
|
|
*
|
|
|
|
* Abstract class used for writing Doctrine Tasks
|
2007-10-10 01:39:48 +04:00
|
|
|
*
|
|
|
|
* @package Doctrine
|
2007-10-16 01:18:13 +04:00
|
|
|
* @subpackage Task
|
2007-10-10 01:39:48 +04:00
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision: 2761 $
|
|
|
|
* @author Jonathan H. Wage <jwage@mac.com>
|
|
|
|
*/
|
2007-10-16 01:18:13 +04:00
|
|
|
abstract class Doctrine_Task
|
2007-10-10 02:15:14 +04:00
|
|
|
{
|
2007-10-20 10:12:20 +04:00
|
|
|
public $dispatcher = null,
|
|
|
|
$taskName = null,
|
2007-10-10 06:31:11 +04:00
|
|
|
$description = null,
|
2007-10-10 07:45:02 +04:00
|
|
|
$arguments = array(),
|
2007-10-10 06:31:11 +04:00
|
|
|
$requiredArguments = array(),
|
|
|
|
$optionalArguments = array();
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* __construct
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* Since this is an abstract classes that extend this must follow a patter of Doctrine_Task_{TASK_NAME}
|
|
|
|
* This is what determines the task name for executing it.
|
|
|
|
*
|
2007-10-16 01:18:13 +04:00
|
|
|
* @return void
|
|
|
|
*/
|
2007-10-20 10:12:20 +04:00
|
|
|
public function __construct($dispatcher = null)
|
2007-10-16 01:18:13 +04:00
|
|
|
{
|
2007-10-20 10:12:20 +04:00
|
|
|
$this->dispatcher = $dispatcher;
|
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
$this->taskName = str_replace('_', '-', Doctrine::tableize(str_replace('Doctrine_Task_', '', get_class($this))));
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-20 21:20:56 +04:00
|
|
|
/**
|
|
|
|
* notify
|
|
|
|
*
|
|
|
|
* @param string $notification
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function notify()
|
2007-10-20 10:12:20 +04:00
|
|
|
{
|
2007-10-20 21:20:56 +04:00
|
|
|
if (is_object($this->dispatcher) && method_exists($this->dispatcher, 'notify')) {
|
|
|
|
$args = func_get_args();
|
|
|
|
|
|
|
|
return call_user_func_array(array($this->dispatcher, 'notify'), $args);
|
2007-10-20 10:12:20 +04:00
|
|
|
} else {
|
2007-10-20 21:20:56 +04:00
|
|
|
return $notification;
|
2007-10-20 10:12:20 +04:00
|
|
|
}
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-20 21:20:56 +04:00
|
|
|
/**
|
|
|
|
* ask
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function ask()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
|
|
|
|
call_user_func_array(array($this, 'notify'), $args);
|
|
|
|
|
|
|
|
$answer = strtolower(trim(fgets(STDIN)));
|
|
|
|
|
|
|
|
return $answer;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* execute
|
|
|
|
*
|
|
|
|
* Override with each task class
|
|
|
|
*
|
|
|
|
* @return void
|
2007-10-20 06:30:15 +04:00
|
|
|
* @abstract
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-10 07:45:02 +04:00
|
|
|
abstract function execute();
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* validate
|
|
|
|
*
|
|
|
|
* Validates that all required fields are present
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* @return bool true
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
|
|
|
public function validate()
|
2007-10-10 06:31:11 +04:00
|
|
|
{
|
|
|
|
$requiredArguments = $this->getRequiredArguments();
|
|
|
|
|
|
|
|
foreach ($requiredArguments as $arg) {
|
2007-10-21 10:23:59 +04:00
|
|
|
if ( ! isset($this->arguments[$arg])) {
|
2007-10-20 10:12:20 +04:00
|
|
|
return false;
|
2007-10-10 06:31:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* addArgument
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param string $value
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function addArgument($name, $value)
|
|
|
|
{
|
|
|
|
$this->arguments[$name] = $value;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* getArgument
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param string $default
|
2007-10-20 06:30:15 +04:00
|
|
|
* @return mixed
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-15 17:47:24 +04:00
|
|
|
public function getArgument($name, $default = null)
|
2007-10-10 07:45:02 +04:00
|
|
|
{
|
2007-10-20 02:11:45 +04:00
|
|
|
if (isset($this->arguments[$name]) && $this->arguments[$name] !== null) {
|
2007-10-15 17:47:24 +04:00
|
|
|
return $this->arguments[$name];
|
2007-10-16 03:03:08 +04:00
|
|
|
} else {
|
2007-10-15 17:47:24 +04:00
|
|
|
return $default;
|
|
|
|
}
|
2007-10-10 07:45:02 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* getArguments
|
|
|
|
*
|
2007-10-21 10:23:59 +04:00
|
|
|
* @return array $arguments
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-10 07:45:02 +04:00
|
|
|
public function getArguments()
|
2007-10-10 06:31:11 +04:00
|
|
|
{
|
2007-10-10 07:45:02 +04:00
|
|
|
return $this->arguments;
|
2007-10-10 06:31:11 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* setArguments
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* @param array $args
|
2007-10-16 01:18:13 +04:00
|
|
|
* @return void
|
|
|
|
*/
|
2007-10-20 06:30:15 +04:00
|
|
|
public function setArguments(array $args)
|
2007-10-16 01:18:13 +04:00
|
|
|
{
|
|
|
|
$this->arguments = $args;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* getTaskName
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* @return string $taskName
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-10 06:31:11 +04:00
|
|
|
public function getTaskName()
|
|
|
|
{
|
|
|
|
return $this->taskName;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* getDescription
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* @return string $description
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-10 06:31:11 +04:00
|
|
|
public function getDescription()
|
|
|
|
{
|
|
|
|
return $this->description;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* getRequiredArguments
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* @return array $requiredArguments
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-10 06:31:11 +04:00
|
|
|
public function getRequiredArguments()
|
|
|
|
{
|
2007-10-10 07:45:02 +04:00
|
|
|
return array_keys($this->requiredArguments);
|
2007-10-10 06:31:11 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* getOptionalArguments
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* @return array $optionalArguments
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-10 06:31:11 +04:00
|
|
|
public function getOptionalArguments()
|
2007-10-10 07:45:02 +04:00
|
|
|
{
|
|
|
|
return array_keys($this->optionalArguments);
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* getRequiredArgumentsDescriptions
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* @return array $requiredArgumentsDescriptions
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-10 07:45:02 +04:00
|
|
|
public function getRequiredArgumentsDescriptions()
|
|
|
|
{
|
|
|
|
return $this->requiredArguments;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-10-16 01:18:13 +04:00
|
|
|
/**
|
|
|
|
* getOptionalArgumentsDescriptions
|
|
|
|
*
|
2007-10-20 06:30:15 +04:00
|
|
|
* @return array $optionalArgumentsDescriptions
|
2007-10-16 01:18:13 +04:00
|
|
|
*/
|
2007-10-10 07:45:02 +04:00
|
|
|
public function getOptionalArgumentsDescriptions()
|
2007-10-10 06:31:11 +04:00
|
|
|
{
|
|
|
|
return $this->optionalArguments;
|
|
|
|
}
|
2007-10-10 02:15:14 +04:00
|
|
|
}
|