x = $regionX; $this->z = $regionZ; $this->filePath = $filePath; } /** * @throws CorruptedRegionException */ public function open(){ $exists = file_exists($this->filePath); if(!$exists){ touch($this->filePath); }elseif(filesize($this->filePath) % 4096 !== 0){ throw new CorruptedRegionException("Region file should be padded to a multiple of 4KiB"); } $this->filePointer = fopen($this->filePath, "r+b"); stream_set_read_buffer($this->filePointer, 1024 * 16); //16KB stream_set_write_buffer($this->filePointer, 1024 * 16); //16KB if(!$exists){ $this->createBlank(); }else{ $this->loadLocationTable(); } $this->lastUsed = time(); } public function __destruct(){ if(is_resource($this->filePointer)){ $this->writeLocationTable(); fclose($this->filePointer); } } protected function isChunkGenerated(int $index) : bool{ return !$this->locationTable[$index]->isNull(); } /** * @param int $x * @param int $z * * @return null|string * @throws \InvalidArgumentException if invalid coordinates are given * @throws CorruptedChunkException if chunk corruption is detected */ public function readChunk(int $x, int $z) : ?string{ $index = self::getChunkOffset($x, $z); $this->lastUsed = time(); if(!$this->isChunkGenerated($index)){ return null; } fseek($this->filePointer, $this->locationTable[$index]->getFirstSector() << 12); $prefix = fread($this->filePointer, 4); if($prefix === false or strlen($prefix) !== 4){ throw new CorruptedChunkException("Corrupted chunk header detected (unexpected end of file reading length prefix)"); } $length = Binary::readInt($prefix); if($length <= 0){ //TODO: if we reached here, the locationTable probably needs updating return null; } if($length > self::MAX_SECTOR_LENGTH){ //corrupted throw new CorruptedChunkException("Length for chunk x=$x,z=$z ($length) is larger than maximum " . self::MAX_SECTOR_LENGTH); } if($length > ($this->locationTable[$index]->getSectorCount() << 12)){ //Invalid chunk, bigger than defined number of sectors MainLogger::getLogger()->error("Chunk x=$x,z=$z length mismatch (expected " . ($this->locationTable[$index]->getSectorCount() << 12) . " sectors, got $length sectors)"); $old = $this->locationTable[$index]; $this->locationTable[$index] = new RegionLocationTableEntry($old->getFirstSector(), $length >> 12, time()); $this->writeLocationIndex($index); } $chunkData = fread($this->filePointer, $length); if($chunkData === false or strlen($chunkData) !== $length){ throw new CorruptedChunkException("Corrupted chunk detected (unexpected end of file reading chunk data)"); } $compression = ord($chunkData[0]); if($compression !== self::COMPRESSION_ZLIB and $compression !== self::COMPRESSION_GZIP){ throw new CorruptedChunkException("Invalid compression type (got $compression, expected " . self::COMPRESSION_ZLIB . " or " . self::COMPRESSION_GZIP . ")"); } return substr($chunkData, 1); } /** * @param int $x * @param int $z * * @return bool * @throws \InvalidArgumentException */ public function chunkExists(int $x, int $z) : bool{ return $this->isChunkGenerated(self::getChunkOffset($x, $z)); } /** * @param int $x * @param int $z * @param string $chunkData * * @throws ChunkException * @throws \InvalidArgumentException */ public function writeChunk(int $x, int $z, string $chunkData){ $this->lastUsed = time(); $length = strlen($chunkData) + 1; if($length + 4 > self::MAX_SECTOR_LENGTH){ throw new ChunkException("Chunk is too big! " . ($length + 4) . " > " . self::MAX_SECTOR_LENGTH); } $newSize = (int) ceil(($length + 4) / 4096); $index = self::getChunkOffset($x, $z); $offset = $this->locationTable[$index]->getFirstSector(); if($this->locationTable[$index]->getSectorCount() < $newSize){ $offset = $this->nextSector; } $this->locationTable[$index] = new RegionLocationTableEntry($offset, $newSize, time()); $this->bumpNextFreeSector($this->locationTable[$index]); fseek($this->filePointer, $offset << 12); fwrite($this->filePointer, str_pad(Binary::writeInt($length) . chr(self::COMPRESSION_ZLIB) . $chunkData, $newSize << 12, "\x00", STR_PAD_RIGHT)); $this->writeLocationIndex($index); } /** * @param int $x * @param int $z * * @throws \InvalidArgumentException */ public function removeChunk(int $x, int $z){ $index = self::getChunkOffset($x, $z); $this->locationTable[$index] = new RegionLocationTableEntry(0, 0, 0); } /** * @param int $x * @param int $z * * @return int * @throws \InvalidArgumentException */ protected static function getChunkOffset(int $x, int $z) : int{ if($x < 0 or $x > 31 or $z < 0 or $z > 31){ throw new \InvalidArgumentException("Invalid chunk position in region, expected x/z in range 0-31, got x=$x, z=$z"); } return $x | ($z << 5); } /** * @param int $offset * @param int &$x * @param int &$z */ protected static function getChunkCoords(int $offset, ?int &$x, ?int &$z) : void{ $x = $offset & 0x1f; $z = ($offset >> 5) & 0x1f; } /** * Writes the region header and closes the file * * @param bool $writeHeader */ public function close(bool $writeHeader = true){ if(is_resource($this->filePointer)){ if($writeHeader){ $this->writeLocationTable(); } fclose($this->filePointer); } } /** * @throws CorruptedRegionException */ protected function loadLocationTable(){ fseek($this->filePointer, 0); $headerRaw = fread($this->filePointer, self::REGION_HEADER_LENGTH); if(($len = strlen($headerRaw)) !== self::REGION_HEADER_LENGTH){ throw new CorruptedRegionException("Invalid region file header, expected " . self::REGION_HEADER_LENGTH . " bytes, got " . $len . " bytes"); } $data = unpack("N*", $headerRaw); for($i = 0; $i < 1024; ++$i){ $index = $data[$i + 1]; $offset = $index >> 8; $timestamp = $data[$i + 1025]; if($offset === 0){ $this->locationTable[$i] = new RegionLocationTableEntry(0, 0, 0); }else{ $this->locationTable[$i] = new RegionLocationTableEntry($offset, $index & 0xff, $timestamp); $this->bumpNextFreeSector($this->locationTable[$i]); } } $this->checkLocationTableValidity(); fseek($this->filePointer, 0); } /** * @throws CorruptedRegionException */ private function checkLocationTableValidity() : void{ /** @var int[] $usedOffsets */ $usedOffsets = []; for($i = 0; $i < 1024; ++$i){ $entry = $this->locationTable[$i]; if($entry->isNull()){ continue; } self::getChunkCoords($i, $x, $z); $offset = $entry->getFirstSector(); $fileOffset = $offset << 12; //TODO: more validity checks fseek($this->filePointer, $fileOffset); if(feof($this->filePointer)){ throw new CorruptedRegionException("Region file location offset x=$x,z=$z points to invalid file location $fileOffset"); } if(isset($usedOffsets[$offset])){ self::getChunkCoords($usedOffsets[$offset], $existingX, $existingZ); throw new CorruptedRegionException("Found two chunk offsets (chunk1: x=$existingX,z=$existingZ, chunk2: x=$x,z=$z) pointing to the file location $fileOffset"); } $usedOffsets[$offset] = $i; } } private function writeLocationTable(){ $write = []; for($i = 0; $i < 1024; ++$i){ $write[] = (($this->locationTable[$i]->getFirstSector() << 8) | $this->locationTable[$i]->getSectorCount()); } for($i = 0; $i < 1024; ++$i){ $write[] = $this->locationTable[$i]->getTimestamp(); } fseek($this->filePointer, 0); fwrite($this->filePointer, pack("N*", ...$write), 4096 * 2); } protected function writeLocationIndex($index){ fseek($this->filePointer, $index << 2); fwrite($this->filePointer, Binary::writeInt(($this->locationTable[$index]->getFirstSector() << 8) | $this->locationTable[$index]->getSectorCount()), 4); fseek($this->filePointer, 4096 + ($index << 2)); fwrite($this->filePointer, Binary::writeInt($this->locationTable[$index]->getTimestamp()), 4); } protected function createBlank(){ fseek($this->filePointer, 0); ftruncate($this->filePointer, 8192); // this fills the file with the null byte for($i = 0; $i < 1024; ++$i){ $this->locationTable[$i] = new RegionLocationTableEntry(0, 0, 0); } } private function bumpNextFreeSector(RegionLocationTableEntry $entry) : void{ $this->nextSector = max($this->nextSector, $entry->getLastSector()) + 1; } public function getX() : int{ return $this->x; } public function getZ() : int{ return $this->z; } public function getFilePath() : string{ return $this->filePath; } }