1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
<?php namespace amekusa\phio; main::required;
class FilePool {
protected static $instance;
protected $pool = array ();
public static function instance() {
if (!isset(static::$instance)) static::$instance = new static();
return static::$instance;
}
protected function __construct() {
}
public function get($Path, $ForceNew = false) {
if ($ForceNew || !isset($this->pool[$Path]) || !$this->pool[$Path]) {
$r = File::create($Path);
$this->pool[$Path] = $r;
return $r;
}
return $this->pool[$Path];
}
public function clear() {
$this->pool = array ();
}
}