]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Irc/extlib/phergie/Phergie/Plugin/Reload.php
Merged in Phergie changes
[quix0rs-gnu-social.git] / plugins / Irc / extlib / phergie / Phergie / Plugin / Reload.php
1 <?php
2 /**
3  * Phergie
4  *
5  * PHP version 5
6  *
7  * LICENSE
8  *
9  * This source file is subject to the new BSD license that is bundled
10  * with this package in the file LICENSE.
11  * It is also available through the world-wide-web at this URL:
12  * http://phergie.org/license
13  *
14  * @category  Phergie
15  * @package   Phergie_Plugin_Reload
16  * @author    Phergie Development Team <team@phergie.org>
17  * @copyright 2008-2010 Phergie Development Team (http://phergie.org)
18  * @license   http://phergie.org/license New BSD License
19  * @link      http://pear.phergie.org/package/Phergie_Plugin_Reload
20  */
21
22 /**
23  * Facilitates reloading of individual plugins for development purposes.
24  * Note that, because existing class definitions cannot be removed from
25  * memory, increased memory usage is an expected result of using this plugin.
26  *
27  * @category Phergie
28  * @package  Phergie_Plugin_Reload
29  * @author   Phergie Development Team <team@phergie.org>
30  * @license  http://phergie.org/license New BSD License
31  * @link     http://pear.phergie.org/package/Phergie_Plugin_Reload
32  * @uses     Phergie_Plugin_Command pear.phergie.org
33  */
34 class Phergie_Plugin_Reload extends Phergie_Plugin_Abstract
35 {
36     /**
37      * Checks for dependencies.
38      *
39      * @return void
40      */
41     public function onLoad()
42     {
43         $this->getPluginHandler()->getPlugin('Command');
44     }
45
46     /**
47      * Reloads a specified plugin.
48      *
49      * @param string $plugin Short name of the plugin to reload
50      *
51      * @return void
52      */
53     public function onCommandReload($plugin)
54     {
55         $plugin = ucfirst($plugin);
56
57         if (!$this->plugins->hasPlugin($plugin)) {
58             echo 'DEBUG(Reload): ' . ucfirst($plugin) . ' is not loaded yet, loading', PHP_EOL;
59             $this->plugins->getPlugin($plugin);
60             $this->plugins->command->populateMethodCache();
61             return;
62         }
63
64         try {
65             $info = $this->plugins->getPluginInfo($plugin);
66         } catch (Phergie_Plugin_Exception $e) {
67             $source = $this->event->getSource();
68             $nick = $this->event->getNick();
69             $this->doNotice($source, $nick . ': ' . $e->getMessage());
70             return;
71         }
72
73         $class = $info['class'];
74         $contents = file_get_contents($info['file']);
75         $newClass = $class . '_' . sha1($contents);
76
77         if (class_exists($newClass, false)) {
78             echo 'DEBUG(Reload): Class ', $class, ' has not changed since last reload', PHP_EOL;
79             return;
80         }
81
82         $contents = preg_replace(
83             array('/^<\?(?:php)?/', '/class\s+' . $class . '/i'),
84             array('', 'class ' . $newClass),
85             $contents
86         );
87         eval($contents);
88
89         $instance = new $newClass;
90         $instance->setName($plugin);
91         $instance->setEvent($this->event);
92         $this->plugins
93             ->removePlugin($plugin)
94             ->addPlugin($instance);
95
96         $this->plugins->command->populateMethodCache();
97         if ($this->plugins->hasPlugin('Help')) {
98             $this->plugins->help->populateRegistry();
99         }
100
101         echo 'DEBUG(Reload): Reloaded ', $class, ' to ', $newClass, PHP_EOL;
102     }
103 }