-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: enable (include_subdirs qualified)
Signed-off-by: Rudi Grinberg <[email protected]> ps-id: f0bdd789-87c5-4047-b418-47cdaf7749ae
- Loading branch information
Showing
69 changed files
with
1,652 additions
and
664 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,111 @@ | ||
open Import | ||
|
||
module DB = struct | ||
module Persistent = Dune_util.Persistent.Make (struct | ||
type nonrec t = Path.Build.t Path.Build.Table.t | ||
|
||
let name = "COPY-LINE-DIRECTIVE-MAP" | ||
|
||
let version = 1 | ||
|
||
let to_dyn = Path.Build.Table.to_dyn Path.Build.to_dyn | ||
end) | ||
|
||
let needs_dumping = ref false | ||
|
||
let file = Path.relative Path.build_dir ".copy-db" | ||
|
||
let t = | ||
(* This mutable table is safe: it's only observed by [$ dune ocaml merlin] *) | ||
lazy | ||
(match Persistent.load file with | ||
| None -> Path.Build.Table.create 128 | ||
| Some t -> t) | ||
|
||
let dump () = | ||
if !needs_dumping && Path.build_dir_exists () then ( | ||
needs_dumping := false; | ||
Persistent.dump file (Lazy.force t)) | ||
|
||
let () = at_exit dump | ||
|
||
let rec follow_while path ~f = | ||
let t = Lazy.force t in | ||
match Path.Build.Table.find t path with | ||
| None -> None | ||
| Some p -> ( | ||
match f p with | ||
| None -> follow_while p ~f | ||
| Some p -> Some p) | ||
|
||
let set ~src ~dst = | ||
let t = Lazy.force t in | ||
needs_dumping := true; | ||
Path.Build.Table.set t src dst | ||
end | ||
|
||
let line_directive ~filename:fn ~line_number = | ||
let directive = | ||
if Foreign_language.has_foreign_extension ~fn then "line" else "" | ||
in | ||
sprintf "#%s %d %S\n" directive line_number fn | ||
|
||
module Spec = struct | ||
type ('path, 'target) t = 'path * 'target | ||
type merlin = | ||
| Yes | ||
| No | ||
|
||
let bool_of_merlin = function | ||
| Yes -> true | ||
| No -> false | ||
|
||
type ('path, 'target) t = 'path * 'target * merlin | ||
|
||
let name = "copy-line-directive" | ||
|
||
let version = 1 | ||
|
||
let bimap (src, dst) f g = (f src, g dst) | ||
let bimap (src, dst, merlin) f g = (f src, g dst, merlin) | ||
|
||
let is_useful_to ~distribute:_ ~memoize = memoize | ||
|
||
let encode (src, dst) path target : Dune_lang.t = | ||
let encode (src, dst, merlin) path target : Dune_lang.t = | ||
List | ||
[ Dune_lang.atom_or_quoted_string "copy-line-directive" | ||
; path src | ||
; target dst | ||
; Dune_lang.atom_or_quoted_string (Bool.to_string (bool_of_merlin merlin)) | ||
] | ||
|
||
let action (src, dst) ~ectx:_ ~eenv:_ = | ||
let action (src, dst, merlin) ~ectx:_ ~eenv:_ = | ||
Io.with_file_in src ~f:(fun ic -> | ||
Path.build dst | ||
|> Io.with_file_out ~f:(fun oc -> | ||
let fn = Path.drop_optional_build_context_maybe_sandboxed src in | ||
output_string oc | ||
(line_directive ~filename:(Path.to_string fn) ~line_number:1); | ||
Io.copy_channels ic oc)); | ||
(match merlin with | ||
| No -> () | ||
| Yes -> | ||
Path.as_in_build_dir src |> Option.iter ~f:(fun src -> DB.set ~src ~dst)); | ||
Fiber.return () | ||
end | ||
|
||
let action src dst = | ||
let action (context : Context.t) ~src ~dst = | ||
let module M = struct | ||
type path = Path.t | ||
|
||
type target = Path.Build.t | ||
|
||
module Spec = Spec | ||
|
||
let v = (src, dst) | ||
let v = (src, dst, if context.merlin then Spec.Yes else No) | ||
end in | ||
Action.Extension (module M) | ||
|
||
let builder ~src ~dst = | ||
let builder context ~src ~dst = | ||
let open Action_builder.O in | ||
Action_builder.with_file_targets ~file_targets:[ dst ] | ||
(Action_builder.path src | ||
>>> Action_builder.return (Action.Full.make (action src dst))) | ||
>>> Action_builder.return (Action.Full.make (action context ~src ~dst))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
open Import | ||
|
||
val action : Path.t -> Path.Build.t -> Action.t | ||
module DB : sig | ||
val follow_while : Path.Build.t -> f:(Path.Build.t -> 'a option) -> 'a option | ||
end | ||
|
||
val action : Context.t -> src:Path.t -> dst:Path.Build.t -> Action.t | ||
|
||
val builder : | ||
src:Path.t -> dst:Path.Build.t -> Action.Full.t Action_builder.With_targets.t | ||
Context.t | ||
-> src:Path.t | ||
-> dst:Path.Build.t | ||
-> Action.Full.t Action_builder.With_targets.t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.