Sexp.ProviderSourceA node expressed as an S-expression can be used as a Provider.
Dealing with canonical Sexp.
module Canonical :
Required.DATA_READER
with type t = Sexp.t
and type 'a eff := 'a Eff.t
and type ('a, 'b) arr := ('a, 'b) Task.t
and type extraction_strategy := Metadata.extraction_strategyDescribes a provider for reading Metadata from a DATA_PROVIDER.
Just as the Yocaml package describes a low-level interface for propagating effects, the Yocaml.Eff module, and an interface for composing arrows, via the Yocaml.Pipeline module, the plugin describes two sub-modules to serve the same needs.
module Eff : sig ... endDescribes the low-level interface for reading a file and parsing its metadata described by the type t.
module Pipeline : sig ... endDescribes the arrowized interface for reading a file and parsing its metadata.
As it is possible to describe metadata as a Data_provider.
Produces a type t value from a string.
Converts a value of type t into a value of type Yocaml.Data.t.