File: build.ml

package info (click to toggle)
ocaml-obuild 0.1.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 796 kB
  • sloc: ml: 6,570; sh: 171; ansic: 34; makefile: 11
file content (593 lines) | stat: -rw-r--r-- 26,817 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
open Ext.Fugue
open Ext.Filepath
open Ext
open Types
open Helper
open Printf
open Analyze
open Target
open Prepare
open Gconf
open Buildprogs

exception CCompilationFailed of string
exception CompilationFailed of string
exception Internal_Inconsistancy of string * string

(* check that destination is valid (mtime wise) against a list of srcs and
 * if not valid gives the filepath that has changed.
 * *)
let check_destination_valid_with srcs (_, dest) =
  if Filesystem.exists dest
  then (
    let dest_time = Filesystem.getModificationTime dest in
    try Some (List.find (fun (_,path) ->
        let mtime = Filesystem.getModificationTime path in
        dest_time < mtime
      ) srcs)
    with Not_found -> None
  ) else
    Some (Filetype.FileO, currentDir)

(* same as before but the list of sources is automatically determined
 * from the file DAG
*)
let check_destination_valid cstate (filety, dest) =
  let children =
    try Dag.getChildren cstate.compilation_filesdag (Filetype.make_id (filety, dest))
    with Dag.DagNode_Not_found ->
      raise (Internal_Inconsistancy ((Filetype.to_string filety), ("missing destination: " ^ fp_to_string dest)))
  in
  check_destination_valid_with (List.map Filetype.get_id children) (filety,dest)

(* get a nice reason of why a destination is not deemed valid against
 * the source filepath that triggered the unvalid check.
 *
 * if source filepath is empty, it means that destination doesn't exists *)
let reason_from_paths (_,dest) (srcTy,changedSrc) =
  let trim_pd_exts z =
    let n = fn_to_string z in
    if string_endswith ".d" n then fn (Filename.chop_suffix n ".d")
    else if string_endswith ".p" n then fn (Filename.chop_suffix n ".p")
    else z
  in
  if changedSrc = currentDir
  then ""
  else (
    let bdest = path_basename dest in
    let bsrc  = path_basename changedSrc  in
    match Filetype.of_filename bdest with
    | Filetype.FileCMX | Filetype.FileCMO -> (
        match srcTy with
        | Filetype.FileCMX | Filetype.FileCMO ->
          let bml = Filetype.replace_extension bdest Filetype.FileML in
          let bmli = Filetype.replace_extension bdest Filetype.FileMLI in
          if bml = bsrc then "Source changed"
          else if bmli = bsrc then "Interface changed"
          else ("Dependency " ^ Modname.to_string (Modname.of_filename (trim_pd_exts bsrc)) ^ " changed " ^ fp_to_string changedSrc)
        | Filetype.FileCMXA | Filetype.FileCMA ->
          "Library changed " ^ fp_to_string changedSrc
        | _ ->
          "Dependencies changed " ^ fp_to_string changedSrc
      )
    | Filetype.FileO ->
      let bc = Filetype.replace_extension bdest Filetype.FileC in
      let bh = Filetype.replace_extension bdest Filetype.FileH in
      if bc = bsrc then ("C file " ^ fn_to_string bsrc ^ " changed")
      else if bh = bsrc then ("H file " ^ fn_to_string bsrc ^ " changed")
      else ("file changed " ^ fp_to_string changedSrc)
    | _ ->
      fp_to_string changedSrc ^ " changed"
  )

let get_all_modes target =
  let compile_opts = Target.get_compilation_opts target in
  let compiled_types = Target.get_ocaml_compiled_types target in
  let all_modes = List.concat (List.map (fun ty ->
      List.map (fun cmode -> (ty, cmode)) compile_opts) compiled_types) in
  List.filter (fun (t,o) ->
      match (t,o) with (ByteCode,WithProf) -> false | _ -> true) all_modes

let annot_mode () =
  if (Gconf.get_target_option "annot") && gconf.bin_annot then AnnotationBoth
  else if (Gconf.get_target_option "annot") then AnnotationText
  else if gconf.bin_annot then AnnotationBin
  else AnnotationNone

let get_nb_step dag =
  let nb_step = Dag.length dag in
  let nb_step_len = String.length (string_of_int nb_step) in
  (nb_step, nb_step_len)

let buildmode_to_filety bmode = if bmode = Native then Filetype.FileCMX else Filetype.FileCMO
let buildmode_to_library_filety bmode = if bmode = Native then Filetype.FileCMXA else Filetype.FileCMA

let internal_libs_paths self_deps =
  List.map (fun (compile_opt,compile_type) ->
      ((compile_opt,compile_type), List.map (fun dep ->
           let dirname = Dist.get_build_exn (Dist.Target (Name.Lib dep)) in
           let filety = buildmode_to_library_filety compile_type in
           let libpath = dirname </> Libname.to_cmca compile_type compile_opt dep in
           (filety, libpath)
         ) self_deps)
    ) [ (Normal,Native);(Normal,ByteCode);(WithProf,Native);(WithProf,ByteCode);(WithDebug,Native);(WithDebug,ByteCode)]

(* compile C files *)
let compile_c task_index task c_file bstate task_context dag =
  let (cstate,target) = Hashtbl.find task_context task in
  let cbits = target.target_cbits in
  let c_dir_spec = {
    include_dirs = cstate.compilation_c_include_paths;
    dst_dir      = cstate.compilation_builddir_c;
    src_dir      = cbits.target_cdir
  } in
  let dest = (Filetype.FileO, c_dir_spec.dst_dir </> o_from_cfile c_file) in
  (match check_destination_valid cstate dest with
   | None            -> Scheduler.FinishTask task
   | Some src_changed ->
     let reason = reason_from_paths dest src_changed in
     let (nb_step,nb_step_len) = get_nb_step dag in
     verbose Report "[%*d of %d] Compiling C %-30s%s\n%!" nb_step_len task_index nb_step (fn_to_string c_file)
       (if reason <> "" then "    ( " ^ reason ^ " )" else "");
     let cflags = cbits.target_cflags in
     Scheduler.AddProcess (task, runCCompile bstate.bstate_config c_dir_spec cflags c_file)
  )

(* compile a set of modules in directory into a pack *)
let compile_directory task_index task (h : Hier.t) task_context dag =
  let (cstate,target) = Hashtbl.find task_context task in
  let pack_opt = Hier.parent h in
  (* get all the modules defined at level h+1 *)
  let modules_task = Taskdep.linearize cstate.compilation_dag Taskdep.FromParent [task] in
  let filter_modules t : Hier.t option = match t with
    | (CompileC _) | (LinkTarget _) | (CheckTarget _) -> None
    | (CompileDirectory m) | (CompileModule m) -> if Hier.lvl m = (Hier.lvl h + 1) then Some m else None
    | (CompileInterface m) ->
      if Hier.lvl m = (Hier.lvl h + 1) then begin
        let fe = Hier.get_file_entry_maybe m in
        match fe with
          None -> None
        | Some e -> match e with
          Hier.FileEntry (_, f) ->
            if (Filetype.of_filepath f) = Filetype.FileMLI then
              Some m
            else None
          | _ -> None
      end
      else None
  in
  let modules = List.rev $ list_filter_map filter_modules modules_task in
  let all_modes = get_all_modes target in
  let annot_mode = annot_mode () in
  (* directory never have interface (?) so we serialize the native/bytecode creation.
   * the mtime checking is sub-optimal. low hanging fruits warning *)
  let tasks_ops : (string * Scheduler.call) option list list =
    let (byte_list,native_list) = List.partition (fun (t,_) -> t = ByteCode) all_modes in
    (List.map (fun pair_list ->
         List.map (fun (build_mode, comp_opt) ->
             let path = cstate.compilation_builddir_ml comp_opt in
             let dest = (Filetype.FileCMI, Hier.get_dest_file path Filetype.FileCMI h) in
             let mdeps = List.map (fun m ->
                 (Filetype.FileCMI, Hier.get_dest_file path Filetype.FileCMI m)
               ) modules in
             let dir = cstate.compilation_builddir_ml comp_opt in
             let fcompile = (fun () -> runOcamlPack dir dir annot_mode build_mode pack_opt h modules) in
             match check_destination_valid_with mdeps dest with
             | None            -> None
             | Some src_changed -> Some (reason_from_paths dest src_changed, fcompile)
           ) pair_list
       ) [byte_list; native_list])
  in
  let (reason, ops) =
    (*[ [(r,f)] ]*)
    let l : (string * Scheduler.call) list list = List.map maybes_to_list tasks_ops in
    match List.filter (fun x -> x <> []) l with
    | []                -> ("", [])
    | [] :: _          -> assert false
    | ((r,x)::xs) :: ys -> (r, (x :: List.map snd xs) :: List.map (List.map snd) ys)
  in
  if ops <> [] then (
    let (nb_step,nb_step_len) = get_nb_step dag in
    verbose Report "[%*d of %d] Packing %-30s%s\n%!" nb_step_len task_index nb_step (Hier.to_string h) reason;
    Scheduler.AddTask (task, ops)
  ) else
    Scheduler.FinishTask task

let dep_descs is_intf hdesc bstate cstate target h =
  let self_deps = Analyze.get_internal_library_deps bstate.bstate_config target in
  let internal_libs_paths_all_modes = internal_libs_paths self_deps in
  let module_deps = hdesc.Module.File.dep_cwd_modules in
  let compile_opts = Target.get_compilation_opts target in
  let all_modes = get_all_modes target in
  if is_intf then (
    let intf_desc =
      match hdesc.Module.File.intf_desc with
      | None      -> failwith "assertion error, task interface and no module_intf"
      | Some intf -> intf
    in
    List.map (fun comp_opt ->
        let path = cstate.compilation_builddir_ml comp_opt in
        let dest = (Filetype.FileCMI, Hier.get_dest_file path Filetype.FileCMI h) in
        let src  = [ (Filetype.FileMLI, intf_desc.Module.Intf.path) ] in
        let m_deps = List.map (fun module_dep ->
            (Filetype.FileCMI, Hier.get_dest_file path Filetype.FileCMI module_dep)) module_deps in
        let internal_deps = List.assoc (comp_opt,ByteCode) internal_libs_paths_all_modes in
        (dest,Interface,comp_opt, src @ internal_deps @ m_deps)
      ) compile_opts
  ) else (
    List.map (fun (compiled_ty, comp_opt) ->
        let file_compile_ty = buildmode_to_filety compiled_ty in
        let ext = if compiled_ty = ByteCode then Filetype.FileCMO else Filetype.FileCMX in
        let path = cstate.compilation_builddir_ml comp_opt in
        let dest = (file_compile_ty, Hier.get_dest_file path ext h) in
        let src = (match hdesc.Module.File.intf_desc with
              None -> []
            | Some intf -> [Filetype.FileMLI,intf.Module.Intf.path]) @ [(Filetype.FileML, hdesc.Module.File.path)] in
        let m_deps = List.concat (List.map (fun module_dep ->
            [(file_compile_ty, Hier.get_dest_file path ext module_dep);
             (Filetype.FileCMI, Hier.get_dest_file path Filetype.FileCMI module_dep)]
          ) module_deps) in
        let internal_deps = List.assoc (comp_opt,compiled_ty) internal_libs_paths_all_modes in
        (dest,Compiled compiled_ty,comp_opt,src @ internal_deps @ m_deps)
      ) all_modes
  )

(* add a OCaml module or interface compilation process *)
let compile_module task_index task is_intf h bstate task_context dag =
  let all = Hashtbl.find_all task_context task in
  let process_one_target cstate target =
    let pack_opt = Hier.parent h in
    let hdesc =
      let desc = Hashtbl.find cstate.compilation_modules h in
      match desc with
      | Module.DescFile z -> z
      | Module.DescDir _  ->
        failwith (sprintf "internal error compile module on directory (%s). steps dag internal error"
                    (Hier.to_string h))
    in
    let src_path = path_dirname hdesc.Module.File.path in
    let use_thread = hdesc.Module.File.use_threads in
    let dir_spec = {
      src_dir      = src_path;
      dst_dir      = currentDir;
      include_dirs = [currentDir]
    } in
    let dep_descs = dep_descs is_intf hdesc bstate cstate target h in
    let annot_mode = annot_mode () in
    let rec check invalid descs = match descs with
      | []                                  -> (None, [])
      | (dest,build_mode,comp_opt,srcs) :: xs ->
        let r_dir_spec = {
          dir_spec with
          dst_dir = cstate.compilation_builddir_ml comp_opt <//> Hier.to_dirpath h;
          include_dirs = cstate.compilation_include_paths comp_opt h
        } in
        let fcompile =
          (build_mode,(fun () -> runOcamlCompile r_dir_spec use_thread annot_mode build_mode comp_opt
                          pack_opt hdesc.Module.File.use_pp hdesc.Module.File.oflags h)) in
        if invalid
        then (
          let (_, ys) = check invalid xs in
          (Some "", fcompile :: ys)
        ) else (
          match check_destination_valid_with srcs dest with
          | None            -> check false xs
          | Some src_changed ->
            let reason = reason_from_paths dest src_changed in
            let (_, ys) = check true xs in
            (Some reason, fcompile :: ys)
        )
    in
    (check false dep_descs, hdesc)
  in
  let all = List.map (fun (c,t) -> process_one_target c t) all in
  let ((compilation_reason, _), _) = List.hd all in
  match compilation_reason with
  | None        -> Scheduler.FinishTask task
  | Some reason -> (* if the module has an interface, we create one list, so everything can be run in parallel,
                      * otherwise we partition the build_mode functions in build_modes group. *)
    let fun_lists check_fun_list hdesc =
      if is_intf || Module.file_has_interface hdesc
      then [List.map snd check_fun_list]
      else let (l1,l2) = List.partition (fun (x,_) -> x = Compiled Native) check_fun_list in
        List.filter (fun x -> List.length x > 0) [List.map snd l1; List.map snd l2]
    in
    let all_fun_lists = List.fold_left  (fun l ((_,check), hdesc) ->
        let funlist = fun_lists check hdesc in
        l @ funlist) [] all in

    let verb = if is_intf then "Intfing" else "Compiling" in
    let (nb_step, nb_step_len) = get_nb_step dag in
    verbose Report "[%*d of %d] %s %-30s%s\n%!" nb_step_len task_index nb_step verb (Hier.to_string h)
      (if reason <> "" then "    ( " ^ reason ^ " )" else "");
    Scheduler.AddTask (task, all_fun_lists)

let wait_for_files cdep_files =
  List.for_all (fun f ->
      let test = Filesystem.exists f in
      if not test then
        verbose Debug "warning: (temporarily?) missing file %s" (fp_to_string f);
      test
    ) cdep_files

let link_c cstate clib_name =
  let lib_name = cstate.compilation_builddir_c </> fn clib_name in
  let cdep_files = List.map (fun x -> cstate.compilation_builddir_c </> o_from_cfile x) cstate.compilation_csources in
  (* Not sure why it is necessary ... gcc seems to return before the files are ready. *)
  while not (wait_for_files cdep_files) do
    ignore (Unix.select [] [] [] 0.02)  (* sleep 1/50 second *)
  done;
  if gconf.ocamlmklib then
    [[(fun () -> runCLinking LinkingShared cdep_files lib_name)]]
  else (
    let so_file = cstate.compilation_builddir_c </> fn ("dll" ^ clib_name ^ ".so") in
    let a_file = cstate.compilation_builddir_c </> fn ("lib" ^ clib_name ^ ".a") in
    [[(fun () -> runCLinking LinkingShared cdep_files so_file)];
     [(fun () -> runAr a_file cdep_files)];
     [(fun () -> runRanlib a_file)]]
  )

let satisfy_preds dep preds =
  let satisfy_all current_pkg =
    let res = List.fold_left (fun acc (req_preds,req_libs) ->
        List.fold_left (fun in_acc lib ->
            if lib = dep then Meta.Pkg.satisfy req_preds preds else true
          ) acc req_libs
      ) true current_pkg.Meta.Pkg.requires in
    res
  in
  let rec dep_is_satisfied current_pkg =
    (satisfy_all current_pkg) && (List.for_all satisfy_all current_pkg.subs) in
  let (_,root_pkg) = Metacache.get dep.Libname.main_name in
  dep_is_satisfied root_pkg

let link_ task_index bstate cstate pkgDeps target dag compiled useThreadLib cclibs compiledType compileOpt plugin =
  let systhread = Analyze.getOcamlConfigKey "systhread_supported" in
  let buildDeps =  if is_lib target then []
    else List.flatten (List.map (fun dep ->
        match Hashtbl.find bstate.bstate_config.project_dep_data dep with
        | Internal -> [(in_current_dir (Libname.to_cmca compiledType compileOpt dep))]
        | System   ->
          let meta = Metacache.get_from_cache dep in
          let pred = match compiledType with
            | Native    -> Meta.Predicate.Native
            | ByteCode  -> Meta.Predicate.Byte
          in
          let preds = match useThreadLib with
            | PosixThread -> [ pred; Meta.Predicate.Mt; Meta.Predicate.Mt_posix]
            | VMThread -> [ pred; Meta.Predicate.Mt; Meta.Predicate.Mt_vm]
            | DefaultThread ->
              (if systhread = "true" then Meta.Predicate.Mt_posix else Meta.Predicate.Mt_vm) :: [ pred; Meta.Predicate.Mt]
            | NoThreads -> [ pred ]
          in
          let preds = match compileOpt with
            | WithProf -> Meta.Predicate.Gprof :: preds
            | _ -> preds
          in
          if (satisfy_preds dep preds) then
            let archives = Meta.Pkg.get_archive_with_filter meta dep preds in
            List.fold_left (fun acc (_,a) ->
                let files = string_split ' ' a in
                acc @ (List.map (fun f -> in_current_dir $ fn f) files)
              ) [] archives
          else
            []
      ) pkgDeps)
  in
  let dest = match target.target_name with
    | Name.Lib libname ->
      if plugin then
        cstate.compilation_builddir_ml Normal </> Libname.to_cmxs compileOpt libname
      else
        cstate.compilation_builddir_ml Normal </> Libname.to_cmca compiledType compileOpt libname
    | _ ->
      let outputName = Utils.to_exe_name compileOpt compiledType (Target.get_target_dest_name target) in
      cstate.compilation_builddir_ml Normal </> outputName
  in
  let linking_paths_of compileOpt = match compileOpt with
    | Normal    -> cstate.compilation_linking_paths
    | WithDebug -> cstate.compilation_linking_paths_d
    | WithProf  -> cstate.compilation_linking_paths_p
  in
  let destTime = Filesystem.getModificationTime dest in
  let ext = if compiledType = ByteCode then Filetype.FileCMO else Filetype.FileCMX in
  let path = cstate.compilation_builddir_ml compileOpt in
  let depsTime =
    try Some (List.find (fun p -> destTime < Filesystem.getModificationTime p)
                (List.map (fun m ->
                     Hier.get_dest_file path ext m)
                    compiled))
    with Not_found -> None
  in
  if depsTime <> None then (
    let (nb_step,nb_step_len) = get_nb_step dag in
    let link_type = if plugin then LinkingPlugin else
      if is_lib target then LinkingLibrary else LinkingExecutable in
    verbose Report "[%*d of %d] Linking %s %s\n%!" nb_step_len task_index nb_step
      (if is_lib target then "library" else "executable") (fp_to_string dest);
    [(fun () -> runOcamlLinking (linking_paths_of compileOpt) compiledType
         link_type compileOpt useThreadLib systhread cclibs buildDeps compiled dest)]
  ) else []

let link task_index task bstate task_context dag =
  let (cstate,target) = Hashtbl.find task_context task in
  let cbits = target.target_cbits in
  let compiled = get_compilation_order cstate in
  verbose Debug "  compilation order: %s\n" (Utils.showList "," Hier.to_string compiled);
  let selfDeps = Analyze.get_internal_library_deps bstate.bstate_config target in
  verbose Debug "  self deps: %s\n" (Utils.showList "," Libname.to_string selfDeps);
  let selfLibDirs = List.map (fun dep -> Dist.get_build_exn (Dist.Target (Name.Lib dep))) selfDeps in
  let internal_cclibs = if cstate.compilation_csources <> []
    then [Target.get_target_clibname target]
    else []
  in
  let cclibs = List.concat (List.map (fun (cpkg,_) ->
      List.map (fun x -> "-l" ^ x)
        (Analyze.get_c_pkg cpkg bstate.bstate_config).cpkg_conf_libs) cbits.target_cpkgs)
               @ List.map (fun x -> "-L" ^ fp_to_string x) selfLibDirs
               @ List.map (fun x -> "-l" ^ x) (cbits.target_clibs @ internal_cclibs)
  in
  let pkgDeps = Analyze.get_pkg_deps target bstate.bstate_config in
  verbose Verbose "package deps: [%s]\n" (Utils.showList "," Libname.to_string pkgDeps);
  let useThreadLib =
    if List.mem (Libname.of_string "threads") pkgDeps then DefaultThread
    else if List.mem (Libname.of_string "threads.posix") pkgDeps then PosixThread
    else if List.mem (Libname.of_string "threads.vm") pkgDeps then VMThread
    else NoThreads
  in
  let cfunlist = if cstate.compilation_csources <> [] then
      link_c cstate (Target.get_target_clibname target)
    else [] in
  let all_modes = get_all_modes target in
  let funlist = List.fold_left (fun flist (compiledType,compileOpt) ->
      let normal = (link_ task_index bstate cstate pkgDeps target dag compiled useThreadLib cclibs
          compiledType compileOpt false) in
      let res = if (is_lib target) && compiledType = Native && (Gconf.get_target_option "library-plugin") then
          (link_ task_index bstate cstate pkgDeps target dag compiled useThreadLib cclibs
             compiledType compileOpt true) @ normal
        else normal in
      res @ flist
    ) [] all_modes in
  if funlist <> [] then
    Scheduler.AddTask (task, cfunlist @ [funlist])
  else
    Scheduler.FinishTask task

let get_destination_files target =
  let all_modes = get_all_modes target in
  match target.Target.target_name with
  | Name.Lib libname ->
    List.map (fun (typ,opt) -> Libname.to_cmca typ opt libname) all_modes
  | Name.Exe _ | Name.Test _ | Name.Bench _ | Name.Example _ ->
    List.map (fun (ty,opt) ->
        Utils.to_exe_name opt ty (Target.get_target_dest_name target)
      ) all_modes

let sanity_check build_dir target =
  let files = get_destination_files target in
  let allOK = List.for_all (fun f ->
      let test = Filesystem.exists (build_dir </> f) in
      if not test then
        verbose Debug "warning: missing file %s" (fp_to_string (build_dir </> f));
      test
    ) files in
  if not allOK
  then verbose Report "warning: some target file appears to be missing";
  ()

let check task_index task task_context dag =
  let (_,target) = Hashtbl.find task_context task in
  let buildDir = Dist.get_build_path (Dist.Target target.target_name) in
  let (nb_step,nb_step_len) = get_nb_step dag in
  verbose Report "[%*d of %d] Checking %s\n%!" nb_step_len task_index nb_step (fp_to_string buildDir);
  sanity_check buildDir target;
  Scheduler.FinishTask task

(* compile will process the compilation DAG,
 * which will compile all C sources and OCaml modules.
*)
let compile (bstate: build_state) task_context dag =
  let taskdep = Taskdep.init dag in
  (* a compilation task has finished, terminate the process,
     * and process the result *)
  let schedule_finish (task, st) is_done =
    (match Process.terminate (task, st) with
     | Process.Success (_, warnings, _) ->
       (* TODO: store warnings for !isDone and print them if they are different when isDone *)
       if is_done then print_warnings warnings
     | Process.Failure er            -> match task with
       | CompileC _ -> raise (CCompilationFailed er)
       | _          -> raise (CompilationFailed er)
    );
    if is_done then
      Taskdep.mark_done taskdep task
  in

  let dispatch (task_index, task) =
    match task with
    | (CompileC m)         -> compile_c task_index task m bstate task_context dag
    | (CompileInterface m) -> compile_module task_index task true m bstate task_context dag
    | (CompileModule m)    -> compile_module task_index task false m bstate task_context dag
    | (CompileDirectory m) -> compile_directory task_index task m task_context dag
    | (LinkTarget _)       -> link task_index task bstate task_context dag
    | (CheckTarget _)      -> check task_index task task_context dag
  in

  let stat = Scheduler.schedule gconf.parallel_jobs taskdep dispatch schedule_finish in
  verbose Verbose "schedule finished: #processes=%d max_concurrency=%d\n" stat.Scheduler.nb_processes
    stat.Scheduler.max_runqueue;
  ()

let build_exe bstate exe =
  let target = Project.Executable.to_target exe in
  let modules = [Hier.of_filename exe.Project.Executable.main] in
  let task_context = Hashtbl.create 64 in
  let build_dir = Dist.create_build (Dist.Target target.target_name) in
  let cstate = prepare_target bstate build_dir target modules in
  List.iter (fun n -> Hashtbl.add task_context n (cstate,target))
    (Dag.getNodes cstate.compilation_dag);
  compile bstate task_context cstate.compilation_dag

let rec select_leaves children duplicate dag =
  let (good,bad) = List.partition (fun a -> not (List.mem a duplicate)) children in
  let new_ = ref [] in
  List.iter (fun a ->
      let parents = Dag.getParents dag a in
      List.iter (fun p -> new_ := p :: !new_) parents
    ) bad;
  if List.length bad > 0 then
    select_leaves (!new_ @ good) duplicate dag
  else
    good

let build_dag bstate proj_file targets_dag =
  let dag = Dag.init () in
  let task_context = Hashtbl.create 64 in
  let taskdep = Taskdep.init targets_dag in
  let targets_deps = Hashtbl.create 64 in
  let prepare_state target modules =
    let build_dir = Dist.create_build (Dist.Target target.target_name) in
    let cstate = prepare_target bstate build_dir target modules in
    List.iter (fun n -> Hashtbl.add task_context n (cstate,target))
      (Dag.getNodes cstate.compilation_dag);
    let duplicate = Dag.merge dag cstate.compilation_dag in
    (cstate.compilation_dag, duplicate)
  in
  while not (Taskdep.is_complete taskdep) do
    (match Taskdep.get_next taskdep with
     | None -> failwith "no free task in targets"
     | Some (_,ntask) ->
       verbose Verbose "preparing target %s\n%!" (Name.to_string ntask);
       let (cur_dag,dups) = (match ntask with
        | Name.Exe name   ->
          let exe = Project.find_exe proj_file name in
          prepare_state (Project.Executable.to_target exe) [Hier.of_filename exe.Project.Executable.main]
        | Name.Lib name   ->
          let lib = Project.find_lib proj_file name in
          prepare_state (Project.Library.to_target lib) lib.Project.Library.modules
        | Name.Bench name ->
          let bench = Project.find_bench proj_file name in
          prepare_state (Project.Bench.to_target bench) [Hier.of_filename bench.Project.Bench.main]
        | Name.Test name  ->
          let test = Project.find_test proj_file name in
          prepare_state (Project.Test.to_target test) [Hier.of_filename test.Project.Test.main]
        | Name.Example name ->
          let example = Project.find_example proj_file name in
          prepare_state (Project.Example.to_target example) [Hier.of_filename example.Project.Example.main]
       ) in
       if (Hashtbl.mem targets_deps ntask) then begin
         let children = Dag.getLeaves cur_dag in
         let children = select_leaves children dups cur_dag in
         let roots = Hashtbl.find targets_deps ntask in
         List.iter (fun child ->
             List.iter (fun root ->
                 Dag.addEdge child root dag
             ) roots
         ) children
       end;
       let roots = Dag.getRoots cur_dag in (* should be LinkTarget *)
       List.iter (fun p -> Hashtbl.add targets_deps p roots) (Dag.getParents targets_dag ntask);
       Taskdep.mark_done taskdep ntask
    )
  done;
  compile bstate task_context dag