Add a filesystem map service

This commit is contained in:
ornicar
2011-06-18 11:49:55 -07:00
parent 6db8231e09
commit 3a68f9080b
4 changed files with 67 additions and 2 deletions

41
FilesystemMap.php Normal file
View File

@@ -0,0 +1,41 @@
<?php
namespace Knplabs\Bundle\GaufretteBundle;
/**
* Holds references to all declared filesystems
* and allows to access them through their name
*/
class FilesystemMap
{
/**
* Map of filesystems indexed by their name
*
* @var array
*/
private $map;
/**
* Instanciates a new filesystem map
*
* @param array $map
*/
public function __construct(array $map)
{
$this->map = $map;
}
/**
* @param string $name name of a filesystem
* @throw \InvalidArgumentException if the filesystem does not exist
* @return Filesystem
*/
public function get($name)
{
if (!isset($this->map[$name])) {
throw new \InvalidArgumentException(sprintf('No filesystem register for name "%s"', $name));
}
return $this->map[$name];
}
}