ICanBoogie/Storage 1.2.x
  • Namespace
  • Class

Namespaces

  • ICanBoogie
    • Storage

Classes

  • APCStorage
  • CacheCollection
  • FileStorage
  • FileStorageIterator
  • RedisStorage
  • RunTimeStorage
  • StorageCollection

Interfaces

  • Cache
  • Storage

Traits

  • ArrayAccessTrait
  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  41  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  59  60  61  62  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77  78  79  80  81  82  83  84  85  86  87  88  89  90  91  92  93  94  95  96  97  98  99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 
<?php

/*
 * This file is part of the ICanBoogie package.
 *
 * (c) Olivier Laviale <olivier.laviale@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace ICanBoogie\Storage;

/**
 * A storage using the file system.
 */
class FileStorage implements Storage, \ArrayAccess, \IteratorAggregate
{
    use ArrayAccessTrait;

    /**
     * Magic pattern used to recognize automatically serialized values.
     *
     * @var string
     */
    const MAGIC = "VAR\0SLZ\0";

    /**
     * Length of the magic pattern {@link MAGIC}.
     *
     * @var int
     */
    const MAGIC_LENGTH = 8;

    static private $release_after;

    /**
     * Absolute path to the storage directory.
     *
     * @var string
     */
    protected $path;

    /**
     * Constructor.
     *
     * @param string $path Absolute path to the storage directory.
     */
    public function __construct($path)
    {
        $this->path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;

        if (self::$release_after === null)
        {
            self::$release_after = strpos(PHP_OS, 'WIN') === 0 ? false : true;
        }
    }

    /**
     * Normalizes a key into a valid filename.
     *
     * @param string $key
     *
     * @return string
     */
    protected function normalize_key($key)
    {
        return str_replace('/', '--', $key);
    }

    /**
     * Formats a key into an absolute pathname.
     *
     * @param string $key
     *
     * @return string
     */
    protected function format_pathname($key)
    {
        return $this->path . $this->normalize_key($key);
    }

    /**
     * Formats a pathname with a TTL extension.
     *
     * @param string $pathname
     *
     * @return string
     */
    protected function format_pathname_with_ttl($pathname)
    {
        return $pathname . '.ttl';
    }

    /**
     * Serializes a value so that it can be stored.
     *
     * @param mixed $value
     *
     * @return string
     */
    protected function serialize($value)
    {
        #
        # If the value is an array or a string it is serialized and prepended with a magic
        # identifier.
        #

        if (is_array($value) || is_object($value))
        {
            return self::MAGIC . serialize($value);
        }

        return $value;
    }

    /**
     * Unserializes a value retrieved from storage.
     *
     * @param string $value
     *
     * @return mixed
     */
    protected function unserialize($value)
    {
        if (substr($value, 0, self::MAGIC_LENGTH) == self::MAGIC)
        {
            return unserialize(substr($value, self::MAGIC_LENGTH));
        }

        return $value;
    }

    /**
     * @inheritdoc
     *
     * @throws \Exception when a file operation fails.
     */
    public function store($key, $value, $ttl = 0)
    {
        $this->check_writable();

        $pathname = $this->format_pathname($key);
        $ttl_mark = $this->format_pathname_with_ttl($pathname);

        if ($ttl)
        {
            $future = time() + $ttl;

            touch($ttl_mark, $future, $future);
        }
        elseif (file_exists($ttl_mark))
        {
            unlink($ttl_mark);
        }

        if ($value === true)
        {
            touch($pathname);

            return;
        }

        if ($value === false || $value === null)
        {
            $this->eliminate($key);

            return;
        }

        set_error_handler(function() {});

        try
        {
            $this->safe_store($pathname, $this->serialize($value));
        }
        catch (\Exception $e)
        {
            throw $e;
        }
        finally
        {
            restore_error_handler();
        }
    }

    /**
     * Safely store the value.
     *
     * @param $pathname
     * @param $value
     *
     * @throws \Exception if an error occurs.
     */
    private function safe_store($pathname, $value)
    {
        $dir = dirname($pathname);
        $uniqid = uniqid(mt_rand(), true);
        $tmp_pathname = $dir . '/var-' . $uniqid;
        $garbage_pathname = $dir . '/garbage-var-' . $uniqid;

        #
        # We lock the file create/update, but we write the data in a temporary file, which is then
        # renamed once the data is written.
        #

        $fh = fopen($pathname, 'a+');

        if (!$fh)
        {
            throw new \Exception("Unable to open $pathname.");
        }

        if (self::$release_after && !flock($fh, LOCK_EX))
        {
            throw new \Exception("Unable to get to exclusive lock on $pathname.");
        }

        file_put_contents($tmp_pathname, $value);

        #
        # Windows, this is for you
        #
        if (!self::$release_after)
        {
            fclose($fh);
        }

        if (!rename($pathname, $garbage_pathname))
        {
            throw new \Exception("Unable to rename $pathname as $garbage_pathname.");
        }

        if (!rename($tmp_pathname, $pathname))
        {
            throw new \Exception("Unable to rename $tmp_pathname as $pathname.");
        }

        if (!unlink($garbage_pathname))
        {
            throw new \Exception("Unable to delete $garbage_pathname.");
        }

        #
        # Unix, this is for you
        #
        if (self::$release_after)
        {
            flock($fh, LOCK_UN);
            fclose($fh);
        }
    }

    /**
     * @inheritdoc
     *
     * @param mixed $default The value returned if the key does not exists. Defaults to `null`.
     */
    public function retrieve($key, $default = null)
    {
        $this->check_writable();

        $pathname = $this->format_pathname($key);
        $ttl_mark = $this->format_pathname_with_ttl($pathname);

        if (file_exists($ttl_mark) && fileatime($ttl_mark) < time() || !file_exists($pathname))
        {
            return $default;
        }

        return $this->unserialize(file_get_contents($pathname));
    }

    /**
     * @inheritdoc
     */
    public function eliminate($key)
    {
        $pathname = $this->format_pathname($key);

        if (!file_exists($pathname))
        {
            return;
        }

        unlink($pathname);
    }

    /**
     * @inheritdoc
     */
    public function exists($key)
    {
        return file_exists($this->format_pathname($key));
    }

    public function clear()
    {
        throw new \Exception("The method clear() is not implemented");
    }

    /**
     * Returns an iterator for the storage.
     *
     * @return FileStorageIterator
     */
    public function getIterator()
    {
        return new FileStorageIterator(new \DirectoryIterator($this->path));
    }

    /**
     * Returns an iterator for the keys matching a specified regex.
     *
     * @param string $regex
     *
     * @return FileStorageIterator
     */
    public function matching($regex)
    {
        return new FileStorageIterator(new \RegexIterator(new \DirectoryIterator($this->path), $regex));
    }

    private $is_writable;

    /**
     * Checks whether the storage directory is writable.
     *
     * @return bool
     *
     * @throws \Exception when the storage directory is not writable.
     */
    public function check_writable()
    {
        if ($this->is_writable)
        {
            return true;
        }

        $path = $this->path;

        if (!file_exists($path))
        {
            set_error_handler(function() {});
            mkdir($path, 0705, true);
            restore_error_handler();
        }

        if (!is_writable($path))
        {
            throw new \Exception("The directory $path is not writable.");
        }

        return $this->is_writable = true;
    }
}
ICanBoogie/Storage 1.2.x API documentation generated by ApiGen