CC-2166: Packaging Improvements. Moved the Zend app into airtime_mvc. It is now installed to /var/www/airtime. Storage is now set to /srv/airtime/stor. Utils are now installed to /usr/lib/airtime/utils/. Added install/airtime-dircheck.php as a simple test to see if everything is install/uninstalled correctly.
This commit is contained in:
parent
514777e8d2
commit
b11cbd8159
4546 changed files with 138 additions and 51 deletions
40
airtime_mvc/library/Zend/Db/Profiler/Exception.php
Normal file
40
airtime_mvc/library/Zend/Db/Profiler/Exception.php
Normal file
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This source file is subject to the new BSD license that is bundled
|
||||
* with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://framework.zend.com/license/new-bsd
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@zend.com so we can send you a copy immediately.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Db
|
||||
* @subpackage Profiler
|
||||
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Exception.php 20096 2010-01-06 02:05:09Z bkarwin $
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* @see Zend_Db_Exception
|
||||
*/
|
||||
require_once 'Zend/Db/Exception.php';
|
||||
|
||||
|
||||
/**
|
||||
* @category Zend
|
||||
* @package Zend_Db
|
||||
* @subpackage Profiler
|
||||
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
class Zend_Db_Profiler_Exception extends Zend_Db_Exception
|
||||
{
|
||||
}
|
||||
|
161
airtime_mvc/library/Zend/Db/Profiler/Firebug.php
Normal file
161
airtime_mvc/library/Zend/Db/Profiler/Firebug.php
Normal file
|
@ -0,0 +1,161 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This source file is subject to the new BSD license that is bundled
|
||||
* with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://framework.zend.com/license/new-bsd
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@zend.com so we can send you a copy immediately.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Db
|
||||
* @subpackage Profiler
|
||||
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Firebug.php 20096 2010-01-06 02:05:09Z bkarwin $
|
||||
*/
|
||||
|
||||
/** Zend_Db_Profiler */
|
||||
require_once 'Zend/Db/Profiler.php';
|
||||
|
||||
/** Zend_Wildfire_Plugin_FirePhp */
|
||||
require_once 'Zend/Wildfire/Plugin/FirePhp.php';
|
||||
|
||||
/** Zend_Wildfire_Plugin_FirePhp_TableMessage */
|
||||
require_once 'Zend/Wildfire/Plugin/FirePhp/TableMessage.php';
|
||||
|
||||
/**
|
||||
* Writes DB events as log messages to the Firebug Console via FirePHP.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Db
|
||||
* @subpackage Profiler
|
||||
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
class Zend_Db_Profiler_Firebug extends Zend_Db_Profiler
|
||||
{
|
||||
/**
|
||||
* The original label for this profiler.
|
||||
* @var string
|
||||
*/
|
||||
protected $_label = null;
|
||||
|
||||
/**
|
||||
* The label template for this profiler
|
||||
* @var string
|
||||
*/
|
||||
protected $_label_template = '%label% (%totalCount% @ %totalDuration% sec)';
|
||||
|
||||
/**
|
||||
* The message envelope holding the profiling summary
|
||||
* @var Zend_Wildfire_Plugin_FirePhp_TableMessage
|
||||
*/
|
||||
protected $_message = null;
|
||||
|
||||
/**
|
||||
* The total time taken for all profiled queries.
|
||||
* @var float
|
||||
*/
|
||||
protected $_totalElapsedTime = 0;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param string $label OPTIONAL Label for the profiling info.
|
||||
* @return void
|
||||
*/
|
||||
public function __construct($label = null)
|
||||
{
|
||||
$this->_label = $label;
|
||||
if(!$this->_label) {
|
||||
$this->_label = 'Zend_Db_Profiler_Firebug';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable or disable the profiler. If $enable is false, the profiler
|
||||
* is disabled and will not log any queries sent to it.
|
||||
*
|
||||
* @param boolean $enable
|
||||
* @return Zend_Db_Profiler Provides a fluent interface
|
||||
*/
|
||||
public function setEnabled($enable)
|
||||
{
|
||||
parent::setEnabled($enable);
|
||||
|
||||
if ($this->getEnabled()) {
|
||||
|
||||
if (!$this->_message) {
|
||||
$this->_message = new Zend_Wildfire_Plugin_FirePhp_TableMessage($this->_label);
|
||||
$this->_message->setBuffered(true);
|
||||
$this->_message->setHeader(array('Time','Event','Parameters'));
|
||||
$this->_message->setDestroy(true);
|
||||
$this->_message->setOption('includeLineNumbers', false);
|
||||
Zend_Wildfire_Plugin_FirePhp::getInstance()->send($this->_message);
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
if ($this->_message) {
|
||||
$this->_message->setDestroy(true);
|
||||
$this->_message = null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Intercept the query end and log the profiling data.
|
||||
*
|
||||
* @param integer $queryId
|
||||
* @throws Zend_Db_Profiler_Exception
|
||||
* @return void
|
||||
*/
|
||||
public function queryEnd($queryId)
|
||||
{
|
||||
$state = parent::queryEnd($queryId);
|
||||
|
||||
if (!$this->getEnabled() || $state == self::IGNORED) {
|
||||
return;
|
||||
}
|
||||
|
||||
$this->_message->setDestroy(false);
|
||||
|
||||
$profile = $this->getQueryProfile($queryId);
|
||||
|
||||
$this->_totalElapsedTime += $profile->getElapsedSecs();
|
||||
|
||||
$this->_message->addRow(array((string)round($profile->getElapsedSecs(),5),
|
||||
$profile->getQuery(),
|
||||
($params=$profile->getQueryParams())?$params:null));
|
||||
|
||||
$this->updateMessageLabel();
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the label of the message holding the profile info.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function updateMessageLabel()
|
||||
{
|
||||
if (!$this->_message) {
|
||||
return;
|
||||
}
|
||||
$this->_message->setLabel(str_replace(array('%label%',
|
||||
'%totalCount%',
|
||||
'%totalDuration%'),
|
||||
array($this->_label,
|
||||
$this->getTotalNumQueries(),
|
||||
(string)round($this->_totalElapsedTime,5)),
|
||||
$this->_label_template));
|
||||
}
|
||||
}
|
199
airtime_mvc/library/Zend/Db/Profiler/Query.php
Normal file
199
airtime_mvc/library/Zend/Db/Profiler/Query.php
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This source file is subject to the new BSD license that is bundled
|
||||
* with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://framework.zend.com/license/new-bsd
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@zend.com so we can send you a copy immediately.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Db
|
||||
* @subpackage Profiler
|
||||
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Query.php 20096 2010-01-06 02:05:09Z bkarwin $
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* @category Zend
|
||||
* @package Zend_Db
|
||||
* @subpackage Profiler
|
||||
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
class Zend_Db_Profiler_Query
|
||||
{
|
||||
|
||||
/**
|
||||
* SQL query string or user comment, set by $query argument in constructor.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $_query = '';
|
||||
|
||||
/**
|
||||
* One of the Zend_Db_Profiler constants for query type, set by $queryType argument in constructor.
|
||||
*
|
||||
* @var integer
|
||||
*/
|
||||
protected $_queryType = 0;
|
||||
|
||||
/**
|
||||
* Unix timestamp with microseconds when instantiated.
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
protected $_startedMicrotime = null;
|
||||
|
||||
/**
|
||||
* Unix timestamp with microseconds when self::queryEnd() was called.
|
||||
*
|
||||
* @var integer
|
||||
*/
|
||||
protected $_endedMicrotime = null;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $_boundParams = array();
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class constructor. A query is about to be started, save the query text ($query) and its
|
||||
* type (one of the Zend_Db_Profiler::* constants).
|
||||
*
|
||||
* @param string $query
|
||||
* @param integer $queryType
|
||||
* @return void
|
||||
*/
|
||||
public function __construct($query, $queryType)
|
||||
{
|
||||
$this->_query = $query;
|
||||
$this->_queryType = $queryType;
|
||||
// by default, and for backward-compatibility, start the click ticking
|
||||
$this->start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Clone handler for the query object.
|
||||
* @return void
|
||||
*/
|
||||
public function __clone()
|
||||
{
|
||||
$this->_boundParams = array();
|
||||
$this->_endedMicrotime = null;
|
||||
$this->start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Starts the elapsed time click ticking.
|
||||
* This can be called subsequent to object creation,
|
||||
* to restart the clock. For instance, this is useful
|
||||
* right before executing a prepared query.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function start()
|
||||
{
|
||||
$this->_startedMicrotime = microtime(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Ends the query and records the time so that the elapsed time can be determined later.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function end()
|
||||
{
|
||||
$this->_endedMicrotime = microtime(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if and only if the query has ended.
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function hasEnded()
|
||||
{
|
||||
return $this->_endedMicrotime !== null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the original SQL text of the query.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getQuery()
|
||||
{
|
||||
return $this->_query;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the type of this query (one of the Zend_Db_Profiler::* constants)
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
public function getQueryType()
|
||||
{
|
||||
return $this->_queryType;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $param
|
||||
* @param mixed $variable
|
||||
* @return void
|
||||
*/
|
||||
public function bindParam($param, $variable)
|
||||
{
|
||||
$this->_boundParams[$param] = $variable;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $param
|
||||
* @return void
|
||||
*/
|
||||
public function bindParams(array $params)
|
||||
{
|
||||
if (array_key_exists(0, $params)) {
|
||||
array_unshift($params, null);
|
||||
unset($params[0]);
|
||||
}
|
||||
foreach ($params as $param => $value) {
|
||||
$this->bindParam($param, $value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function getQueryParams()
|
||||
{
|
||||
return $this->_boundParams;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the elapsed time (in seconds) that the query ran.
|
||||
* If the query has not yet ended, false is returned.
|
||||
*
|
||||
* @return float|false
|
||||
*/
|
||||
public function getElapsedSecs()
|
||||
{
|
||||
if (null === $this->_endedMicrotime) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $this->_endedMicrotime - $this->_startedMicrotime;
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue