dune/src/module.mli

83 lines
2.1 KiB
OCaml
Raw Normal View History

2016-12-02 13:54:32 +00:00
open! Import
2018-03-03 18:03:37 +00:00
module Name : sig
type t
2018-03-03 18:03:37 +00:00
val add_suffix : t -> string -> t
val t : t Sexp.To_sexp.t
val compare : t -> t -> Ordering.t
val of_string : string -> t
val to_string : t -> string
val pp : Format.formatter -> t -> unit
val pp_quote : Format.formatter -> t -> unit
module Set : Set.S with type elt = t
module Map : Map.S with type key = t
2018-03-03 11:53:04 +00:00
module Top_closure : Top_closure.S with type key := t
2018-03-03 18:03:37 +00:00
end
module Syntax : sig
type t = OCaml | Reason
end
module File : sig
type t =
{ name : string
; syntax: Syntax.t
}
val to_ocaml : t -> t
end
(** Representation of a module. It is guaranteed that at least one of
[impl] or [intf] is set. *)
type t = private
{ name : Name.t (** Name of the module. This is always the
basename of the filename without the
extension. *)
; impl : File.t option
; intf : File.t option
; obj_name : string (** Object name. It is different from [name]
for wrapped modules. *)
2016-12-02 13:54:32 +00:00
}
val make
: ?impl:File.t
-> ?intf:File.t
-> ?obj_name:string
-> Name.t
-> t
2018-03-03 18:03:37 +00:00
val name : t -> Name.t
2016-12-02 13:54:32 +00:00
(** Real unit name once wrapped. This is always a valid module name. *)
2018-03-03 18:03:37 +00:00
val real_unit_name : t -> Name.t
2016-12-02 13:54:32 +00:00
val file : t -> dir: Path.t -> Ml_kind.t -> Path.t option
val cm_source : t -> dir: Path.t -> Cm_kind.t -> Path.t option
val cm_file : t -> obj_dir:Path.t -> Cm_kind.t -> Path.t option
2018-01-21 21:36:30 +00:00
val cmt_file : t -> obj_dir:Path.t -> Ml_kind.t -> Path.t option
2017-05-11 17:09:44 +00:00
2018-02-07 13:03:13 +00:00
val obj_file : t -> obj_dir:Path.t -> ext:string -> Path.t
(** Same as [cm_file] but doesn't raise if [cm_kind] is [Cmo] or [Cmx]
and the module has no implementation. *)
val cm_file_unsafe : t -> obj_dir:Path.t -> Cm_kind.t -> Path.t
val odoc_file : t -> doc_dir:Path.t -> Path.t
2017-05-11 17:09:44 +00:00
(** Either the .cmti, or .cmt if the module has no interface *)
2018-01-21 21:36:30 +00:00
val cmti_file : t -> obj_dir:Path.t -> Path.t
val iter : t -> f:(Ml_kind.t -> File.t -> unit) -> unit
val has_impl : t -> bool
(** Prefix the object name with the library name. *)
val with_wrapper : t -> libname:string -> t
val map_files : t -> f:(Ml_kind.t -> File.t -> File.t) -> t