<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace Zend\Cache\Storage\Plugin;

use 
Zend\Cache\Exception;
use 
Zend\Cache\Storage\ClearExpiredInterface;
use 
Zend\Cache\Storage\PostEvent;
use 
Zend\EventManager\EventManagerInterface;

class 
ClearExpiredByFactor extends AbstractPlugin
{
    
/**
     * Handles
     *
     * @var array
     */
    
protected $handles = array();

    
/**
     * Attach
     *
     * @param  EventManagerInterface $events
     * @param  int                   $priority
     * @return ClearExpiredByFactor
     * @throws Exception\LogicException
     */
    
public function attach(EventManagerInterface $events$priority 1)
    {
        
$index spl_object_hash($events);
        if (isset(
$this->handles[$index])) {
            throw new 
Exception\LogicException('Plugin already attached');
        }

        
$handles = array();
        
$this->handles[$index] = & $handles;

        
$callback = array($this'clearExpiredByFactor');
        
$handles[] = $events->attach('setItem.post',  $callback$priority);
        
$handles[] = $events->attach('setItems.post'$callback$priority);
        
$handles[] = $events->attach('addItem.post',  $callback$priority);
        
$handles[] = $events->attach('addItems.post'$callback$priority);

        return 
$this;
    }

    
/**
     * Detach
     *
     * @param  EventManagerInterface $events
     * @return ClearExpiredByFactor
     * @throws Exception\LogicException
     */
    
public function detach(EventManagerInterface $events)
    {
        
$index spl_object_hash($events);
        if (!isset(
$this->handles[$index])) {
            throw new 
Exception\LogicException('Plugin not attached');
        }

        
// detach all handles of this index
        
foreach ($this->handles[$index] as $handle) {
            
$events->detach($handle);
        }

        
// remove all detached handles
        
unset($this->handles[$index]);

        return 
$this;
    }

    
/**
     * Clear expired items by factor after writing new item(s)
     *
     * @param  PostEvent $event
     * @return void
     */
    
public function clearExpiredByFactor(PostEvent $event)
    {
        
$storage $event->getStorage();
        if (!(
$storage instanceof ClearExpiredInterface)) {
            return;
        }

        
$factor $this->getOptions()->getClearingFactor();
        if (
$factor && mt_rand(1$factor) == 1) {
            
$storage->clearExpired();
        }
    }
}