Library
Module
Module type
Parameter
Class
Class type
Base types
type buffer =
( char, Bigarray.int8_unsigned_elt, Bigarray.c_layout ) Bigarray.Array1.t
Type of a buffer. A cstruct is composed of an underlying buffer and position/length within this buffer.
val sexp_of_buffer : buffer -> Sexplib.Sexp.t
sexp_of_buffer b
returns the s-expression representation of the raw memory buffer b
val buffer_of_sexp : Sexplib.Sexp.t -> buffer
buffer_of_sexp s
returns a fresh memory buffer from the s-expression s
. s
should have been constructed using sexp_of_buffer
.
Type of a cstruct.
val sexp_of_t : t -> Sexplib.Sexp.t
sexp_of_t t
returns the s-expression representation of the Cstruct t
val t_of_sexp : Sexplib.Sexp.t -> t
val byte : int -> byte
byte v
convert v
to a single byte.
Creation and conversion
of_bigarray ~off ~len b
is the cstruct contained in b
starting at off
, of length len
.
val create : int -> t
create len
is a fresh cstruct of size len
with an offset of 0, filled with zero bytes.
val create_unsafe : int -> t
create len
is a cstruct of size len
with an offset of 0.
Note that the returned cstruct will contain arbitrary data, likely including the contents of previously-deallocated cstructs.
Beware!
Forgetting to replace this data could cause your application to leak sensitive information.
of_string ~allocator str
is the cstruct representation of str
, with the underlying buffer allocated by alloc
. If allocator
is not provided, create
is used.
of_bytes ~allocator byt
is the cstruct representation of byt
, with the underlying buffer allocated by alloc
. If allocator
is not provided, create
is used.
Comparison
equal t1 t2
is true
iff t1
and t2
correspond to the same sequence of bytes.
Getters and Setters
val byte_to_int : byte -> int
Convert a byte to an integer
val check_bounds : t -> int -> bool
check_bounds cstr len
is true
if cstr.buffer
's size is greater or equal than len
, false
otherwise.
val check_alignment : t -> int -> bool
check_alignment cstr alignment
is true
if the first byte stored within cstr
is at a memory address where address mod alignment = 0
, false
otherwise. Typical uses are to check a buffer is aligned to a page or disk sector boundary.
val get_char : t -> int -> char
get_char t off
returns the character contained in the cstruct at offset off
.
get_uint8 t off
returns the byte contained in the cstruct at offset off
.
val set_char : t -> int -> char -> unit
set_char t off c
sets the byte contained in the cstruct at offset off
to character c
.
set_uint8 t off c
sets the byte contained in the cstruct at offset off
to byte c
.
val copy : t -> int -> int -> string
copy cstr off len
is the string representation of the segment of t
starting at off
of size len
.
blit src srcoff dst dstoff len
copies len
characters from cstruct src
, starting at index srcoff
, to cstruct dst
, starting at index dstoff
. It works correctly even if src
and dst
are the same string, and the source and destination intervals overlap.
val blit_from_string : string -> int -> t -> int -> int -> unit
blit_from_string src srcoff dst dstoff len
copies len
characters from string src
, starting at index srcoff
, to cstruct dst
, starting at index dstoff
.
blit_from_bytes src srcoff dst dstoff len
copies len
characters from bytes src
, starting at index srcoff
, to cstruct dst
, starting at index dstoff
.
blit_to_string src srcoff dst dstoff len
copies len
characters from cstruct src
, starting at index srcoff
, to string dst
, starting at index dstoff
.
blit_to_string
is a deprecated alias of blit_to_bytes
.
val memset : t -> int -> unit
memset t x
sets all the bytes of t
to x land 0xff
.
val len : t -> int
Returns the length of the current cstruct view. Note that this length is potentially smaller than the actual size of the underlying buffer, as the sub
or set_len
functions can construct a smaller view.
set_len t len
sets the length of the cstruct t
to a new absolute value, and returns a fresh cstruct with these settings.
add_len t l
will add l
bytes to the length of the buffer, and return a fresh cstruct with these settings.
split ~start cstr len
is a tuple containing the cstruct extracted from cstr
at offset start
(default: 0) of length len
as first element, and the rest of cstr
as second element.
val to_string : t -> string
to_string t
will allocate a fresh OCaml string
and copy the contents of the cstruct into it, and return that string copy.
Debugging
val hexdump : t -> unit
When the going gets tough, the tough hexdump their cstructs and peer at it until the bug disappears. This will directly prettyprint the contents of the cstruct to the standard output.
hexdump_to_buffer buf c
will append the pretty-printed hexdump of the cstruct c
to the buffer buf
.
val hexdump_pp : Format.formatter -> t -> unit
hexdump_pp f c
pretty-prints a hexdump of c
to f
.
val debug : t -> string
debug t
will print out the internal details of a cstruct such as its base offset and the length, and raise an assertion failure if invariants have been violated. Not intended for casual use.
module BE : sig ... end
Get/set big-endian integers of various sizes. The second argument of those functions is the position relative to the current offset of the cstruct.
module LE : sig ... end
Get/set little-endian integers of various sizes. The second argument of those functions is the position relative to the current offset of the cstruct.
List of buffers
val lenv : t list -> int
lenv cstrs
is the combined length of all cstructs in cstrs
.
val copyv : t list -> string
copyv cstrs
is the string representation of the concatenation of all cstructs in cstrs
.
fillv ~src ~dst
copies from src
to dst
until src
is exhausted or dst
is full. * Returns the number of bytes copied and the remaining data from src
, if any. * This is useful if you want buffer data into fixed-sized chunks.
Iterations
iter lenf of_cstr cstr
is an iterator over cstr
that returns elements of size lenf cstr
and type of_cstr cstr
.
val fold : ( 'b -> 'a -> 'b ) -> 'a iter -> 'b -> 'b
fold f iter acc
is (f iterN accN ... (f iter acc)...)
.