Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.9 KiB

13 years ago
<?php
/**
12 years ago
* DbDependency class file.
13 years ago
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 2008 Yii Software LLC
13 years ago
* @license http://www.yiiframework.com/license/
*/
namespace yii\caching;
12 years ago
use yii\base\Exception;
use yii\db\Connection;
use yii\db\Query;
13 years ago
/**
12 years ago
* DbDependency represents a dependency based on the query result of a SQL statement.
13 years ago
*
12 years ago
* If the query result changes, the dependency is considered as changed.
* The query is specified via the [[query]] property.
13 years ago
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
13 years ago
*/
12 years ago
class DbDependency extends Dependency
13 years ago
{
/**
12 years ago
* @var string the ID of the [[Connection|DB connection]] application component. Defaults to 'db'.
13 years ago
*/
12 years ago
public $connectionID = 'db';
13 years ago
/**
12 years ago
* @var Query the SQL query whose result is used to determine if the dependency has been changed.
* Only the first row of the query result will be used.
13 years ago
*/
12 years ago
public $query;
13 years ago
/**
12 years ago
* @var Connection the DB connection instance
13 years ago
*/
private $_db;
/**
* Constructor.
12 years ago
* @param Query $query the SQL query whose result is used to determine if the dependency has been changed.
* @param array $config name-value pairs that will be used to initialize the object properties
13 years ago
*/
public function __construct($query = null, $config = array())
13 years ago
{
12 years ago
$this->query = $query;
parent::__construct($config);
13 years ago
}
/**
* PHP sleep magic method.
* This method ensures that the database instance is set null because it contains resource handles.
* @return array
*/
public function __sleep()
{
12 years ago
$this->_db = null;
13 years ago
return array_keys((array)$this);
}
/**
* Generates the data needed to determine if dependency has been changed.
* This method returns the value of the global state.
* @return mixed the data needed to determine if dependency has been changed.
*/
12 years ago
protected function generateDependencyData()
13 years ago
{
12 years ago
$db = $this->getDbConnection();
$command = $this->query->createCommand($db);
if ($db->enableQueryCache) {
12 years ago
// temporarily disable and re-enable query caching
$db->enableQueryCache = false;
12 years ago
$result = $command->queryRow();
$db->enableQueryCache = true;
12 years ago
} else {
12 years ago
$result = $command->queryRow();
13 years ago
}
12 years ago
return $result;
13 years ago
}
/**
12 years ago
* Returns the DB connection instance used for caching purpose.
* @return Connection the DB connection instance
* @throws Exception if [[connectionID]] does not point to a valid application component.
13 years ago
*/
12 years ago
public function getDbConnection()
13 years ago
{
12 years ago
if ($this->_db === null) {
$db = \Yii::$application->getComponent($this->connectionID);
if ($db instanceof Connection) {
$this->_db = $db;
12 years ago
} else {
12 years ago
throw new Exception("DbDependency.connectionID must refer to the ID of a DB connection application component.");
12 years ago
}
13 years ago
}
12 years ago
return $this->_db;
}
/**
* Sets the DB connection used by the cache component.
* @param Connection $value the DB connection instance
*/
public function setDbConnection($value)
{
$this->_db = $value;
13 years ago
}
}