Profiler.php 3.32 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?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.phpdoctrine.com>.
 */
21
Doctrine::autoload('Doctrine_Overloadable');
22
/**
23
 * Doctrine_Db_Profiler
24 25 26 27 28
 *
 * @author      Konsta Vesterinen
 * @license     LGPL
 * @package     Doctrine
 */
zYne's avatar
zYne committed
29
class Doctrine_Db_Profiler implements Doctrine_Overloadable {
30
    /**
zYne's avatar
zYne committed
31
     * @param array $listeners      an array containing all availible listeners
32
     */
zYne's avatar
zYne committed
33 34 35 36 37 38 39 40
    private $listeners  = array('query',
                                'prepare',
                                'commit',
                                'rollback',
                                'begintransaction',
                                'exec',
                                'execute',
                                );
41
    /**
zYne's avatar
zYne committed
42
     * @param array $events         an array containing all listened events
43
     */
zYne's avatar
zYne committed
44
    private $events     = array();
45
    /**
zYne's avatar
zYne committed
46 47 48
     * method overloader
     * this method is used for invoking different listeners, for the full
     * list of availible listeners, see Doctrine_Db_EventListener
49
     *
zYne's avatar
zYne committed
50 51 52 53
     * @param string $m     the name of the method
     * @param array $a      method arguments
     * @see Doctrine_Db_EventListener
     * @return void
54
     */
zYne's avatar
zYne committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
    public function __call($m, $a) {
        // first argument should be an instance of Doctrine_Db_Event
        if( ! ($a[0] instanceof Doctrine_Db_Event))
            throw new Doctrine_Db_Profiler_Exception("Couldn't listen event. Event should be an instance of Doctrine_Db_Event.");

        // event methods should start with 'on'
        if(substr($m, 0, 2) !== 'on')
            throw new Doctrine_Db_Profiler_Exception("Couldn't invoke listener $m.");
            
        if(substr($m, 2, 3) === 'Pre' && in_array(strtolower(substr($m, 3)), $this->listeners)) {
            // pre-event listener found
            $a[0]->start();
        } else {
            // after-event listener found
            $a[0]->end();
70
        }
zYne's avatar
zYne committed
71 72
        
        $this->events[] = $a[0];
73 74
    }

75

76
    /**
zYne's avatar
zYne committed
77 78
     * Get the Doctrine_Db_Event object for the last query that was run, regardless if it has
     * ended or not. If the event has not ended, it's end time will be Null.
79
     *
zYne's avatar
zYne committed
80
     * @return Doctrine_Db_Event
81
     */
zYne's avatar
zYne committed
82 83
    public function lastEvent() {
        if (empty($this->events)) {
84 85 86
            return false;
        }

zYne's avatar
zYne committed
87 88
        end($this->events);
        return current($this->events);
89
    }
90
}