dune/src/context.ml

496 lines
18 KiB
OCaml
Raw Normal View History

2016-12-02 13:54:32 +00:00
open Import
open Fiber.O
2016-12-02 13:54:32 +00:00
module Kind = struct
2017-02-26 21:28:30 +00:00
module Opam = struct
type t =
{ root : string
; switch : string
}
end
type t = Default | Opam of Opam.t
2017-03-10 11:22:01 +00:00
let sexp_of_t : t -> Sexp.t = function
| Default -> Sexp.unsafe_atom_of_string "default"
2017-03-10 11:22:01 +00:00
| Opam o ->
Sexp.To_sexp.(record [ "root" , string o.root
; "switch", string o.switch
2017-03-10 11:22:01 +00:00
])
2016-12-02 13:54:32 +00:00
end
type t =
2017-02-25 00:28:10 +00:00
{ name : string
; kind : Kind.t
; profile : string
; merlin : bool
2016-12-02 13:54:32 +00:00
; for_host : t option
; implicit : bool
2016-12-02 13:54:32 +00:00
; build_dir : Path.t
; path : Path.t list
; toplevel_path : Path.t option
2016-12-02 13:54:32 +00:00
; ocaml_bin : Path.t
; ocaml : Path.t
; ocamlc : Path.t
; ocamlopt : Path.t option
; ocamldep : Path.t
; ocamlmklib : Path.t
2018-03-10 14:15:02 +00:00
; env : Env.t
2017-02-28 06:01:27 +00:00
; findlib : Findlib.t
; findlib_toolchain : string option
2016-12-02 13:54:32 +00:00
; arch_sixtyfour : bool
2017-02-28 06:01:27 +00:00
; opam_var_cache : (string, string) Hashtbl.t
; natdynlink_supported : bool
2018-03-06 17:52:28 +00:00
; ocaml_config : Ocaml_config.t
; version_string : string
; version : int * int * int
2016-12-02 13:54:32 +00:00
; stdlib_dir : Path.t
; ccomp_type : string
2017-03-31 16:31:55 +00:00
; c_compiler : string
; ocamlc_cflags : string list
; ocamlopt_cflags : string list
; bytecomp_c_libraries : string list
; native_c_libraries : string list
2018-03-06 17:48:06 +00:00
; cc_profile : string list
2016-12-02 13:54:32 +00:00
; architecture : string
; system : string
; ext_obj : string
; ext_asm : string
; ext_lib : string
; ext_dll : string
; ext_exe : string
2016-12-02 13:54:32 +00:00
; os_type : string
; default_executable_name : string
; host : string
; target : string
; flambda : bool
; exec_magic_number : string
; cmi_magic_number : string
; cmo_magic_number : string
; cma_magic_number : string
; cmx_magic_number : string
; cmxa_magic_number : string
; ast_impl_magic_number : string
; ast_intf_magic_number : string
; cmxs_magic_number : string
; cmt_magic_number : string
; which_cache : (string, Path.t option) Hashtbl.t
2016-12-02 13:54:32 +00:00
}
2017-03-10 11:22:01 +00:00
let sexp_of_t t =
let open Sexp.To_sexp in
let path = Path.sexp_of_t in
record
[ "name", string t.name
2017-03-10 11:22:01 +00:00
; "kind", Kind.sexp_of_t t.kind
; "profile", string t.profile
2017-03-10 11:22:01 +00:00
; "merlin", bool t.merlin
; "for_host", option string (Option.map t.for_host ~f:(fun t -> t.name))
2017-03-10 11:22:01 +00:00
; "build_dir", path t.build_dir
; "toplevel_path", option path t.toplevel_path
; "ocaml_bin", path t.ocaml_bin
; "ocaml", path t.ocaml
; "ocamlc", path t.ocamlc
; "ocamlopt", option path t.ocamlopt
; "ocamldep", path t.ocamldep
; "ocamlmklib", path t.ocamlmklib
; "env", Env.sexp_of_t (Env.diff t.env Env.initial)
2017-03-10 11:22:01 +00:00
; "findlib_path", list path (Findlib.path t.findlib)
; "arch_sixtyfour", bool t.arch_sixtyfour
; "natdynlink_supported", bool t.natdynlink_supported
; "opam_vars", string_hashtbl string t.opam_var_cache
2018-03-06 17:52:28 +00:00
; "ocaml_config", Ocaml_config.sexp_of_t t.ocaml_config
; "which", string_hashtbl (option path) t.which_cache
2017-03-10 11:22:01 +00:00
]
let compare a b = compare a.name b.name
2017-02-24 15:41:52 +00:00
let opam_config_var ~env ~cache var =
match Hashtbl.find cache var with
| Some _ as x -> Fiber.return x
2017-02-24 15:41:52 +00:00
| None ->
match Bin.opam with
| None -> Fiber.return None
2017-02-24 15:41:52 +00:00
| Some fn ->
Process.run_capture (Accept All) fn ~env
["config"; "var"; var]
>>| function
| Ok s ->
let s = String.trim s in
Hashtbl.add cache var s;
Some s
| Error _ -> None
2017-02-24 15:41:52 +00:00
let which ~cache ~path x =
Hashtbl.find_or_add cache x ~f:(Bin.which ~path)
let ocamlpath_sep =
if Sys.cygwin then
(* because that's what ocamlfind expects *)
';'
else
Bin.path_sep
let create ~(kind : Kind.t) ~path ~env ~name ~merlin ~targets ~profile () =
2017-02-24 15:41:52 +00:00
let opam_var_cache = Hashtbl.create 128 in
(match kind with
| Opam { root; _ } ->
Hashtbl.add opam_var_cache "root" root
2017-02-24 15:41:52 +00:00
| Default -> ());
2016-12-02 13:54:32 +00:00
let prog_not_found_in_path prog =
2017-03-31 16:31:55 +00:00
Utils.program_not_found prog ~context:name
2016-12-02 13:54:32 +00:00
in
let which_cache = Hashtbl.create 128 in
let which x = which ~cache:which_cache ~path x in
let findlib_config_path = lazy (
match which "ocamlfind" with
| None -> prog_not_found_in_path "ocamlfind"
| Some fn ->
(* When OCAMLFIND_CONF is set, "ocamlfind printconf" does print
the contents of the variable, but "ocamlfind printconf conf"
still prints the configuration file set at the configuration
time of ocamlfind, sigh... *)
(match Env.get env "OCAMLFIND_CONF" with
| Some s -> Fiber.return s
| None -> Process.run_capture_line ~env Strict fn ["printconf"; "conf"])
>>| Path.of_filename_relative_to_initial_cwd)
2016-12-02 13:54:32 +00:00
in
let create_one ~name ~implicit ?findlib_toolchain ?host ~merlin () =
(match findlib_toolchain with
| None -> Fiber.return None
| Some toolchain ->
Lazy.force findlib_config_path >>| fun path ->
Some (Findlib.Config.load path ~toolchain ~context:name))
>>= fun findlib_config ->
let get_tool_using_findlib_config prog =
Option.bind findlib_config ~f:(fun conf ->
match Findlib.Config.get conf prog with
Refactor library management (#516) Lib module ---------- We have a new module Lib that replaces Lib, parts of Lib_db and parts of Findlib. It is used to manage all libraries (internal and extrernal). Lib.t represent a completely resolved library, i.e. where all the dependencies have been resolved. Lib.Compile is used to provide what is necessary to build the library itself. Lib.Meta provides what is necessary to generate the META file for the library. We also have library databases represented as Lib.DB.t. A library database is simply a mapping from names to Lib.t values and and created from a resolve function that looks up a name and return a Lib.Info.t. A Lib.Info.t is the same as a Lib.t except that dependencies are not resolved. A library database can have a parent database that is used to lookup names that are not found in the current database. In practice we have the following hierarchy: 1. For every scope, we have a library database that holds all the libraries of this scope. In this DB, a library can be referred by either it's name or public name 2. the parent of each of these databases is a database that holds all the public libraries of the workspace. In this DB libraries must be referred by their public name 3. the parent of this DB is for installed libraries (1) databases are accessible via Scope.libs (Super_context.find_scope_by_{name,dir} sctx xxx) (2) is accessible via Super_context.public_libs sctx (3) is accessible via Super_context.installed_libs sctx The dependencies of a library are always resolved inside the DB it is part of. When we compute a transitive closure, we check that we don't have two libraries from two different DB with the same name. So for instance linting Base should now supported. Jbuild.Scope_info ----------------- Jbuild.Scope was renamed Jbuild.Scope_info Scope module ------------ This replaces Lib_db. A Scope.t is now just a pair of a Jbuild.Scope_info.t and a Lib.DB.t. Scope.DB.t is an object used to lookup scopes by either name or directory. We no longer have an external scope or special anonymous scope. Instead one should use Super_context.installed_libs or Super_context.public_libs depending on the context.
2018-02-20 11:46:10 +00:00
| None -> None
| Some s ->
match Filename.analyze_program_name s with
| In_path | Relative_to_current_dir -> which s
| Absolute -> Some (Path.of_filename_relative_to_initial_cwd s))
in
let ocamlc =
match get_tool_using_findlib_config "ocamlc" with
| Some x -> x
| None ->
match which "ocamlc" with
| Some x -> x
| None -> prog_not_found_in_path "ocamlc"
in
let dir = Path.parent_exn ocamlc in
let ocaml_tool_not_found prog =
die "ocamlc found in %s, but %s/%s doesn't exist (context: %s)"
(Path.to_string dir) (Path.to_string dir) prog name
in
let get_ocaml_tool prog =
match get_tool_using_findlib_config prog with
| None -> Bin.best_prog dir prog
| Some _ as x -> x
in
let get_ocaml_tool_exn prog =
match get_ocaml_tool prog with
| None -> ocaml_tool_not_found prog
| Some fn -> fn
in
let build_dir = Path.relative Path.build_dir name in
let ocamlpath =
match
let var = "OCAMLPATH" in
match kind, findlib_toolchain with
| Default, None -> Env.get env var
| _ ->
(* If we are not in the default context, we can only use the
OCAMLPATH variable if it is specific to this build
context *)
(* CR-someday diml: maybe we should actually clear OCAMLPATH
in other build contexts *)
match Env.get env var, Env.get Env.initial var with
| None , None -> None
| Some s, None -> Some s
| None , Some _ -> None
| Some x, Some y -> Option.some_if (x <> y) x
with
| None -> []
| Some s -> Bin.parse_path s ~sep:ocamlpath_sep
in
let findlib_path () =
match kind, findlib_toolchain, Setup.library_path with
| Default, None, Some l ->
Fiber.return
(ocamlpath @ List.map l ~f:Path.of_filename_relative_to_initial_cwd)
| _ ->
(* If ocamlfind is present, it has precedence over everything else. *)
match which "ocamlfind" with
| Some fn ->
let args =
let args = ["printconf"; "path"] in
match findlib_toolchain with
| None -> args
| Some s -> "-toolchain" :: s :: args
in
Process.run_capture_lines ~env Strict fn args
>>| fun l ->
(* Don't prepend the contents of [OCAMLPATH] since findlib
does it already *)
List.map l ~f:Path.of_filename_relative_to_initial_cwd
| None ->
(* If there no ocamlfind in the PATH, check if we have opam
and assume a standard opam setup *)
opam_config_var ~env ~cache:opam_var_cache "lib"
>>| function
| Some s -> ocamlpath @ [Path.of_filename_relative_to_initial_cwd s]
| None ->
(* If neither opam neither ocamlfind are present, assume
that libraries are [dir ^ "/../lib"] *)
ocamlpath @ [Path.relative (Path.parent_exn dir) "lib"]
in
2018-03-06 17:48:06 +00:00
let ocaml_config_ok_exn = function
| Ok x -> x
| Error msg ->
die "Failed to parse the output of '%s -config':@\n\
%s"
(Path.to_string ocamlc) msg
in
Fiber.fork_and_join
findlib_path
(fun () ->
Process.run_capture_lines ~env Strict ocamlc ["-config"]
2018-03-06 17:48:06 +00:00
>>| fun lines ->
let open Result.O in
ocaml_config_ok_exn
2018-03-06 17:52:28 +00:00
(Ocaml_config.Vars.of_lines lines >>= Ocaml_config.make))
>>= fun (findlib_path, ocfg) ->
let version = Ocaml_config.version ocfg in
let env =
(* See comment in ansi_color.ml for setup_env_for_colors. For
OCaml < 4.05, OCAML_COLOR is not supported so we use
OCAMLPARAM. OCaml 4.02 doesn't support 'color' in OCAMLPARAM,
so we just don't force colors with 4.02. *)
if !Clflags.capture_outputs
&& Lazy.force Colors.stderr_supports_colors
&& version >= (4, 03, 0)
&& version < (4, 05, 0) then
let value =
2018-03-11 04:17:09 +00:00
match Env.get env "OCAMLPARAM" with
| None -> "color=always,_"
| Some s -> "color=always," ^ s
in
Env.add env ~var:"OCAMLPARAM" ~value
else
env
in
let env =
let cwd = Sys.getcwd () in
let extend_var var ?(path_sep=Bin.path_sep) v =
let v = Filename.concat cwd (Path.to_string v) in
match Env.get env var with
| None -> (var, v)
| Some prev -> (var, sprintf "%s%c%s" v path_sep prev)
in
let vars =
[ extend_var "CAML_LD_LIBRARY_PATH"
(Path.relative
(Config.local_install_dir ~context:name)
"lib/stublibs")
; extend_var "OCAMLPATH" ~path_sep:ocamlpath_sep
(Path.relative
(Config.local_install_dir ~context:name)
"lib")
; extend_var "MANPATH"
(Config.local_install_man_dir ~context:name)
; "DUNE_CONFIGURATOR", (Path.to_string ocamlc)
]
in
Env.extend env ~vars:(Env.Map.of_list_exn vars)
|> Env.update ~var:"PATH" ~f:(fun _ ->
match host with
| None ->
let _key, path =
extend_var "PATH" (Config.local_install_bin_dir ~context:name) in
Some path
| Some host ->
Env.get host.env "PATH"
)
|> Env.extend_env (
Option.value ~default:Env.empty
(Option.map findlib_config ~f:Findlib.Config.env)
)
in
2018-03-06 17:52:28 +00:00
let stdlib_dir = Path.of_string (Ocaml_config.standard_library ocfg) in
let natdynlink_supported = Ocaml_config.natdynlink_supported ocfg in
let version = Ocaml_config.version ocfg in
let version_string = Ocaml_config.version_string ocfg in
let arch_sixtyfour = Ocaml_config.word_size ocfg = 64 in
Fiber.return
{ name
; implicit
; kind
; profile
; merlin
; for_host = host
; build_dir
; path
2018-03-10 14:15:02 +00:00
; toplevel_path =
Option.map (Env.get env "OCAML_TOPLEVEL_PATH")
~f:Path.of_filename_relative_to_initial_cwd
; ocaml_bin = dir
; ocaml = (match which "ocaml" with Some p -> p | None -> prog_not_found_in_path "ocaml")
; ocamlc
; ocamlopt = get_ocaml_tool "ocamlopt"
; ocamldep = get_ocaml_tool_exn "ocamldep"
; ocamlmklib = get_ocaml_tool_exn "ocamlmklib"
; env
; findlib = Findlib.create ~stdlib_dir ~path:findlib_path
; findlib_toolchain
; arch_sixtyfour
; opam_var_cache
; natdynlink_supported
; stdlib_dir
2018-03-06 17:52:28 +00:00
; ocaml_config = ocfg
; version_string
; version
2018-03-06 17:52:28 +00:00
; ccomp_type = Ocaml_config.ccomp_type ocfg
; c_compiler = Ocaml_config.c_compiler ocfg
; ocamlc_cflags = Ocaml_config.ocamlc_cflags ocfg
; ocamlopt_cflags = Ocaml_config.ocamlopt_cflags ocfg
; bytecomp_c_libraries = Ocaml_config.bytecomp_c_libraries ocfg
; native_c_libraries = Ocaml_config.native_c_libraries ocfg
; cc_profile = Ocaml_config.cc_profile ocfg
; architecture = Ocaml_config.architecture ocfg
; system = Ocaml_config.system ocfg
; ext_obj = Ocaml_config.ext_obj ocfg
; ext_asm = Ocaml_config.ext_asm ocfg
; ext_lib = Ocaml_config.ext_lib ocfg
; ext_dll = Ocaml_config.ext_dll ocfg
; ext_exe = Ocaml_config.ext_exe ocfg
; os_type = Ocaml_config.os_type ocfg
; default_executable_name = Ocaml_config.default_executable_name ocfg
; host = Ocaml_config.host ocfg
; target = Ocaml_config.target ocfg
; flambda = Ocaml_config.flambda ocfg
; exec_magic_number = Ocaml_config.exec_magic_number ocfg
; cmi_magic_number = Ocaml_config.cmi_magic_number ocfg
; cmo_magic_number = Ocaml_config.cmo_magic_number ocfg
; cma_magic_number = Ocaml_config.cma_magic_number ocfg
; cmx_magic_number = Ocaml_config.cmx_magic_number ocfg
; cmxa_magic_number = Ocaml_config.cmxa_magic_number ocfg
; ast_impl_magic_number = Ocaml_config.ast_impl_magic_number ocfg
; ast_intf_magic_number = Ocaml_config.ast_intf_magic_number ocfg
; cmxs_magic_number = Ocaml_config.cmxs_magic_number ocfg
; cmt_magic_number = Ocaml_config.cmt_magic_number ocfg
; which_cache
}
in
let implicit = not (List.mem ~set:targets Workspace.Context.Target.Native) in
create_one () ~implicit ~name ~merlin >>= fun native ->
Fiber.parallel_map targets ~f:(function
| Native -> Fiber.return None
| Named findlib_toolchain ->
let name = sprintf "%s.%s" name findlib_toolchain in
create_one () ~implicit:false ~name ~findlib_toolchain ~host:native
~merlin:false
>>| fun x -> Some x)
>>| fun others ->
native :: List.filter_map others ~f:(fun x -> x)
2016-12-02 13:54:32 +00:00
2017-02-24 15:41:52 +00:00
let opam_config_var t var = opam_config_var ~env:t.env ~cache:t.opam_var_cache var
let default ?(merlin=true) ~env ~targets () =
create ~kind:Default ~path:Bin.path ~env ~name:"default" ~merlin ~targets ()
2016-12-02 13:54:32 +00:00
let create_for_opam ?root ~env ~targets ~profile ~switch ~name
?(merlin=false) () =
2016-12-02 13:54:32 +00:00
match Bin.opam with
2017-03-31 16:31:55 +00:00
| None -> Utils.program_not_found "opam"
2016-12-02 13:54:32 +00:00
| Some fn ->
(match root with
| Some root -> Fiber.return root
2016-12-02 13:54:32 +00:00
| None ->
Process.run_capture_line Strict ~env fn ["config"; "var"; "root"])
2016-12-02 13:54:32 +00:00
>>= fun root ->
Process.run_capture ~env Strict fn
2016-12-02 13:54:32 +00:00
["config"; "env"; "--root"; root; "--switch"; switch; "--sexp"]
>>= fun s ->
let vars =
2017-12-12 10:16:17 +00:00
Usexp.parse_string ~fname:"<opam output>" ~mode:Single s
|> Sexp.Of_sexp.(parse (list (pair string string)) Univ_map.empty)
|> Env.Map.of_list_multi
|> Env.Map.mapi ~f:(fun var values ->
match List.rev values with
| [] -> assert false
| [x] -> x
| x :: _ ->
Format.eprintf
"@{<warning>Warning@}: variable %S present multiple times in the output of:\n\
@{<details>%s@}@."
var
(String.concat ~sep:" "
(List.map ~f:quote_for_shell
[Path.to_string fn; "config"; "env"; "--root"; root;
"--switch"; switch; "--sexp"]));
x)
2016-12-02 13:54:32 +00:00
in
let path =
match Env.Map.find vars "PATH" with
| None -> Bin.path
2016-12-02 13:54:32 +00:00
| Some s -> Bin.parse_path s
in
let env = Env.extend env ~vars in
create ~kind:(Opam { root; switch }) ~profile ~targets ~path ~env ~name
~merlin ()
let create ?merlin ~env def =
match (def : Workspace.Context.t) with
| Default { targets; profile; _ } -> default ~env ~profile ~targets ?merlin ()
| Opam { name; switch; root; targets; profile; _ } ->
create_for_opam ?root ~env ~profile ~switch ~name ?merlin ~targets ()
2016-12-02 13:54:32 +00:00
let which t s = which ~cache:t.which_cache ~path:t.path s
2017-02-24 15:41:52 +00:00
let install_prefix t =
opam_config_var t "prefix" >>| function
| Some x -> Path.of_filename_relative_to_initial_cwd x
| None -> Path.parent_exn t.ocaml_bin
2017-03-01 12:09:57 +00:00
let install_ocaml_libdir t =
match t.kind, t.findlib_toolchain, Setup.library_destdir with
| Default, None, Some d ->
Fiber.return (Some (Path.of_filename_relative_to_initial_cwd d))
| _ ->
(* If ocamlfind is present, it has precedence over everything else. *)
match which t "ocamlfind" with
| Some fn ->
(Process.run_capture_line ~env:t.env Strict fn ["printconf"; "destdir"]
>>| fun s ->
Some (Path.of_filename_relative_to_initial_cwd s))
| None ->
Fiber.return None
2017-03-01 12:09:57 +00:00
let compiler t (mode : Mode.t) =
match mode with
| Byte -> Some t.ocamlc
| Native -> t.ocamlopt
let best_mode t : Mode.t =
match t.ocamlopt with
| Some _ -> Native
| None -> Byte
let cc_g (ctx : t) =
if !Clflags.g && ctx.ccomp_type <> "msvc" then
["-g"]
else
[]