]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Irc/extlib/phergie/Phergie/Plugin/Reload.php
Revert "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             return;
61         }
62
63         try {
64             $info = $this->plugins->getPluginInfo($plugin);
65         } catch (Phergie_Plugin_Exception $e) {
66             $source = $this->event->getSource();
67             $nick = $this->event->getNick();
68             $this->doNotice($source, $nick . ': ' . $e->getMessage());
69             return;
70         }
71
72         $class = $info['class'];
73         $contents = file_get_contents($info['file']);
74         $newClass = $class . '_' . sha1($contents);
75
76         if (class_exists($newClass, false)) {
77             echo 'DEBUG(Reload): Class ', $class, ' has not changed since last reload', PHP_EOL;
78             return;
79         }
80
81         $contents = preg_replace(
82             array('/<\?(?:php)?/', '/class\s+' . $class . '/i'),
83             array('', 'class ' . $newClass),
84             $contents
85         );
86         eval($contents);
87
88         $instance = new $newClass;
89         $instance->setName($plugin);
90         $this->plugins
91             ->removePlugin($plugin)
92             ->addPlugin($instance);
93
94         echo 'DEBUG(Reload): Reloaded ', $class, ' to ', $newClass, PHP_EOL;
95     }
96 }