. /** * @package moodlecore * @subpackage backup-plan * @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Abstract class defining the basis for one execution (backup/restore) plan * * TODO: Finish phpdocs */ abstract class base_plan implements checksumable, executable { protected $name; // One simple name for identification purposes protected $settings; // One array of (accumulated from tasks) base_setting elements protected $tasks; // One array of base_task elements protected $results; // One array of results received from tasks protected $built; // Flag to know if one plan has been built /** * Constructor - instantiates one object of this class */ public function __construct($name) { $this->name = $name; $this->settings = array(); $this->tasks = array(); $this->results = array(); $this->built = false; } public function get_name() { return $this->name; } public function add_task($task) { if (! $task instanceof base_task) { throw new base_plan_exception('wrong_base_task_specified'); } $this->tasks[] = $task; // link the task with the plan $task->set_plan($this); // Append task settings to plan array, if not present, for comodity foreach ($task->get_settings() as $key => $setting) { if (!in_array($setting, $this->settings)) { $this->settings[] = $setting; } } } public function get_tasks() { return $this->tasks; } public function add_result($result) { $this->results = array_merge($this->results, $result); } public function get_results() { return $this->results; } public function get_settings() { return $this->settings; } /** * return one setting by name, useful to request root/course settings * that are, by definition, unique by name. Throws exception if multiple * are found * * TODO: Change this to string indexed array for quicker lookup. Not critical */ public function get_setting($name) { $result = null; foreach ($this->settings as $key => $setting) { if ($setting->get_name() == $name) { if ($result != null) { throw new base_plan_exception('multiple_settings_by_name_found', $name); } else { $result = $setting; } } } if (!$result) { throw new base_plan_exception('setting_by_name_not_found', $name); } return $result; } /** * Wrapper over @get_setting() that returns if the requested setting exists or no */ public function setting_exists($name) { try { $this->get_setting($name); return true; } catch (base_plan_exception $e) { // Nothing to do } return false; } /** * Function responsible for building the tasks of any plan * with their corresponding settings * (must set the $built property to true) */ public abstract function build(); public function is_checksum_correct($checksum) { return $this->calculate_checksum() === $checksum; } public function calculate_checksum() { // Let's do it using name and tasks (settings are part of tasks) return md5($this->name . '-' . backup_general_helper::array_checksum_recursive($this->tasks)); } /** * Function responsible for executing the tasks of any plan */ public function execute() { if (!$this->built) { throw new base_plan_exception('base_plan_not_built'); } foreach ($this->tasks as $task) { $task->build(); $task->execute(); } } /** * Destroy all circular references. It helps PHP 5.2 a lot! */ public function destroy() { // Before reseting anything, call destroy recursively foreach ($this->tasks as $task) { $task->destroy(); } foreach ($this->settings as $setting) { $setting->destroy(); } // Everything has been destroyed recursively, now we can reset safely $this->tasks = array(); $this->settings = array(); } } /* * Exception class used by all the @base_plan stuff */ class base_plan_exception extends moodle_exception { public function __construct($errorcode, $a=NULL, $debuginfo=null) { parent::__construct($errorcode, '', '', $a, $debuginfo); } }