package core_kernel
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=66f5353964d35a994ec7fdc88fe60ae5d497ac89a8042786f3e37d9e2202ce4b
md5=ede2f6d22eaa8320f88bac67d41b5cff
doc/core_kernel.unpack_buffer/Unpack_buffer/index.html
Module Unpack_bufferSource
A buffer for incremental decoding of an input stream.
An Unpack_buffer.t is a buffer to which one can feed strings, and then unpack from the buffer to produce a queue of values.
If unpack_one : ('a, 'state) unpack, then unpack_one ~state ~buf ~pos ~len must unpack at most one value of type 'a from buf starting at pos, and not using more than len characters. unpack_one must return one the following:
include Core_kernel.Invariant.S1 with type 'a t := 'a t
create_bin_prot reader returns an unpack buffer that unpacks the "size-prefixed" bin_prot encoding, in which a value is encoded by first writing the length of the bin_prot data as a 64-bit int, and then writing the bin_prot data itself.
is_empty returns true if all the data fed into t has been unpacked into values; false if t has unconsumed bytes or partially unpacked data. is_empty returns an error if t has encountered an unpacking error.
val feed :
?pos:int ->
?len:int ->
_ t ->
Core_kernel.Bigstring.t ->
unit Core_kernel.Or_error.tfeed t buf ?pos ?len adds the specified substring of buf to t's buffer. It returns an error if t has encountered an unpacking error.
val feed_bytes :
?pos:int ->
?len:int ->
_ t ->
Core_kernel.Bytes.t ->
unit Core_kernel.Or_error.tunpack_into t q unpacks all the values that it can from t and enqueues them in q. If there is an unpacking error, unpack_into returns an error, and subsequent feed and unpack operations on t will return that same error -- i.e. no more data can be fed to or unpacked from t.
unpack_iter t ~f unpacks all the values that it can from t, calling f on each value as it's unpacked. If there is an unpacking error (including if f raises), unpack_iter returns an error, and subsequent feed and unpack operations on t will return that same error -- i.e., no more data can be fed to or unpacked from t.
Behavior is unspecified if f operates on t.