Пример #1
0
 /**
  * Initializes the instance.
  *
  * @param Reader $reader The reader that provides the data.
  *
  * @throws Exception Throws an Exception in case of errors.
  */
 public function __construct(Reader $reader)
 {
     $this->reader = $reader;
     $reader->setPosition(0);
     $this->itsf = new Header\ITSF($reader);
     if ($this->itsf->getSectionOffset() >= 0 && $this->itsf->getSectionLength() >= 16) {
         $reader->setPosition($this->itsf->getSectionOffset());
         /* Unknown (510) */
         $reader->readUInt32();
         /* Unknown (0) */
         $reader->readUInt32();
         $totalLength = $reader->readUInt64();
         if ($totalLength !== $reader->getLength()) {
             throw new Exception("Invalid CHM size: expected length {$totalLength}, current length {$reader->getLength()}");
         }
     }
     $reader->setPosition($this->itsf->getDirectoryOffset());
     $this->itsp = new Header\ITSP($reader);
     $expectedDirectoryLength = $this->itsf->getDirectoryLength();
     $calculatedDirectoryLength = $this->itsp->getHeaderLength() + $this->itsp->getNumberOfDirectoryChunks() * $this->itsp->getDirectoryChunkSize();
     if ($expectedDirectoryLength !== $calculatedDirectoryLength) {
         throw new Exception("Unexpected directory list size (expected: {$expectedDirectoryLength}, calculated: {$calculatedDirectoryLength})");
     }
     $this->sections = array();
     $this->sections[0] = new Section\UncompressedSection($this);
     $this->entries = $this->retrieveEntryList();
     $this->retrieveSectionList();
     $this->toc = null;
     $this->index = null;
 }