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

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