2009-08-24 00:27:02 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* 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.doctrine-project.org>.
|
|
|
|
*/
|
|
|
|
|
2009-08-31 20:21:29 +04:00
|
|
|
namespace Doctrine\ORM\Tools\Cli\Tasks;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Tools\Cli\Printers\AbstractPrinter;
|
2009-08-24 00:27:02 +04:00
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
2009-08-31 20:21:29 +04:00
|
|
|
* Base class for CLI Tasks.
|
2009-08-25 08:46:46 +04:00
|
|
|
* Provides basic methods and requires implementation of methods that
|
|
|
|
* each task should implement in order to correctly work.
|
2009-08-31 20:21:29 +04:00
|
|
|
*
|
|
|
|
* The following arguments are common to all tasks:
|
|
|
|
*
|
|
|
|
* Argument: --config=<path>
|
|
|
|
* Description: Specifies the path to the configuration file to use. The configuration file
|
|
|
|
* can bootstrap an EntityManager as well as provide defaults for any cli
|
|
|
|
* arguments.
|
2009-08-25 08:46:46 +04:00
|
|
|
*
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.doctrine-project.org
|
|
|
|
* @since 2.0
|
|
|
|
* @version $Revision$
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
abstract class AbstractTask
|
|
|
|
{
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* @var AbstractPrinter CLI Output Printer
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
protected $_printer;
|
2009-08-25 08:46:46 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array CLI argument options
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
protected $_arguments;
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* @var array Available CLI tasks
|
|
|
|
*/
|
|
|
|
protected $_availableTasks;
|
|
|
|
|
2009-10-30 03:15:53 +03:00
|
|
|
/**
|
|
|
|
* @var EntityManager The EntityManager instance
|
|
|
|
*/
|
2009-08-31 20:21:29 +04:00
|
|
|
protected $_em;
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Defines a CLI Output Printer
|
|
|
|
*
|
|
|
|
* @param AbstractPrinter CLI Output Printer
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
public function setPrinter(AbstractPrinter $printer)
|
|
|
|
{
|
|
|
|
$this->_printer = $printer;
|
|
|
|
}
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Retrieves currently used CLI Output Printer
|
|
|
|
*
|
|
|
|
* @return AbstractPrinter
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
public function getPrinter()
|
|
|
|
{
|
|
|
|
return $this->_printer;
|
|
|
|
}
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Defines the CLI arguments
|
|
|
|
*
|
|
|
|
* @param array CLI argument options
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
public function setArguments($arguments)
|
|
|
|
{
|
|
|
|
$this->_arguments = $arguments;
|
|
|
|
}
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Retrieves current CLI arguments
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
public function getArguments()
|
|
|
|
{
|
|
|
|
return $this->_arguments;
|
|
|
|
}
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Defines the available CLI tasks
|
|
|
|
*
|
|
|
|
* @param array Available CLI tasks
|
|
|
|
*/
|
|
|
|
public function setAvailableTasks($availableTasks)
|
|
|
|
{
|
|
|
|
$this->_availableTasks = $availableTasks;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the available CLI tasks
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAvailableTasks()
|
|
|
|
{
|
|
|
|
return $this->_availableTasks;
|
|
|
|
}
|
|
|
|
|
2009-10-30 03:15:53 +03:00
|
|
|
/**
|
|
|
|
* Defines the EntityManager
|
|
|
|
*
|
|
|
|
* @param EntityManager The EntityManager instance
|
|
|
|
*/
|
|
|
|
public function setEntityManager($em)
|
|
|
|
{
|
|
|
|
$this->_em = $em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves current EntityManager
|
|
|
|
*
|
|
|
|
* @return EntityManager
|
|
|
|
*/
|
|
|
|
public function getEntityManager()
|
|
|
|
{
|
|
|
|
return $this->_em;
|
|
|
|
}
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Expose to CLI Output Printer the extended help of the given task.
|
|
|
|
* This means it should detail all parameters, options and the meaning
|
|
|
|
* of each one.
|
|
|
|
* This method is executed when user types in CLI the following command:
|
|
|
|
*
|
|
|
|
* [bash]
|
|
|
|
* ./doctrine task --help
|
|
|
|
*
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
abstract public function extendedHelp();
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Expose to CLI Output Printer the basic help of the given task.
|
|
|
|
* This means it should only expose the basic task call. It is also
|
|
|
|
* executed when user calls the global help; so this means it should
|
|
|
|
* not pollute the Printer.
|
|
|
|
* Basic help exposure is displayed when task does not pass the validate
|
|
|
|
* (which means when user does not type the required options or when given
|
|
|
|
* options are invalid, ie: invalid option), or when user requests to have
|
|
|
|
* description of all available tasks.
|
|
|
|
* This method is executed when user uses the following commands:
|
|
|
|
*
|
|
|
|
* [bash]
|
|
|
|
* ./doctrine task --invalid-option
|
|
|
|
* ./doctrine --help
|
|
|
|
*
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
abstract public function basicHelp();
|
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Assures the given arguments matches with required/optional ones.
|
|
|
|
* This method should be used to introspect arguments to check for
|
|
|
|
* missing required arguments and also for invalid defined options.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2009-10-30 03:15:53 +03:00
|
|
|
abstract public function validate();
|
2009-08-24 00:27:02 +04:00
|
|
|
|
2009-08-25 08:46:46 +04:00
|
|
|
/**
|
|
|
|
* Safely execution of task.
|
|
|
|
* Each CLI task should implement this as normal flow execution of
|
|
|
|
* what is supposed to do.
|
|
|
|
*/
|
2009-08-24 00:27:02 +04:00
|
|
|
abstract public function run();
|
|
|
|
}
|