dune/src/ordered_set_lang.ml

126 lines
3.4 KiB
OCaml
Raw Normal View History

2016-12-02 13:54:32 +00:00
open! Import
2017-07-05 17:12:44 +00:00
module Ast = struct
[@@@warning "-37"]
type expanded = Expanded
type unexpanded = Unexpanded
type ('a, _) t =
| Element : 'a -> ('a, _) t
| Special : Loc.t * string -> ('a, _) t
| Union : ('a, 'b) t list -> ('a, 'b) t
| Diff : ('a, 'b) t * ('a, 'b) t -> ('a, 'b) t
| Include : 'a -> ('a, unexpanded) t
end
2016-12-02 13:54:32 +00:00
2017-07-05 17:12:44 +00:00
type t = (string, Ast.expanded) Ast.t
2016-12-02 13:54:32 +00:00
2017-07-05 17:12:44 +00:00
let t t : t =
2017-02-25 17:53:39 +00:00
let rec of_sexp : Sexp.Ast.t -> _ = function
| Atom (loc, "\\") -> Loc.fail loc "unexpected \\"
2017-07-05 17:12:44 +00:00
| Atom (_, "") -> Ast.Element ""
2017-02-25 17:53:39 +00:00
| Atom (loc, s) ->
2017-07-05 17:12:44 +00:00
if s.[0] = ':' then
Special (loc, String.sub s ~pos:1 ~len:(String.length s - 1))
2016-12-02 13:54:32 +00:00
else
2017-07-05 17:12:44 +00:00
Element s
2017-02-25 17:53:39 +00:00
| List (_, sexps) -> of_sexps [] sexps
2016-12-02 13:54:32 +00:00
and of_sexps acc = function
2017-07-05 17:12:44 +00:00
| Atom (_, "\\") :: sexps -> Diff (Union (List.rev acc), of_sexps [] sexps)
2016-12-02 13:54:32 +00:00
| elt :: sexps ->
2017-07-05 17:12:44 +00:00
of_sexps (of_sexp elt :: acc) sexps
| [] -> Union (List.rev acc)
2016-12-02 13:54:32 +00:00
in
of_sexp t
2017-07-05 17:12:44 +00:00
let eval t ~special_values =
let rec of_ast (t : t) =
let open Ast in
match t with
| Element s -> [s]
| Special (loc, name) ->
begin
match List.assoc name special_values with
| l -> l
| exception Not_found -> Loc.fail loc "undefined symbol %s" name;
end
| Union elts -> List.flatten (List.map elts ~f:of_ast)
| Diff (left, right) ->
let left = of_ast left in
let right = of_ast right in
List.filter left ~f:(fun acc_elt -> not (List.mem acc_elt ~set:right))
in
of_ast t
2016-12-02 13:54:32 +00:00
let is_standard : t -> bool = function
2017-07-05 17:12:44 +00:00
| Ast.Special (_, "standard") -> true
2016-12-02 13:54:32 +00:00
| _ -> false
let eval_with_standard t ~standard =
if is_standard t then
standard (* inline common case *)
else
eval t ~special_values:[("standard", standard)]
2017-07-05 17:12:44 +00:00
let rec map (t : t) ~f : t =
let open Ast in
2016-12-02 13:54:32 +00:00
match t with
2017-07-05 17:12:44 +00:00
| Element s -> Element (f s)
| Special _ -> t
| Union l -> Union (List.map l ~f:(map ~f))
| Diff (l, r) -> Diff (map l ~f, map r ~f)
2016-12-02 13:54:32 +00:00
2017-07-05 17:12:44 +00:00
let standard = Ast.Special (Loc.none, "standard")
2016-12-02 13:54:32 +00:00
2017-07-05 17:12:44 +00:00
let append a b = Ast.Union [a; b]
2017-02-23 10:43:51 +00:00
2016-12-02 13:54:32 +00:00
module Unexpanded = struct
2017-07-05 17:12:44 +00:00
type t = (string, Ast.unexpanded) Ast.t
let parse_expanded = t
let t t' =
let rec map (t : (string, Ast.expanded) Ast.t) =
let open Ast in
match t with
| Element s -> Element s
| Special (l, s) -> Special (l, s)
| Union [Special (_, "include"); Element fn] ->
Include fn
| Union l ->
Union (List.map l ~f:map)
| Diff (l, r) ->
Diff (map l, map r)
in
t t' |> map
2016-12-02 13:54:32 +00:00
let standard = standard
2017-02-23 10:43:51 +00:00
let append = append
2017-01-06 17:17:38 +00:00
2016-12-02 13:54:32 +00:00
let files t =
2017-07-05 17:12:44 +00:00
let rec loop acc (t : t) =
let open Ast in
match t with
| Element _
| Special _ -> acc
| Include fn ->
String_set.add fn acc
| Union l ->
List.fold_left l ~init:acc ~f:loop
| Diff (l, r) ->
loop (loop acc l) r
2016-12-02 13:54:32 +00:00
in
loop String_set.empty t
2017-07-05 17:12:44 +00:00
let rec expand (t : t) ~files_contents : (string, Ast.expanded) Ast.t =
let open Ast in
2016-12-02 13:54:32 +00:00
match t with
2017-07-05 17:12:44 +00:00
| Element s -> Element s
| Special (l, s) -> Special (l, s)
| Include fn ->
parse_expanded (String_map.find_exn fn files_contents ~string_of_key:(sprintf "%S")
~desc:(fun _ -> "<filename to s-expression>"))
| Union l ->
Union (List.map l ~f:(expand ~files_contents))
| Diff (l, r) ->
Diff (expand l ~files_contents, expand r ~files_contents)
2016-12-02 13:54:32 +00:00
end