Yii2 Bootstrap 3
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.

77 lines
2.4 KiB

13 years ago
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
13 years ago
* @license http://www.yiiframework.com/license/
*/
namespace yii\caching;
12 years ago
use Yii;
use yii\base\InvalidConfigException;
use yii\db\Connection;
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.
12 years ago
* The query is specified via the [[sql]] 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
{
/**
* @var string the application component ID of the DB connection.
13 years ago
*/
public $db = 'db';
13 years ago
/**
12 years ago
* @var string 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 $sql;
13 years ago
/**
12 years ago
* @var array the parameters (name => value) to be bound to the SQL statement specified by [[sql]].
13 years ago
*/
public $params;
13 years ago
/**
* Constructor.
* @param string $sql the SQL query whose result is used to determine if the dependency has been changed.
12 years ago
* @param array $params the parameters (name => value) to be bound to the SQL statement specified by [[sql]].
* @param array $config name-value pairs that will be used to initialize the object properties
13 years ago
*/
public function __construct($sql, $params = array(), $config = array())
13 years ago
{
$this->sql = $sql;
$this->params = $params;
parent::__construct($config);
13 years ago
}
/**
* Generates the data needed to determine if dependency has been changed.
* This method returns the value of the global state.
* @param Cache $cache the cache component that is currently evaluating this dependency
13 years ago
* @return mixed the data needed to determine if dependency has been changed.
* @throws InvalidConfigException if [[db]] is not a valid application component ID
13 years ago
*/
protected function generateDependencyData($cache)
13 years ago
{
$db = Yii::$app->getComponent($this->db);
if (!$db instanceof Connection) {
throw new InvalidConfigException("DbDependency::db must be the application component ID of a DB connection.");
}
if ($db->enableQueryCache) {
12 years ago
// temporarily disable and re-enable query caching
$db->enableQueryCache = false;
12 years ago
$result = $db->createCommand($this->sql, $this->params)->queryRow();
$db->enableQueryCache = true;
12 years ago
} else {
12 years ago
$result = $db->createCommand($this->sql, $this->params)->queryRow();
13 years ago
}
12 years ago
return $result;
13 years ago
}
}