current = 0; $this->buffer_size = $size; $this->buffer = str_repeat(chr(0), $this->buffer_size); } public function getData() { return $this->buffer; } public function writeVarint32($value) { $bytes = str_repeat(chr(0), self::MAX_VARINT32_BYTES); $size = self::writeVarintToArray($value, $bytes, true); return $this->writeRaw($bytes, $size); } public function writeVarint64($value) { $bytes = str_repeat(chr(0), self::MAX_VARINT64_BYTES); $size = self::writeVarintToArray($value, $bytes); return $this->writeRaw($bytes, $size); } public function writeLittleEndian32($value) { $bytes = str_repeat(chr(0), 4); $size = self::writeLittleEndian32ToArray($value, $bytes); return $this->writeRaw($bytes, $size); } public function writeLittleEndian64($value) { $bytes = str_repeat(chr(0), 8); $size = self::writeLittleEndian64ToArray($value, $bytes); return $this->writeRaw($bytes, $size); } public function writeTag($tag) { return $this->writeVarint32($tag); } public function writeRaw($data, $size) { if ($this->buffer_size < $size) { var_dump($this->buffer_size); var_dump($size); trigger_error("Output stream doesn't have enough buffer."); return false; } for ($i = 0; $i < $size; $i++) { $this->buffer[$this->current] = $data[$i]; $this->current++; $this->buffer_size--; } return true; } private static function writeVarintToArray($value, &$buffer, $trim = false) { $current = 0; if ($trim) { $value &= 0xFFFFFFFF; } while ($value >= 0x80 || $value < 0) { $buffer[$current] = chr($value | 0x80); $value = ($value >> 7) & ~(0x7F << ((PHP_INT_SIZE << 3) - 7)); $current++; } $buffer[$current] = chr($value); return $current + 1; } private static function writeLittleEndian32ToArray($value, &$buffer) { $buffer[0] = chr($value & 0x000000FF); $buffer[1] = chr(($value >> 8) & 0x000000FF); $buffer[2] = chr(($value >> 16) & 0x000000FF); $buffer[3] = chr(($value >> 24) & 0x000000FF); return 4; } private static function writeLittleEndian64ToArray($value, &$buffer) { $buffer[0] = chr($value & 0x000000FF); $buffer[1] = chr(($value >> 8) & 0x000000FF); $buffer[2] = chr(($value >> 16) & 0x000000FF); $buffer[3] = chr(($value >> 24) & 0x000000FF); $buffer[4] = chr(($value >> 32) & 0x000000FF); $buffer[5] = chr(($value >> 40) & 0x000000FF); $buffer[6] = chr(($value >> 48) & 0x000000FF); $buffer[7] = chr(($value >> 56) & 0x000000FF); return 8; } }