vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 179

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\HttpKernel\Profiler;
  11. /**
  12.  * Storage for profiler using files.
  13.  *
  14.  * @author Alexandre Salomé <alexandre.salome@gmail.com>
  15.  */
  16. class FileProfilerStorage implements ProfilerStorageInterface
  17. {
  18.     /**
  19.      * Folder where profiler data are stored.
  20.      *
  21.      * @var string
  22.      */
  23.     private $folder;
  24.     /**
  25.      * Constructs the file storage using a "dsn-like" path.
  26.      *
  27.      * Example : "file:/path/to/the/storage/folder"
  28.      *
  29.      * @throws \RuntimeException
  30.      */
  31.     public function __construct(string $dsn)
  32.     {
  33.         if (!str_starts_with($dsn'file:')) {
  34.             throw new \RuntimeException(sprintf('Please check your configuration. You are trying to use FileStorage with an invalid dsn "%s". The expected format is "file:/path/to/the/storage/folder".'$dsn));
  35.         }
  36.         $this->folder substr($dsn5);
  37.         if (!is_dir($this->folder) && false === @mkdir($this->folder0777true) && !is_dir($this->folder)) {
  38.             throw new \RuntimeException(sprintf('Unable to create the storage directory (%s).'$this->folder));
  39.         }
  40.     }
  41.     /**
  42.      * {@inheritdoc}
  43.      */
  44.     public function find(?string $ip, ?string $url, ?int $limit, ?string $methodint $start nullint $end nullstring $statusCode null): array
  45.     {
  46.         $file $this->getIndexFilename();
  47.         if (!file_exists($file)) {
  48.             return [];
  49.         }
  50.         $file fopen($file'r');
  51.         fseek($file0\SEEK_END);
  52.         $result = [];
  53.         while (\count($result) < $limit && $line $this->readLineFromFile($file)) {
  54.             $values str_getcsv($line);
  55.             [$csvToken$csvIp$csvMethod$csvUrl$csvTime$csvParent$csvStatusCode] = $values;
  56.             $csvTime = (int) $csvTime;
  57.             if ($ip && !str_contains($csvIp$ip) || $url && !str_contains($csvUrl$url) || $method && !str_contains($csvMethod$method) || $statusCode && !str_contains($csvStatusCode$statusCode)) {
  58.                 continue;
  59.             }
  60.             if (!empty($start) && $csvTime $start) {
  61.                 continue;
  62.             }
  63.             if (!empty($end) && $csvTime $end) {
  64.                 continue;
  65.             }
  66.             $result[$csvToken] = [
  67.                 'token' => $csvToken,
  68.                 'ip' => $csvIp,
  69.                 'method' => $csvMethod,
  70.                 'url' => $csvUrl,
  71.                 'time' => $csvTime,
  72.                 'parent' => $csvParent,
  73.                 'status_code' => $csvStatusCode,
  74.             ];
  75.         }
  76.         fclose($file);
  77.         return array_values($result);
  78.     }
  79.     /**
  80.      * {@inheritdoc}
  81.      */
  82.     public function purge()
  83.     {
  84.         $flags \FilesystemIterator::SKIP_DOTS;
  85.         $iterator = new \RecursiveDirectoryIterator($this->folder$flags);
  86.         $iterator = new \RecursiveIteratorIterator($iterator\RecursiveIteratorIterator::CHILD_FIRST);
  87.         foreach ($iterator as $file) {
  88.             if (is_file($file)) {
  89.                 unlink($file);
  90.             } else {
  91.                 rmdir($file);
  92.             }
  93.         }
  94.     }
  95.     /**
  96.      * {@inheritdoc}
  97.      */
  98.     public function read(string $token): ?Profile
  99.     {
  100.         if (!$token || !file_exists($file $this->getFilename($token))) {
  101.             return null;
  102.         }
  103.         if (\function_exists('gzcompress')) {
  104.             $file 'compress.zlib://'.$file;
  105.         }
  106.         if (!$data unserialize(file_get_contents($file))) {
  107.             return null;
  108.         }
  109.         return $this->createProfileFromData($token$data);
  110.     }
  111.     /**
  112.      * {@inheritdoc}
  113.      *
  114.      * @throws \RuntimeException
  115.      */
  116.     public function write(Profile $profile): bool
  117.     {
  118.         $file $this->getFilename($profile->getToken());
  119.         $profileIndexed is_file($file);
  120.         if (!$profileIndexed) {
  121.             // Create directory
  122.             $dir \dirname($file);
  123.             if (!is_dir($dir) && false === @mkdir($dir0777true) && !is_dir($dir)) {
  124.                 throw new \RuntimeException(sprintf('Unable to create the storage directory (%s).'$dir));
  125.             }
  126.         }
  127.         $profileToken $profile->getToken();
  128.         // when there are errors in sub-requests, the parent and/or children tokens
  129.         // may equal the profile token, resulting in infinite loops
  130.         $parentToken $profile->getParentToken() !== $profileToken $profile->getParentToken() : null;
  131.         $childrenToken array_filter(array_map(function (Profile $p) use ($profileToken) {
  132.             return $profileToken !== $p->getToken() ? $p->getToken() : null;
  133.         }, $profile->getChildren()));
  134.         // Store profile
  135.         $data = [
  136.             'token' => $profileToken,
  137.             'parent' => $parentToken,
  138.             'children' => $childrenToken,
  139.             'data' => $profile->getCollectors(),
  140.             'ip' => $profile->getIp(),
  141.             'method' => $profile->getMethod(),
  142.             'url' => $profile->getUrl(),
  143.             'time' => $profile->getTime(),
  144.             'status_code' => $profile->getStatusCode(),
  145.         ];
  146.         $context stream_context_create();
  147.         if (\function_exists('gzcompress')) {
  148.             $file 'compress.zlib://'.$file;
  149.             stream_context_set_option($context'zlib''level'3);
  150.         }
  151.         if (false === file_put_contents($fileserialize($data), 0$context)) {
  152.             return false;
  153.         }
  154.         if (!$profileIndexed) {
  155.             // Add to index
  156.             if (false === $file fopen($this->getIndexFilename(), 'a')) {
  157.                 return false;
  158.             }
  159.             fputcsv($file, [
  160.                 $profile->getToken(),
  161.                 $profile->getIp(),
  162.                 $profile->getMethod(),
  163.                 $profile->getUrl(),
  164.                 $profile->getTime(),
  165.                 $profile->getParentToken(),
  166.                 $profile->getStatusCode(),
  167.             ]);
  168.             fclose($file);
  169.         }
  170.         return true;
  171.     }
  172.     /**
  173.      * Gets filename to store data, associated to the token.
  174.      *
  175.      * @return string
  176.      */
  177.     protected function getFilename(string $token)
  178.     {
  179.         // Uses 4 last characters, because first are mostly the same.
  180.         $folderA substr($token, -22);
  181.         $folderB substr($token, -42);
  182.         return $this->folder.'/'.$folderA.'/'.$folderB.'/'.$token;
  183.     }
  184.     /**
  185.      * Gets the index filename.
  186.      *
  187.      * @return string
  188.      */
  189.     protected function getIndexFilename()
  190.     {
  191.         return $this->folder.'/index.csv';
  192.     }
  193.     /**
  194.      * Reads a line in the file, backward.
  195.      *
  196.      * This function automatically skips the empty lines and do not include the line return in result value.
  197.      *
  198.      * @param resource $file The file resource, with the pointer placed at the end of the line to read
  199.      *
  200.      * @return mixed
  201.      */
  202.     protected function readLineFromFile($file)
  203.     {
  204.         $line '';
  205.         $position ftell($file);
  206.         if (=== $position) {
  207.             return null;
  208.         }
  209.         while (true) {
  210.             $chunkSize min($position1024);
  211.             $position -= $chunkSize;
  212.             fseek($file$position);
  213.             if (=== $chunkSize) {
  214.                 // bof reached
  215.                 break;
  216.             }
  217.             $buffer fread($file$chunkSize);
  218.             if (false === ($upTo strrpos($buffer"\n"))) {
  219.                 $line $buffer.$line;
  220.                 continue;
  221.             }
  222.             $position += $upTo;
  223.             $line substr($buffer$upTo 1).$line;
  224.             fseek($filemax(0$position), \SEEK_SET);
  225.             if ('' !== $line) {
  226.                 break;
  227.             }
  228.         }
  229.         return '' === $line null $line;
  230.     }
  231.     protected function createProfileFromData(string $token, array $dataProfile $parent null)
  232.     {
  233.         $profile = new Profile($token);
  234.         $profile->setIp($data['ip']);
  235.         $profile->setMethod($data['method']);
  236.         $profile->setUrl($data['url']);
  237.         $profile->setTime($data['time']);
  238.         $profile->setStatusCode($data['status_code']);
  239.         $profile->setCollectors($data['data']);
  240.         if (!$parent && $data['parent']) {
  241.             $parent $this->read($data['parent']);
  242.         }
  243.         if ($parent) {
  244.             $profile->setParent($parent);
  245.         }
  246.         foreach ($data['children'] as $token) {
  247.             if (!$token || !file_exists($file $this->getFilename($token))) {
  248.                 continue;
  249.             }
  250.             if (\function_exists('gzcompress')) {
  251.                 $file 'compress.zlib://'.$file;
  252.             }
  253.             if (!$childData unserialize(file_get_contents($file))) {
  254.                 continue;
  255.             }
  256.             $profile->addChild($this->createProfileFromData($token$childData$profile));
  257.         }
  258.         return $profile;
  259.     }
  260. }