![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/openspout/openspout/src/Reader/ODS/ |
<?php declare(strict_types=1); namespace OpenSpout\Reader\ODS; use OpenSpout\Common\Exception\IOException; use OpenSpout\Common\Helper\Escaper\ODS; use OpenSpout\Reader\AbstractReader; use OpenSpout\Reader\ODS\Helper\SettingsHelper; use ZipArchive; /** * @extends AbstractReader<SheetIterator> */ final class Reader extends AbstractReader { private ZipArchive $zip; private readonly Options $options; /** @var SheetIterator To iterator over the ODS sheets */ private SheetIterator $sheetIterator; public function __construct(?Options $options = null) { $this->options = $options ?? new Options(); } public function getSheetIterator(): SheetIterator { $this->ensureStreamOpened(); return $this->sheetIterator; } /** * Returns whether stream wrappers are supported. */ protected function doesSupportStreamWrapper(): bool { return false; } /** * Opens the file at the given file path to make it ready to be read. * * @param string $filePath Path of the file to be read * * @throws \OpenSpout\Common\Exception\IOException If the file at the given path or its content cannot be read * @throws \OpenSpout\Reader\Exception\NoSheetsFoundException If there are no sheets in the file */ protected function openReader(string $filePath): void { $this->zip = new ZipArchive(); if (true !== $this->zip->open($filePath)) { throw new IOException("Could not open {$filePath} for reading."); } $this->sheetIterator = new SheetIterator($filePath, $this->options, new ODS(), new SettingsHelper()); } /** * Closes the reader. To be used after reading the file. */ protected function closeReader(): void { $this->zip->close(); } }