module type FITTING =The output signature of the functorsig
..end
Fitting.Make
.type ('a -> 'b)
t
'a
and produces
values of type 'b
.type 'a
elem
Fitting.SHTREAM
.type
initial
Fitting.FITTING.elem
for specifying
the type of elements that fittings know how to read from
external processes. That is, fittings constructed from external
processes produce values of type initial elem
.
This type comes from the functor parameter Fitting.SHTREAM
.
type 'a
shtream
Shtream.t
type 'a
coshtream
Shtream.co_t
typeprocref =
Channel.procref
Channel.procref
typetext =
initial elem
val (-|) : ('a -> 'b) t ->
('b -> 'c) t -> ('a -> 'c) t
val pipe : ('a -> 'b) t ->
('b -> 'c) t -> ('a -> 'c) t
Fitting.FITTING.(-|)
Producers are useful for starting off pipelines.
val from_file : string -> ('a -> text) t
from_file file -| fitting
is like % fitting < file
val from_null : ('a -> text) t
from_null -| fitting
is like % fitting < /dev/null
val from_gen : Channel.dup_in_source -> ('a -> text) t
Channel.dup_in_source
.val from_shtream : 'a shtream -> ('b -> 'a) t
Consumers are useful for ending pipelines.
val to_file : ?clobber:Channel.clobber_spec ->
string -> ('a elem -> 'b) t
Channel.clobber_spec
for open modes.
fitting -| to_file file
is like % fitting > file
val to_null : ('a elem -> 'b) t
fitting -| to_null
is like % fitting > /dev/null
val to_stderr : ('a elem -> 'b) t
fitting -| to_stderr
is like % fitting >&2
val to_gen : Channel.dup_out_source -> ('a elem -> 'b) t
Channel.dup_out_source
.val to_coshtream : 'a coshtream -> ('a -> 'b) t
val command : string -> ('a elem -> text) t
Channel.open_command
.val program : ?path:bool ->
string ->
?argv0:string ->
string list ->
('a elem -> text) t
Channel.open_program
.val thunk : (unit -> unit) ->
('a elem -> text) t
val sed : ('a -> 'b) -> ('a -> 'b) t
val grep : ('a -> bool) -> ('a -> 'a) t
val trans : ('a shtream -> 'b shtream) ->
('a -> 'b) t
val sed_string : (string -> 'a) -> ('b elem -> 'a) t
Fitting.FITTING.sed
with a lift from strings.val grep_string : (string -> bool) ->
('a elem -> 'a elem) t
val (/</) : (text -> 'a) t ->
Channel.dup_spec -> (text -> 'a) t
fitting /</ dups
performs the redirections specifed by dups
for the extent
of fitting
. For example,
fitting /</ [ 4 %<& 0; 0 %< "file" ]
is like
% fitting 4<&0 <file
val redirect_in : Channel.dup_spec ->
(text -> 'a) t ->
(text -> 'a) t
Fitting.FITTING.(/</)
val (/>/) : ('a -> 'b elem) t ->
Channel.dup_spec -> ('a -> 'b elem) t
fitting />/ dups
performs the redirections specifed by dups
for the extent
of fitting
. For example,
fitting />/ [ 2 %>& 1 ]
is like
% fitting 2>&1
val redirect_out : Channel.dup_spec ->
('a -> 'b elem) t ->
('a -> 'b elem) t
Fitting.FITTING.(/>/)
val (^>>=) : ('a -> 'b) t ->
(Proc.status -> ('a -> 'b) t) -> ('a -> 'b) t
The exit code of external processes is the actual exit code as
reported by Proc.wait
. The exit code of a shtream is 0 unless
the shtream terminates by calling Shtream.fail_with n
, in which
case the code in n
. Or, Fitting.FITTING.yield
can return an exit code
directly.
val seq : ('a -> 'b) t ->
(Proc.status -> ('a -> 'b) t) -> ('a -> 'b) t
Fitting.FITTING.(^>>=)
val (^>>) : ('a -> 'b) t ->
('a -> 'b) t -> ('a -> 'b) t
a ^>> b
is exactly a ^>>= fun _ -> b
.
This is like ;
in the shell.val (&&^) : ('a -> 'b) t ->
('a -> 'b) t -> ('a -> 'b) t
&&
in the shell.val (||^) : ('a -> 'b) t ->
('a -> 'b) t -> ('a -> 'b) t
||
in the shell.val (~>>) : ('a -> 'b) t list -> ('a -> 'b) t
Fitting.FITTING.(^>>)
.val (~&&) : ('a -> 'b) t list -> ('a -> 'b) t
Fitting.FITTING.(&&^)
.
Terminates the sequence when any component fails.val (~||) : ('a -> 'b) t list -> ('a -> 'b) t
Fitting.FITTING.(||^)
.
Terminates the sequence when any component succeeds.val commands : string list ->
(text -> text) t
val yield : Proc.status -> ('a -> 'b) t
val caml : (unit -> ('a -> 'b) t) -> ('a -> 'b) t
Fitting.FITTING.caml
constructs a new fitting that,
when run, forces the thunk and runs the resulting fitting.
This allows for Ocaml side-effects at arbitrary points during a
fitting.val (^&=) : (text -> 'a elem) t ->
(Proc.t -> ('b -> 'c) t) -> ('b -> 'c) t
bg ^&= fg
runs bg
in the background, passed its Proc.t
to fg
, and runs
the fitting returned by fg
(in the foreground).
Notice that the bg
must have input type Fitting.FITTING.text
; it will
construct its own input shtream from the standard input.
val par : (text -> 'a elem) t ->
(Proc.t -> ('b -> 'c) t) -> ('b -> 'c) t
Fitting.FITTING.(^&=)
val (^&) : (text -> 'a elem) t ->
('b -> 'c) t -> ('b -> 'c) t
Proc.t
. This
backgrounds its first argument and then continues with its second
argument in the foreground.val run_source : (text -> 'a) t -> 'a shtream
val run_sink : ('a -> 'b elem) t ->
'a coshtream
val run_list : (text -> 'a) t -> 'a list
val run_shtream : ('a -> 'b) t ->
'a shtream -> 'b shtream
val run_in : ?procref:procref ->
(text -> 'a elem) t ->
Pervasives.in_channel
in_channel
. The fitting
will take its input from the standard input. If ?procref
is
provided, the Proc.t
of the child process will be stashed.val run_out : ?procref:procref ->
(text -> 'a elem) t ->
Pervasives.out_channel
out_channel
. The fitting
will send its output from the standard output. If ?procref
is
provided, the Proc.t
of the child process will be stashed.val run_backquote : ?procref:procref ->
(text -> 'a elem) t -> string
?procref
.val run_bg : (text -> 'a elem) t -> Proc.t
Proc.t
.
The fitting will take its input from the standard input and send
its output to the standard output.val run : (text -> 'a elem) t ->
Proc.status
Fitting.FITTING.elem
conversions provided to the
Fitting.Make
functor by AnyShtream.ELEM
. The conversion
AnyShtream.ELEM.string_of
or AnyShtream.ELEM.of_string
is completely applied for each of these conversions, so no state
(should there be any) is retained in between calls.val string_of_elem : 'a elem -> string
val elem_of_string : string -> text
val int_of_elem : 'a elem -> int
val elem_of_int : int -> text
val char_of_elem : 'a elem -> char
val elem_of_char : char -> text
val float_of_elem : 'a elem -> float
val elem_of_float : float -> text
val bool_of_elem : 'a elem -> bool
val elem_of_bool : bool -> text