Skip to content

Commit

Permalink
Added namespace decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Feb 28, 2016
0 parents commit 3150736
Show file tree
Hide file tree
Showing 8 changed files with 451 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/vendor/
composer.lock

22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)

Copyright (c) 2015 Aaron Scherer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

148 changes: 148 additions & 0 deletions NamespacedCachePool.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
<?php

/*
* This file is part of php-cache organization.
*
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/

namespace Cache\Namespaced;

use Cache\Hierarchy\HierarchicalPoolInterface;
use Psr\Cache\CacheItemInterface;
use Psr\Cache\CacheItemPoolInterface;

/**
* Prefix all the stored items with a namespace. Also make sure you can clear all items
* in that namespace.
*
* @author Tobias Nyholm <[email protected]>
*/
class NamespacedCachePool implements CacheItemPoolInterface
{
/**
* @type HierarchicalPoolInterface|CacheItemPoolInterface
*/
private $cachePool;

/**
* @type string
*/
private $namespace;

/**
* @param HierarchicalPoolInterface $cachePool
* @param string $namespace
*/
public function __construct(HierarchicalPoolInterface $cachePool, $namespace)
{
$this->cachePool = $cachePool;
$this->namespace = $namespace;
}

/**
* Add namespace prefix on the key.
*
* @param array $keys
*/
private function prefixValue(&$key)
{
// |namespace|key
$key = HierarchicalPoolInterface::HIERARCHY_SEPARATOR.$this->namespace.HierarchicalPoolInterface::HIERARCHY_SEPARATOR.$key;
}

/**
* @param array $keys
*/
private function prefixValues(array &$keys)
{
foreach ($keys as &$key) {
$this->prefixValue($key);
}
}

/**
* {@inheritdoc}
*/
public function getItem($key)
{
$this->prefixValue($key);

return $this->cachePool->getItem($key);
}

/**
* {@inheritdoc}
*/
public function getItems(array $keys = [])
{
$this->prefixValues($keys);

return $this->cachePool->getItems($keys);
}

/**
* {@inheritdoc}
*/
public function hasItem($key)
{
$this->prefixValue($key);

return $this->cachePool->hasItem($key);
}

/**
* {@inheritdoc}
*/
public function clear()
{
return $this->cachePool->deleteItem(HierarchicalPoolInterface::HIERARCHY_SEPARATOR.$this->namespace);
}

/**
* {@inheritdoc}
*/
public function deleteItem($key)
{
$this->prefixValue($key);

return $this->cachePool->deleteItem($key);
}

/**
* {@inheritdoc}
*/
public function deleteItems(array $keys)
{
$this->prefixValues($keys);

return $this->cachePool->deleteItems($keys);
}

/**
* {@inheritdoc}
*/
public function save(CacheItemInterface $item)
{
return $this->cachePool->save($item);
}

/**
* {@inheritdoc}
*/
public function saveDeferred(CacheItemInterface $item)
{
return $this->cachePool->saveDeferred($item);
}

/**
* {@inheritdoc}
*/
public function commit()
{
return $this->cachePool->commit();
}
}
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Namespaced PSR-6 cache pool
[![Gitter](https://badges.gitter.im/php-cache/cache.svg)](https://gitter.im/php-cache/cache?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![Latest Stable Version](https://poser.pugx.org/cache/namespaced-cache/v/stable)](https://packagist.org/packages/cache/namespaced-cache)
[![Total Downloads](https://poser.pugx.org/cache/namespaced-cache/downloads)](https://packagist.org/packages/cache/namespaced-cache)
[![Monthly Downloads](https://poser.pugx.org/cache/namespaced-cache/d/monthly.png)](https://packagist.org/packages/cache/namespaced-cache)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)

This is a decorator for a PSR56 hierarchical cache. It will allow you do use namespaces.

It is a part of the PHP Cache organisation. To read about features like tagging and hierarchy support please read
the shared documentation at [www.php-cache.com](http://www.php-cache.com).

### Install

```bash
composer require cache/namespaced-cache
```

### Use

```php
$hierarchyPool = new RedisCachePool($client);
$namespacedPool = new NamespacedCachePool($hierarchyPool, 'acme');
```

### Contribute

Contributions are very welcome! Send a pull request to the [main repository](https://github.com/php-cache/cache) or
report any issues you find on the [issue tracker](http://issues.php-cache.com).

19 changes: 19 additions & 0 deletions Tests/HelperInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

/*
* This file is part of php-cache organization.
*
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/

namespace Cache\Namespaced\Tests;

use Cache\Hierarchy\HierarchicalPoolInterface;
use Psr\Cache\CacheItemPoolInterface;

interface HelperInterface extends HierarchicalPoolInterface, CacheItemPoolInterface
{
}
152 changes: 152 additions & 0 deletions Tests/NamespacedCachePoolTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
<?php

/*
* This file is part of php-cache organization.
*
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/

namespace Cache\Namespaced\Tests;

use Cache\Namespaced\NamespacedCachePool;
use Psr\Cache\CacheItemInterface;

/**
* We should not use constants on interfaces in the tests. Tests should break if the constant is changed.
*
* @author Tobias Nyholm <[email protected]>
*/
class NamespacedCachePoolTest extends \PHPUnit_Framework_TestCase
{
/**
* @return \PHPUnit_Framework_MockObject_MockObject
*/
private function getHierarchyCacheStub()
{
return $this->getMock(
HelperInterface::class,
['getItem', 'getItems', 'hasItem', 'clear', 'deleteItem', 'deleteItems', 'save', 'saveDeferred', 'commit']
);
}

public function testGetItem()
{
$namespace = 'ns';
$key = 'key';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('getItem')->with('|'.$namespace.'|'.$key)->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->getItem($key));
}

public function testGetItems()
{
$namespace = 'ns';
$key0 = 'key0';
$key1 = 'key1';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('getItems')->with(['|'.$namespace.'|'.$key0, '|'.$namespace.'|'.$key1])->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->getItems([$key0, $key1]));
}

public function testHasItem()
{
$namespace = 'ns';
$key = 'key';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('hasItem')->with('|'.$namespace.'|'.$key)->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->hasItem($key));
}

public function testClear()
{
$namespace = 'ns';
$key = 'key';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('deleteItem')->with('|'.$namespace)->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->clear($key));
}

public function testDeleteItem()
{
$namespace = 'ns';
$key = 'key';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('deleteItem')->with('|'.$namespace.'|'.$key)->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->deleteItem($key));
}

public function testDeleteItems()
{
$namespace = 'ns';
$key0 = 'key0';
$key1 = 'key1';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('deleteItems')->with(['|'.$namespace.'|'.$key0, '|'.$namespace.'|'.$key1])->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->deleteItems([$key0, $key1]));
}

public function testSave()
{
$item = $this->getMock(CacheItemInterface::class);
$namespace = 'ns';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('save')->with($item)->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->save($item));
}

public function testSaveDeffered()
{
$item = $this->getMock(CacheItemInterface::class);
$namespace = 'ns';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('saveDeferred')->with($item)->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->saveDeferred($item));
}

public function testCommit()
{
$namespace = 'ns';
$returnValue = true;

$stub = $this->getHierarchyCacheStub();
$stub->expects($this->once())->method('commit')->willReturn($returnValue);

$pool = new NamespacedCachePool($stub, $namespace);
$this->assertEquals($returnValue, $pool->commit());
}
}
Loading

0 comments on commit 3150736

Please sign in to comment.