From cdd7ad020e165fe680703b6d3319b908b682fb7a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 20 Oct 2023 17:12:29 +0300 Subject: jaeger-client -> opentelemetry --- .../thrift/src/Serializer/TBinarySerializer.php | 87 ---------------------- 1 file changed, 87 deletions(-) delete mode 100644 vendor/packaged/thrift/src/Serializer/TBinarySerializer.php (limited to 'vendor/packaged/thrift/src/Serializer/TBinarySerializer.php') diff --git a/vendor/packaged/thrift/src/Serializer/TBinarySerializer.php b/vendor/packaged/thrift/src/Serializer/TBinarySerializer.php deleted file mode 100644 index 9d2b14730..000000000 --- a/vendor/packaged/thrift/src/Serializer/TBinarySerializer.php +++ /dev/null @@ -1,87 +0,0 @@ -getName(), - TMessageType::REPLY, - $object, - 0, - $protocol->isStrictWrite() - ); - - $protocol->readMessageBegin($unused_name, $unused_type, $unused_seqid); - } else { - $object->write($protocol); - } - $protocol->getTransport()->flush(); - - return $transport->getBuffer(); - } - - public static function deserialize($string_object, $class_name, $buffer_size = 8192) - { - $transport = new TMemoryBuffer(); - $protocol = new TBinaryProtocolAccelerated($transport); - if (function_exists('thrift_protocol_read_binary')) { - // NOTE (t.heintz) TBinaryProtocolAccelerated internally wraps our TMemoryBuffer in a - // TBufferedTransport, so we have to retrieve it again or risk losing data when writing - // less than 512 bytes to the transport (see the comment there as well). - // @see THRIFT-1579 - $protocol->writeMessageBegin('', TMessageType::REPLY, 0); - $protocolTransport = $protocol->getTransport(); - $protocolTransport->write($string_object); - $protocolTransport->flush(); - - return thrift_protocol_read_binary($protocol, $class_name, $protocol->isStrictRead(), $buffer_size); - } else { - $transport->write($string_object); - $object = new $class_name(); - $object->read($protocol); - - return $object; - } - } -} -- cgit v1.2.3