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.
		
		
		
		
		
			
		
			
				
					
					
						
							97 lines
						
					
					
						
							2.5 KiB
						
					
					
				
			
		
		
	
	
							97 lines
						
					
					
						
							2.5 KiB
						
					
					
				| <?php | |
| /** | |
|  * ChainedDependency class file. | |
|  * | |
|  * @link http://www.yiiframework.com/ | |
|  * @copyright Copyright © 2008-2012 Yii Software LLC | |
|  * @license http://www.yiiframework.com/license/ | |
|  */ | |
|  | |
| namespace yii\caching; | |
|  | |
| /** | |
|  * ChainedDependency represents a list of cache dependencies. | |
|  * | |
|  * If any of the dependencies reports a dependency change, ChainedDependency | |
|  * will return true for the checking. | |
|  * | |
|  * To add dependencies to ChainedDependency, use {@link getDependencies Dependencies} | |
|  * which gives a {@link CTypedList} instance and can be used like an array | |
|  * (see {@link CList} for more details}). | |
|  * | |
|  * @property CTypedList $dependencies List of dependency objects. | |
|  * @property boolean $hasChanged Whether the dependency is changed or not. | |
|  * | |
|  * @author Qiang Xue <qiang.xue@gmail.com> | |
|  * @since 2.0 | |
|  */ | |
| class ChainedDependency extends Dependency | |
| { | |
| 	private $_dependencies=null; | |
|  | |
| 	/** | |
| 	 * Constructor. | |
| 	 * @param array $dependencies the dependencies to be added to this chain. | |
| 	 * @since 1.1.4 | |
| 	 */ | |
| 	public function __construct($dependencies=array()) | |
| 	{ | |
| 		if(!empty($dependencies)) | |
| 			$this->setDependencies($dependencies); | |
| 	} | |
|  | |
| 	/** | |
| 	 * @return CTypedList list of dependency objects | |
| 	 */ | |
| 	public function getDependencies() | |
| 	{ | |
| 		if($this->_dependencies===null) | |
| 			$this->_dependencies=new CTypedList('ICacheDependency'); | |
| 		return $this->_dependencies; | |
| 	} | |
|  | |
| 	/** | |
| 	 * @param array $values list of dependency objects or configurations to be added to this chain. | |
| 	 * If a depedency is specified as a configuration, it must be an array that can be recognized | |
| 	 * by {@link YiiBase::createComponent}. | |
| 	 */ | |
| 	public function setDependencies($values) | |
| 	{ | |
| 		$dependencies=$this->getDependencies(); | |
| 		foreach($values as $value) | |
| 		{ | |
| 			if(is_array($value)) | |
| 				$value=Yii::createComponent($value); | |
| 			$dependencies->add($value); | |
| 		} | |
| 	} | |
|  | |
| 	/** | |
| 	 * Evaluates the dependency by generating and saving the data related with dependency. | |
| 	 */ | |
| 	public function evaluateDependency() | |
| 	{ | |
| 		if($this->_dependencies!==null) | |
| 		{ | |
| 			foreach($this->_dependencies as $dependency) | |
| 				$dependency->evaluateDependency(); | |
| 		} | |
| 	} | |
|  | |
| 	/** | |
| 	 * Performs the actual dependency checking. | |
| 	 * This method returns true if any of the dependency objects | |
| 	 * reports a dependency change. | |
| 	 * @return boolean whether the dependency is changed or not. | |
| 	 */ | |
| 	public function getHasChanged() | |
| 	{ | |
| 		if($this->_dependencies!==null) | |
| 		{ | |
| 			foreach($this->_dependencies as $dependency) | |
| 				if($dependency->getHasChanged()) | |
| 					return true; | |
| 		} | |
| 		return false; | |
| 	} | |
| }
 | |
| 
 |