Profiler.php 3.51 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 29 30 31 32
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @package     Doctrine
 * @category    Object Relational Mapping
 * @link        www.phpdoctrine.com
 * @since       1.0
 * @version     $Revision$
 */
zYne's avatar
zYne committed
33
class Doctrine_Db_Profiler implements Doctrine_Overloadable {
34
    /**
zYne's avatar
zYne committed
35
     * @param array $listeners      an array containing all availible listeners
36
     */
zYne's avatar
zYne committed
37 38 39 40 41 42 43 44
    private $listeners  = array('query',
                                'prepare',
                                'commit',
                                'rollback',
                                'begintransaction',
                                'exec',
                                'execute',
                                );
45
    /**
zYne's avatar
zYne committed
46
     * @param array $events         an array containing all listened events
47
     */
zYne's avatar
zYne committed
48
    private $events     = array();
49
    /**
zYne's avatar
zYne committed
50 51 52
     * method overloader
     * this method is used for invoking different listeners, for the full
     * list of availible listeners, see Doctrine_Db_EventListener
53
     *
zYne's avatar
zYne committed
54 55 56 57
     * @param string $m     the name of the method
     * @param array $a      method arguments
     * @see Doctrine_Db_EventListener
     * @return void
58
     */
zYne's avatar
zYne committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    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();
74
        }
zYne's avatar
zYne committed
75 76
        
        $this->events[] = $a[0];
77 78
    }

79

80
    /**
zYne's avatar
zYne committed
81 82
     * 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.
83
     *
zYne's avatar
zYne committed
84
     * @return Doctrine_Db_Event
85
     */
zYne's avatar
zYne committed
86 87
    public function lastEvent() {
        if (empty($this->events)) {
88 89 90
            return false;
        }

zYne's avatar
zYne committed
91 92
        end($this->events);
        return current($this->events);
93
    }
94
}