103 lines
2.5 KiB
PHP
103 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
* @since DebugKit 1.3
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
|
*/
|
|
|
|
App::uses('DebugKitDebugger', 'DebugKit.Lib');
|
|
|
|
/**
|
|
* Class TimedBehavior
|
|
*
|
|
* @since DebugKit 1.3
|
|
*/
|
|
class TimedBehavior extends ModelBehavior {
|
|
|
|
/**
|
|
* Behavior settings
|
|
*
|
|
* @var array
|
|
*/
|
|
public $settings = array();
|
|
|
|
/**
|
|
* Default setting values
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $_defaults = array();
|
|
|
|
/**
|
|
* Setup the behavior and import required classes.
|
|
*
|
|
* @param \Model|object $Model Model using the behavior
|
|
* @param array $settings Settings to override for model.
|
|
* @return void
|
|
*/
|
|
public function setup(Model $Model, $settings = null) {
|
|
if (is_array($settings)) {
|
|
$this->settings[$Model->alias] = array_merge($this->_defaults, $settings);
|
|
} else {
|
|
$this->settings[$Model->alias] = $this->_defaults;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* beforeFind, starts a timer for a find operation.
|
|
*
|
|
* @param Model $Model
|
|
* @param array $queryData Array of query data (not modified)
|
|
* @return boolean true
|
|
*/
|
|
public function beforeFind(Model $Model, $queryData) {
|
|
DebugKitDebugger::startTimer($Model->alias . '_find', $Model->alias . '->find()');
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* afterFind, stops a timer for a find operation.
|
|
*
|
|
* @param Model $Model
|
|
* @param array $results Array of results
|
|
* @param $primary
|
|
* @return boolean true.
|
|
*/
|
|
public function afterFind(Model $Model, $results, $primary = false) {
|
|
DebugKitDebugger::stopTimer($Model->alias . '_find');
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* beforeSave, starts a time before a save is initiated.
|
|
*
|
|
* @param Model $Model
|
|
* @param array $options
|
|
* @return boolean true
|
|
*/
|
|
public function beforeSave(Model $Model, $options = array()) {
|
|
DebugKitDebugger::startTimer($Model->alias . '_save', $Model->alias . '->save()');
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* afterSave, stop the timer started from a save.
|
|
*
|
|
* @param \Model $Model
|
|
* @param string $created
|
|
* @return boolean Always true
|
|
*/
|
|
public function afterSave(Model $Model, $created, $options = array()) {
|
|
DebugKitDebugger::stopTimer($Model->alias . '_save');
|
|
return true;
|
|
}
|
|
|
|
}
|