/usr/lib/ocaml/extlib/IO.mli is in libextlib-ocaml-dev 1.7.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | (*
* IO - Abstract input/output
* Copyright (C) 2003 Nicolas Cannasse
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version,
* with the special exception on linking described in file LICENSE.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*)
(** High-order abstract I/O.
IO module simply deals with abstract inputs/outputs. It provides a
set of methods for working with these IO as well as several
constructors that enable to write to an underlying channel, buffer,
or enum.
*)
open ExtBytes
type input
(** The abstract input type. *)
type 'a output
(** The abstract output type, ['a] is the accumulator data, it is returned
when the [close_out] function is called. *)
exception No_more_input
(** This exception is raised when reading on an input with the [read] or
[nread] functions while there is no available token to read. *)
exception Input_closed
(** This exception is raised when reading on a closed input. *)
exception Output_closed
(** This exception is raised when reading on a closed output. *)
(** {6 Standard API} *)
val read : input -> char
(** Read a single char from an input or raise [No_more_input] if
no input available. *)
val nread : input -> int -> Bytes.t
(** [nread i n] reads a byte sequence of size up to [n] from an input.
The function will raise [No_more_input] if no input is available.
It will raise [Invalid_argument] if [n] < 0. *)
val really_nread : input -> int -> Bytes.t
(** [really_nread i n] reads a byte sequence of exactly [n] characters
from the input. Raises [No_more_input] if at least [n] characters are
not available. Raises [Invalid_argument] if [n] < 0. *)
val nread_string : input -> int -> string
(** as [nread], but reads a string. *)
val really_nread_string : input -> int -> string
(** as [really_nread], but reads a string. *)
val input : input -> Bytes.t -> int -> int -> int
(** [input i b p l] reads up to [l] characters from the given input, storing
them in buffer [b], starting at character number [p]. It returns the actual
number of characters read or raise [No_more_input] if no character can be
read. It will raise [Invalid_argument] if [p] and [l] do not designate a
valid subsequence of [b]. *)
val really_input : input -> Bytes.t -> int -> int -> int
(** [really_input i b p l] reads exactly [l] characters from the given input,
storing them in the buffer [b], starting at position [p]. For consistency with
{!IO.input} it returns [l]. Raises [No_more_input] if at [l] characters are
not available. Raises [Invalid_argument] if [p] and [l] do not designate a
valid subsequence of [b]. *)
val close_in : input -> unit
(** Close the input. It can no longer be read from. *)
val write : 'a output -> char -> unit
(** Write a single char to an output. *)
val nwrite : 'a output -> Bytes.t -> unit
(** Write a byte sequence to an output. *)
val nwrite_string : 'a output -> string -> unit
(** Write a string to an output. *)
val output : 'a output -> Bytes.t -> int -> int -> int
(** [output o b p l] writes up to [l] characters from byte sequence [b], starting at
offset [p]. It returns the number of characters written. It will raise
[Invalid_argument] if [p] and [l] do not designate a valid subsequence of [b]. *)
val really_output : 'a output -> Bytes.t -> int -> int -> int
(** [really_output o b p l] writes exactly [l] characters from byte sequence [b] onto
the the output, starting with the character at offset [p]. For consistency with
{!IO.output} it returns [l]. Raises [Invalid_argument] if [p] and [l] do not
designate a valid subsequence of [b]. *)
val flush : 'a output -> unit
(** Flush an output. *)
val close_out : 'a output -> 'a
(** Close the output and return its accumulator data.
It can no longer be written. *)
(** {6 Creation of IO Inputs/Outputs} *)
val input_string : string -> input
(** Create an input that will read from a string. *)
val input_bytes : Bytes.t -> input
(** Create an input that will read from a byte sequence. *)
val output_string : unit -> string output
(** Create an output that will write into a string in an efficient way.
When closed, the output returns all the data written into it. *)
val output_bytes : unit -> Bytes.t output
(** Create an output that will write into a byte sequence in an efficient way.
When closed, the output returns all the data written into it. *)
val output_strings : unit -> string list output
(** Create an output that will write into a string in an efficient way.
When closed, the output returns all the data written into it.
Several strings are used in case the output size excess max_string_length
*)
val input_channel : in_channel -> input
(** Create an input that will read from a channel. *)
val output_channel : out_channel -> unit output
(** Create an output that will write into a channel. *)
val input_enum : char Enum.t -> input
(** Create an input that will read from an [enum]. *)
val output_enum : unit -> char Enum.t output
(** Create an output that will write into an [enum]. The
final enum is returned when the output is closed. *)
val create_in :
read:(unit -> char) ->
input:(Bytes.t -> int -> int -> int) -> close:(unit -> unit) -> input
(** Fully create an input by giving all the needed functions. *)
val create_out :
write:(char -> unit) ->
output:(Bytes.t -> int -> int -> int) ->
flush:(unit -> unit) -> close:(unit -> 'a) -> 'a output
(** Fully create an output by giving all the needed functions. *)
(** {6 Utilities} *)
val scanf : input -> ('a, 'b, 'c, 'd) Scanf.scanner
(** The scanf function works for any input. *)
val printf : 'a output -> ('b, unit, string, unit) format4 -> 'b
(** The printf function works for any output. *)
val read_all : input -> string
(** read all the contents of the input until [No_more_input] is raised. *)
val pipe : unit -> input * unit output
(** Create a pipe between an input and an ouput. Data written from
the output can be read from the input. *)
val pos_in : input -> input * (unit -> int)
(** Create an input that provide a count function of the number of Bytes.t
read from it. *)
val pos_out : 'a output -> 'a output * (unit -> int)
(** Create an output that provide a count function of the number of Bytes.t
written through it. *)
external cast_output : 'a output -> unit output = "%identity"
(** You can safely transform any output to an unit output in a safe way
by using this function. *)
(** {6 Binary files API}
Here is some API useful for working with binary files, in particular
binary files generated by C applications. By default, encoding of
multibyte integers is low-endian. The BigEndian module provide multibyte
operations with other encoding.
*)
exception Overflow of string
(** Exception raised when a read or write operation cannot be completed. *)
val read_byte : input -> int
(** Read an unsigned 8-bit integer. *)
val read_signed_byte : input -> int
(** Read an signed 8-bit integer. *)
val read_ui16 : input -> int
(** Read an unsigned 16-bit word. *)
val read_i16 : input -> int
(** Read a signed 16-bit word. *)
val read_i32 : input -> int
(** Read a signed 32-bit integer. Raise [Overflow] if the
read integer cannot be represented as a Caml 31-bit integer. *)
val read_real_i32 : input -> int32
(** Read a signed 32-bit integer as an OCaml int32. *)
val read_i64 : input -> int64
(** Read a signed 64-bit integer as an OCaml int64. *)
val read_float32 : input -> float
(** Read an IEEE single precision floating point value (32 bits). *)
val read_double : input -> float
(** Read an IEEE double precision floating point value (64 bits). *)
val read_string : input -> string
(** Read a null-terminated string. *)
val read_bytes : input -> Bytes.t
(** Read a null-terminated byte sequence. *)
val read_line : input -> string
(** Read a LF or CRLF terminated string. *)
val write_byte : 'a output -> int -> unit
(** Write an unsigned 8-bit byte. *)
val write_ui16 : 'a output -> int -> unit
(** Write an unsigned 16-bit word. *)
val write_i16 : 'a output -> int -> unit
(** Write a signed 16-bit word. *)
val write_i32 : 'a output -> int -> unit
(** Write a signed 32-bit integer. *)
val write_real_i32 : 'a output -> int32 -> unit
(** Write an OCaml int32. *)
val write_i64 : 'a output -> int64 -> unit
(** Write an OCaml int64. *)
val write_float32 : 'a output -> float -> unit
(** Write an IEEE single precision floating point value (32 bits). *)
val write_double : 'a output -> float -> unit
(** Write an IEEE double precision floating point value (64 bits). *)
val write_string : 'a output -> string -> unit
(** Write a string and append an null character. *)
val write_bytes : 'a output -> Bytes.t -> unit
(** Write a byte sequence and append an null character. *)
val write_line : 'a output -> string -> unit
(** Write a line and append a LF (it might be converted
to CRLF on some systems depending on the underlying IO). *)
(** Same as operations above, but use big-endian encoding *)
module BigEndian :
sig
val read_ui16 : input -> int
val read_i16 : input -> int
val read_i32 : input -> int
val read_real_i32 : input -> int32
val read_i64 : input -> int64
val read_float32 : input -> float
val read_double : input -> float
val write_ui16 : 'a output -> int -> unit
val write_i16 : 'a output -> int -> unit
val write_i32 : 'a output -> int -> unit
val write_real_i32 : 'a output -> int32 -> unit
val write_i64 : 'a output -> int64 -> unit
val write_float32 : 'a output -> float -> unit
val write_double : 'a output -> float -> unit
end
(** {6 Bits API}
This enable you to read and write from an IO bit-by-bit or several bits
at the same time.
*)
type in_bits
type out_bits
exception Bits_error
val input_bits : input -> in_bits
(** Read bits from an input *)
val output_bits : 'a output -> out_bits
(** Write bits to an output *)
val read_bits : in_bits -> int -> int
(** Read up to 31 bits, raise Bits_error if n < 0 or n > 31 *)
val write_bits : out_bits -> nbits:int -> int -> unit
(** Write up to 31 bits represented as a value, raise Bits_error if nbits < 0
or nbits > 31 or the value representation excess nbits. *)
val flush_bits : out_bits -> unit
(** Flush remaining unwritten bits, adding up to 7 bits which values 0. *)
val drop_bits : in_bits -> unit
(** Drop up to 7 buffered bits and restart to next input character. *)
(** {6 Generic IO Object Wrappers}
Theses OO Wrappers have been written to provide easy support of ExtLib
IO by external librairies. If you want your library to support ExtLib
IO without actually requiring ExtLib to compile, you can should implement
the classes [in_channel], [out_channel], [poly_in_channel] and/or
[poly_out_channel] which are the common IO specifications established
for ExtLib, OCamlNet and Camomile.
(see http://www.ocaml-programming.de/tmp/IO-Classes.html for more details).
*)
class in_channel : input ->
object
method input : Bytes.t -> int -> int -> int
method close_in : unit -> unit
end
class out_channel : 'a output ->
object
method output : Bytes.t -> int -> int -> int
method flush : unit -> unit
method close_out : unit -> unit
end
class in_chars : input ->
object
method get : unit -> char
method close_in : unit -> unit
end
class out_chars : 'a output ->
object
method put : char -> unit
method flush : unit -> unit
method close_out : unit -> unit
end
val from_in_channel : #in_channel -> input
val from_out_channel : #out_channel -> unit output
val from_in_chars : #in_chars -> input
val from_out_chars : #out_chars -> unit output
|