ocaml/ocamlbuild/solver.ml

120 lines
4.9 KiB
OCaml

(***********************************************************************)
(* ocamlbuild *)
(* *)
(* Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *)
(* *)
(* Copyright 2007 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the Q Public License version 1.0. *)
(* *)
(***********************************************************************)
(* $Id$ *)
(* Original author: Nicolas Pouillard *)
open My_std
open Log
open Format
open Outcome
type backtrace =
| Leaf of Pathname.t
| Choice of backtrace list
| Depth of Pathname.t * backtrace
| Target of string * backtrace
exception Failed of backtrace
exception Circular of Pathname.t * Pathname.t list
let failed target backtrace =
Resource.Cache.resource_failed target;
raise (Failed backtrace)
let rec pp_repeat f (n, s) =
if n > 0 then (pp_print_string f s; pp_repeat f (n - 1, s))
let rec self depth on_the_go_orig target =
let rules = Rule.get_rules () in
let on_the_go = target :: on_the_go_orig in
dprintf 4 "==%a> %a" pp_repeat (depth, "==") Resource.print target;
if List.mem target on_the_go_orig then raise (Circular(target, on_the_go_orig));
match Resource.Cache.resource_state target with
| Resource.Cache.Bbuilt ->
(dprintf 5 "%a already built" Resource.print target)
| Resource.Cache.Bcannot_be_built ->
(dprintf 5 "%a already failed" Resource.print target; failed target (Leaf target))
| Resource.Cache.Bsuspension(s) ->
(dprintf 5 "%a was suspended -> resuming" Resource.print target;
Resource.Cache.resume_suspension s)
| Resource.Cache.Bnot_built_yet ->
if Resource.is_up_to_date target then
(dprintf 5 "%a exists and up to date" Resource.print target;
Resource.Cache.resource_built target)
else if Pathname.exists_in_source_dir target then
(dprintf 5 "%a exists in source dir -> import it" Resource.print target;
Pathname.import_in_build_dir target;
Resource.Cache.resource_built target;
Resource.Cache.resource_changed target)
else
(* FIXME tags of target
let tags = Configuration.tags_of_target target in
let matching_rules = List.filter_opt (Rule.tags_matches tags) rules in *)
let matching_rules = List.filter_opt (Rule.can_produce target) (*matching_*)rules in
match matching_rules with
| [] -> failed target (Leaf target)
| _ ->
let rec until_works rs backtraces =
match rs with
| [] -> assert false
| r :: rs ->
try
List.iter (force_self (depth + 1) on_the_go) r.Rule.deps;
Rule.call (self_firsts (depth + 1) on_the_go) r
with Failed backtrace ->
if rs = [] then failed target (Depth (target, Choice (backtrace :: backtraces)))
else
let () =
match backtrace with
| Depth (top_prod, _) -> Resource.Cache.clear_resource_failed top_prod
| Target _ | Choice _ | Leaf _ -> ()
in until_works rs (backtrace :: backtraces)
in until_works matching_rules []
and self_first depth on_the_go already_failed rs =
match rs with
| [] -> Bad (Failed (Choice already_failed))
| r :: rs ->
try self depth on_the_go r; Good r
with Failed backtrace -> self_first depth on_the_go (backtrace :: already_failed) rs
and self_firsts depth on_the_go rss =
let results = List.map (self_first depth on_the_go []) rss in
let cmds, konts =
List.fold_right begin fun res ((acc1, acc2) as acc) ->
match res with
| Bad _ -> acc
| Good res ->
match Resource.Cache.get_optional_resource_suspension res with
| None -> acc
| Some (cmd, kont) -> (cmd :: acc1, kont :: acc2)
end results ([], []) in
let count = List.length cmds in
let job_debug = if !Command.jobs = 1 then 10 else 5 in
if count > 1 then dprintf job_debug ">>> PARALLEL: %d" count;
let opt_exn = Command.execute_many cmds in
if count > 1 then dprintf job_debug "<<< PARALLEL";
begin match opt_exn with
| Some(res, exn) ->
List.iter2 (fun res kont -> if res then kont ()) res konts;
Log.finish ~how:`Error ();
raise exn
| None ->
List.iter (fun kont -> kont ()) konts
end;
results
and force_self depth on_the_go x = self depth on_the_go x; Resource.Cache.resume_resource x
let solve = force_self 0 []
let solve_target name rs =
match self_first 0 [] [] rs with
| Good res -> Resource.Cache.resume_resource res; res
| Bad (Failed backtrace) -> raise (Failed (Target (name, backtrace)))
| Bad exn -> raise exn