| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?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;
- }
-
- }
|