chevere/chevere

View on GitHub
src/Filesystem/FilePhp.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/*
 * This file is part of Chevere.
 *
 * (c) Rodolfo Berrios <rodolfo@chevere.org>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace Chevere\Filesystem;

use Chevere\Filesystem\Exceptions\FileNotPhpException;
use Chevere\Filesystem\Interfaces\FileInterface;
use Chevere\Filesystem\Interfaces\FilePhpInterface;
use Chevere\Message\Message;
use Chevere\Throwable\Exceptions\RangeException;
use Chevere\Throwable\Exceptions\RuntimeException;

final class FilePhp implements FilePhpInterface
{
    public function __construct(
        private FileInterface $file
    ) {
        $this->assertFilePhp();
    }

    public function file(): FileInterface
    {
        return $this->file;
    }

    /**
     * @codeCoverageIgnore
     * @infection-ignore-all
     */
    public function cache(): void
    {
        $this->file->assertExists();
        $path = $this->file->path()->__toString();
        $past = stat($path)['mtime'] - 10;
        touch($path, $past);
        if (opcache_get_status() === false) {
            throw new RangeException(
                (new Message('OPCache is not enabled'))
            );
        }
        opcache_compile_file($path);
    }

    /**
     * @codeCoverageIgnore
     * @infection-ignore-all
     */
    public function flush(): void
    {
        if (!opcache_is_script_cached($this->file->path()->__toString())) {
            return;
        }
        if (!opcache_invalidate($this->file->path()->__toString())) {
            throw new RuntimeException(
                (new Message('OPCache is not enabled'))
            );
        }
    }

    private function assertFilePhp(): void
    {
        if (!$this->file->isPhp()) {
            throw new FileNotPhpException(
                (new Message('Instance of %className% must represents a PHP script in the path %path%'))
                    ->code('%className%', $this->file::class)
                    ->code('%path%', $this->file->path()->__toString())
            );
        }
    }
}