Use an AST for Ordered_set_lang

This commit is contained in:
David Allsopp 2017-07-05 19:12:44 +02:00 committed by Jérémie Dimino
parent 13b0eb9f2b
commit 83bba5af61
1 changed files with 87 additions and 44 deletions

View File

@ -1,40 +1,58 @@
open! Import
type t = Sexp.Ast.t
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
let t t = t
type t = (string, Ast.expanded) Ast.t
let eval t ~special_values =
let t t : t =
let rec of_sexp : Sexp.Ast.t -> _ = function
| Atom (loc, "\\") -> Loc.fail loc "unexpected \\"
| Atom (_, "") -> Ast.Element ""
| Atom (loc, s) ->
let len = String.length s in
if len > 0 && s.[0] = ':' then
let name = String.sub s ~pos:1 ~len:(len - 1) in
match List.assoc name special_values with
| l -> l
| exception Not_found -> Loc.fail loc "undefined symbol %s" s;
if s.[0] = ':' then
Special (loc, String.sub s ~pos:1 ~len:(String.length s - 1))
else
[s]
Element s
| List (_, sexps) -> of_sexps [] sexps
and of_sexps acc = function
| Atom (_, "\\") :: sexps -> of_sexps_negative acc sexps
| Atom (_, "\\") :: sexps -> Diff (Union (List.rev acc), of_sexps [] sexps)
| elt :: sexps ->
let elts = of_sexp elt in
of_sexps (List.rev_append elts acc) sexps
| [] -> List.rev acc
and of_sexps_negative acc = function
| Atom (_, "\\") :: sexps -> of_sexps_negative acc sexps
| elt :: sexps ->
let elts = of_sexp elt in
let acc = List.filter acc ~f:(fun acc_elt -> not (List.mem acc_elt ~set:elts)) in
of_sexps_negative acc sexps
| [] -> List.rev acc
of_sexps (of_sexp elt :: acc) sexps
| [] -> Union (List.rev acc)
in
of_sexp t
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
let is_standard : t -> bool = function
| Atom (_, ":standard") -> true
| Ast.Special (_, "standard") -> true
| _ -> false
let eval_with_standard t ~standard =
@ -43,40 +61,65 @@ let eval_with_standard t ~standard =
else
eval t ~special_values:[("standard", standard)]
let rec map (t : t) ~f =
let rec map (t : t) ~f : t =
let open Ast in
match t with
| Atom (loc, s) ->
let len = String.length s in
if len > 0 && s.[0] = ':' then
t
else
Atom (loc, f s)
| List (loc, l) -> List (loc, List.map l ~f:(map ~f))
| 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)
let standard : t = Atom (Loc.none, ":standard")
let standard = Ast.Special (Loc.none, "standard")
let append a b : t = List (Loc.none, [a; b])
let append a b = Ast.Union [a; b]
module Unexpanded = struct
type nonrec t = t
let t t = t
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
let standard = standard
let append = append
let files t =
let rec loop acc : t -> _ = function
| Atom _ -> acc
| List (_, [Atom (_, ":include"); Atom (_, fn)]) -> String_set.add fn acc
| List (_, l) -> List.fold_left l ~init:acc ~f:loop
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
in
loop String_set.empty t
let rec expand (t : t) ~files_contents =
let rec expand (t : t) ~files_contents : (string, Ast.expanded) Ast.t =
let open Ast in
match t with
| Atom _ -> t
| List (_, [Atom (_, ":include"); Atom (_, fn)]) ->
String_map.find_exn fn files_contents ~string_of_key:(sprintf "%S")
~desc:(fun _ -> "<filename to s-expression>")
| List (loc, l) -> List (loc, List.map l ~f:(expand ~files_contents))
| 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)
end