package GT

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file core2.ml

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
(*
 * Generic Transformers: Camlp5 syntax extension.
 * Copyright (C) 2016-2021
 *   Dmitry Boulytchev, Dmitrii Kosarev aka Kakadu
 * St.Petersburg State University, JetBrains Research
 *)

open Ploc

let oops loc str = Ploc.raise loc (Failure str)
let get_val _loc = function
| VaVal x -> x
| _       -> failwith "could not get VaVal _ (should not happen)"


module Migr = Ppxlib_ast.Selected_ast.Of_ocaml

open GTCommon


let generate_str is_nonrec tdecls loc =
  let info = snd @@ List.hd @@ List.rev tdecls in
  let module H = Expander.Make(Camlp5Helpers) in
  (* Expander.notify "with annotations %s" (String.concat "," info); *)
  let generator_f si =
    H.str_type_decl_many_plugins ~loc si
      (List.map (fun s -> (s,Expander.Use []) ) info)
  in
  let out =
    let sis = <:str_item< type $list:(List.map fst tdecls)$ >>  in
    let caml_ast = Ast2pt.implem "harcoded_filename.ml" [sis] in
    let () = assert (List.length caml_ast = 1) in
    match (List.hd caml_ast).pstr_desc with
    | Pstr_type (_flg, tds) ->
       let tds = List.map Migr.copy_type_declaration tds in
       generator_f [sis] ((if is_nonrec then Ppxlib.Nonrecursive else Recursive), tds)
    |  _ -> failwith "type declaration expected"
  in

  <:str_item< declare $list:out$ end >>

let generate_sig is_nonrec tdecls loc =
  let info = snd @@ List.hd @@ List.rev tdecls in
  (* Expander.notify "with annotations %s" (String.concat "," info); *)
  let module H = Expander.Make(Camlp5Helpers) in
  let generator_f si =
    H.sig_type_decl_many_plugins ~loc si
      (List.map (fun s -> (s,Expander.Use []) ) info)
  in

  let out =
     let ts = List.map fst tdecls in
     let sis = <:sig_item< type $list:ts$ >> in
     let caml_ast = Ast2pt.interf "harcoded_filename.mli" [sis] in
     assert (List.length caml_ast  =  1);
     match (List.hd caml_ast).psig_desc with
     | Psig_type (_flg, tds) ->
      let tds = List.map Migr.copy_type_declaration tds in
       generator_f [sis] ((if is_nonrec then Ppxlib.Nonrecursive else Recursive), tds)
     | _ -> assert false
  in

  <:sig_item< declare $list:out$ end >>
OCaml

Innovation. Community. Security.