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.

52 lines
1.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;
13 years ago
/**
12 years ago
* Dependency is the base class for cache dependency classes.
13 years ago
*
12 years ago
* Child classes should override its [[generateDependencyData()]] for generating
* the actual dependency data.
13 years ago
*
* @property boolean $hasChanged Whether the dependency has changed.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
13 years ago
*/
12 years ago
abstract class Dependency extends \yii\base\Object
13 years ago
{
/**
12 years ago
* @var mixed the dependency data that is saved in cache and later is compared with the
* latest dependency data.
13 years ago
*/
12 years ago
public $data;
13 years ago
/**
* Evaluates the dependency by generating and saving the data related with dependency.
* This method is invoked by cache before writing data into it.
*/
public function evaluateDependency()
{
12 years ago
$this->data = $this->generateDependencyData();
13 years ago
}
/**
* @return boolean whether the dependency has changed.
*/
public function getHasChanged()
{
12 years ago
return $this->generateDependencyData() !== $this->data;
13 years ago
}
/**
* Generates the data needed to determine if dependency has been changed.
12 years ago
* Derived classes should override this method to generate the actual dependency data.
13 years ago
* @return mixed the data needed to determine if dependency has been changed.
*/
12 years ago
abstract protected function generateDependencyData();
13 years ago
}