2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2017-08-20 08:07:07 +04:00
|
|
|
(** Low-level byte array querying and manipulation.
|
|
|
|
|
|
|
|
Default layout for numeric operations is big-endian.
|
|
|
|
Little-endian operations in the LE submodule. **)
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
open Bigarray
|
|
|
|
|
2017-12-04 19:35:48 +04:00
|
|
|
(** Arrays are of characters, represented as uint8's, in row-major layout. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
type t = (char, int8_unsigned_elt, c_layout) Array1.t
|
|
|
|
|
|
|
|
val create: int -> t
|
2017-08-20 08:07:07 +04:00
|
|
|
(** [create n] allocates and returns an array of size [n] **)
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
val length: t -> int
|
|
|
|
|
|
|
|
val copy: t -> t
|
|
|
|
|
|
|
|
val sub: t -> int -> int -> t
|
|
|
|
(** [sub src ofs len] extract a sub-array of [src] starting at [ofs]
|
|
|
|
and of length [len]. No copying of elements is involved: the
|
|
|
|
sub-array and the original array share the same storage space. *)
|
|
|
|
|
|
|
|
val shift: t -> int -> t
|
|
|
|
(** [shift src ofs] is equivalent to [sub src ofs (length src - ofs)] *)
|
|
|
|
|
|
|
|
val blit: t -> int -> t -> int -> int -> unit
|
|
|
|
(** [blit src ofs_src dst ofs_dst len] copy [len] bytes from [src]
|
|
|
|
starting at [ofs_src] into [dst] starting at [ofs_dst].] *)
|
|
|
|
|
|
|
|
val blit_from_string: string -> int -> t -> int -> int -> unit
|
|
|
|
(** See [blit] *)
|
|
|
|
|
|
|
|
val blit_to_bytes: t -> int -> bytes -> int -> int -> unit
|
|
|
|
(** See [blit] *)
|
|
|
|
|
|
|
|
val of_string: string -> t
|
|
|
|
(** [of_string s] create an byte array filled with the same content than [s]. *)
|
|
|
|
|
|
|
|
val to_string: t -> string
|
|
|
|
(** [to_string b] dump the array content in a [string]. *)
|
|
|
|
|
|
|
|
val substring: t -> int -> int -> string
|
|
|
|
(** [substring b ofs len] is equivalent to [to_string (sub b ofs len)]. *)
|
|
|
|
|
|
|
|
(** Functions reading and writing bytes *)
|
|
|
|
|
|
|
|
val get_char: t -> int -> char
|
|
|
|
(** [get_char buff i] reads 1 byte at offset i as a char *)
|
|
|
|
|
|
|
|
val get_uint8: t -> int -> int
|
|
|
|
(** [get_uint8 buff i] reads 1 byte at offset i as an unsigned int of 8
|
|
|
|
bits. i.e. It returns a value between 0 and 2^8-1 *)
|
|
|
|
|
|
|
|
val get_int8: t -> int -> int
|
|
|
|
(** [get_int8 buff i] reads 1 byte at offset i as a signed int of 8
|
|
|
|
bits. i.e. It returns a value between -2^7 and 2^7-1 *)
|
|
|
|
|
|
|
|
val set_char: t -> int -> char -> unit
|
|
|
|
(** [set_char buff i v] writes [v] to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
val set_int8: t -> int -> int -> unit
|
|
|
|
(** [set_int8 buff i v] writes the least significant 8 bits of [v]
|
|
|
|
to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
(** Functions reading according to Big Endian byte order *)
|
|
|
|
|
|
|
|
val get_uint16: t -> int -> int
|
|
|
|
(** [get_uint16 buff i] reads 2 bytes at offset i as an unsigned int
|
|
|
|
of 16 bits. i.e. It returns a value between 0 and 2^16-1 *)
|
|
|
|
|
|
|
|
val get_int16: t -> int -> int
|
|
|
|
(** [get_int16 buff i] reads 2 byte at offset i as a signed int of
|
|
|
|
16 bits. i.e. It returns a value between -2^15 and 2^15-1 *)
|
|
|
|
|
|
|
|
val get_int32: t -> int -> int32
|
|
|
|
(** [get_int32 buff i] reads 4 bytes at offset i as an int32. *)
|
|
|
|
|
|
|
|
val get_int64: t -> int -> int64
|
|
|
|
(** [get_int64 buff i] reads 8 bytes at offset i as an int64. *)
|
|
|
|
|
|
|
|
val get_float: t -> int -> float
|
|
|
|
(** [get_float buff i] reads 4 bytes at offset i as an IEEE754 float. *)
|
|
|
|
|
|
|
|
val get_double: t -> int -> float
|
|
|
|
(** [get_float buff i] reads 8 bytes at offset i as an IEEE754 double. *)
|
|
|
|
|
|
|
|
val set_int16: t -> int -> int -> unit
|
|
|
|
(** [set_int16 buff i v] writes the least significant 16 bits of [v]
|
|
|
|
to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
val set_int32: t -> int -> int32 -> unit
|
|
|
|
(** [set_int32 buff i v] writes [v] to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
val set_int64: t -> int -> int64 -> unit
|
|
|
|
(** [set_int64 buff i v] writes [v] to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
val set_float: t -> int -> float -> unit
|
|
|
|
(** [set_float buff i v] writes [v] to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
val set_double: t -> int -> float -> unit
|
|
|
|
(** [set_double buff i v] writes [v] to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
module LE: sig
|
|
|
|
|
|
|
|
(** Functions reading according to Little Endian byte order *)
|
|
|
|
|
|
|
|
val get_uint16: t -> int -> int
|
|
|
|
(** [get_uint16 buff i] reads 2 bytes at offset i as an unsigned int
|
|
|
|
of 16 bits. i.e. It returns a value between 0 and 2^16-1 *)
|
|
|
|
|
|
|
|
val get_int16: t -> int -> int
|
|
|
|
(** [get_int16 buff i] reads 2 byte at offset i as a signed int of
|
|
|
|
16 bits. i.e. It returns a value between -2^15 and 2^15-1 *)
|
|
|
|
|
|
|
|
val get_int32: t -> int -> int32
|
|
|
|
(** [get_int32 buff i] reads 4 bytes at offset i as an int32. *)
|
|
|
|
|
|
|
|
val get_int64: t -> int -> int64
|
|
|
|
(** [get_int64 buff i] reads 8 bytes at offset i as an int64. *)
|
|
|
|
|
|
|
|
val set_int16: t -> int -> int -> unit
|
|
|
|
(** [set_int16 buff i v] writes the least significant 16 bits of [v]
|
|
|
|
to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
val set_int32: t -> int -> int32 -> unit
|
|
|
|
(** [set_int32 buff i v] writes [v] to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
val set_int64: t -> int -> int64 -> unit
|
|
|
|
(** [set_int64 buff i v] writes [v] to [buff] at offset [i] *)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
val (=) : t -> t -> bool
|
|
|
|
val (<>) : t -> t -> bool
|
|
|
|
val (<) : t -> t -> bool
|
|
|
|
val (<=) : t -> t -> bool
|
|
|
|
val (>=) : t -> t -> bool
|
|
|
|
val (>) : t -> t -> bool
|
|
|
|
val compare : t -> t -> int
|
|
|
|
|
|
|
|
val concat: t -> t -> t
|
2017-08-20 08:07:07 +04:00
|
|
|
(** Returns a new array with adjacent copies of the two input arrays **)
|