a31497a89899ccb08af7adee07b9c31c69f2bc4e
[wrappi.git] / generator-macros / pa_wrap.ml
1 (* wrappi
2  * Copyright (C) 2011 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *)
18
19 (* For general information about camlp4, see:
20  * http://brion.inria.fr/gallium/index.php/Camlp4
21  *
22  * For information about quotations, see:
23  * http://brion.inria.fr/gallium/index.php/Quotation
24  *)
25
26 open Camlp4.PreCast
27 open Syntax
28 open Ast
29
30 open Wrappi_types
31
32 (* Convert a plain list into a list AST. *)
33 let rec expr_of_list _loc = function
34   | [] -> <:expr< [] >>
35   | h::t -> let t = expr_of_list _loc t in <:expr< $h$ :: $t$ >>
36
37 (* Convert an optional type into an option AST. *)
38 let expr_of_option _loc = function
39   | None -> <:expr< None >>
40   | Some x -> <:expr< Some $x$ >>
41
42 (* Convert a _loc to an AST. *)
43 let expr_of_loc _loc loc =
44   let file_name,
45     start_line, start_bol, start_off,
46     stop_line, stop_bol, stop_off,
47     ghost = Loc.to_tuple loc in
48   <:expr< Camlp4.PreCast.Loc.of_tuple
49     ($str:file_name$,
50      $`int:start_line$, $`int:start_bol$, $`int:start_off$,
51      $`int:stop_line$, $`int:stop_bol$, $`int:stop_off$,
52      $`bool:ghost$) >>
53
54 let add_entry_point _loc local name parameters rtype code includes =
55   let loc = expr_of_loc _loc _loc in
56
57   let local =
58     match local with None -> <:expr< false >> | _ -> <:expr< true >> in
59
60   let parameters = List.map (
61     fun (name, t) -> <:expr< ($str:name$, $t$, None) >>
62   ) parameters in
63   let parameters = expr_of_list _loc parameters in
64
65   let code = expr_of_option _loc code in
66
67   let includes = match includes with None -> <:expr< [] >> | Some xs -> xs in
68
69   <:str_item<
70     let ep = { Wrappi_types.ep_loc = $loc$;
71                ep_local = $local$;
72                ep_name = $str:name$;
73                ep_ftype = ($rtype$, $parameters$, []);
74                ep_code = $code$;
75                ep_includes = $includes$ } in
76     Wrappi_accumulator.add_entry_point ep
77   >>
78
79 let add_typedef _loc name t =
80   let loc = expr_of_loc _loc _loc in
81
82   <:str_item<
83     let td = { Wrappi_types.td_loc = $loc$;
84                td_name = $str:name$;
85                td_type = $t$ } in
86     Wrappi_accumulator.add_typedef td
87   >>
88
89 let add_enum _loc name identifiers =
90   let loc = expr_of_loc _loc _loc in
91
92   <:str_item<
93     let en = { Wrappi_types.en_loc = $loc$;
94                en_name = $str:name$;
95                en_identifiers = Array.of_list $identifiers$ } in
96     Wrappi_accumulator.add_enum en
97   >>
98
99 let () =
100   (* Quotation expander for C code. *)
101   let c_quotation_expander _loc _ code =
102     let loc = expr_of_loc _loc _loc in
103
104     (* XXX Expand %- or $- expressions in code. *)
105     (* XXX Escape >> in code. *)
106
107     <:expr< { Wrappi_types.cc_loc = $loc$;
108               cc_code = $str:code$ } >>
109   in
110   Quotation.add "c" Quotation.DynAst.expr_tag c_quotation_expander;
111
112   (* Default quotation expander (<< .. >>) should be C code ("c"). *)
113   Quotation.default := "c"
114
115 ;;
116
117 (* Extend the regular OCaml grammar. *)
118 EXTEND Gram
119   GLOBAL: str_item;
120
121   (* A parameter or return type. *)
122   ptype: [
123     [ "bool" -> <:expr< Wrappi_types.TBool >> ]
124   | [ "buffer" -> <:expr< Wrappi_types.TBuffer >> ]
125   | [ "enum"; name = LIDENT -> <:expr< Wrappi_types.TEnum $str:name$ >> ]
126   | [ "file" -> <:expr< Wrappi_types.TFile >> ]
127   | [ "hash"; "("; t = ptype; ")" -> <:expr< Wrappi_types.THash $t$ >> ]
128   | [ "int" -> <:expr< Wrappi_types.TInt >> ]
129   | [ "int32" -> <:expr< Wrappi_types.TInt32 >> ]
130   | [ "int64" -> <:expr< Wrappi_types.TInt64 >> ]
131   | [ "list"; "("; t = ptype; ")" -> <:expr< Wrappi_types.TList $t$ >> ]
132   | [ "nullable"; "("; t = ptype; ")" -> <:expr< Wrappi_types.TNullable $t$ >> ]
133   | [ "string" -> <:expr< Wrappi_types.TString >> ]
134   | [ "struct"; name = LIDENT -> <:expr< Wrappi_types.TStruct $str:name$ >> ]
135   | [ "uint32" -> <:expr< Wrappi_types.TUInt32 >> ]
136   | [ "uint64" -> <:expr< Wrappi_types.TUInt64 >> ]
137   | [ "union"; name = LIDENT -> <:expr< Wrappi_types.TUnion $str:name$ >> ]
138   | [ name = LIDENT -> <:expr< Wrappi_types.TTypedef $str:name$ >> ]
139   ];
140
141   (* A return type. *)
142   rtype: [
143     [ "void" -> <:expr< Wrappi_types.RVoid >> ]
144   | [ "static_string" -> <:expr< Wrappi_types.RStaticString >> ]
145   | [ t = ptype -> <:expr< Wrappi_types.Return $t$ >> ]
146   ];
147
148   (* A single function parameter.  XXX Preconditions. *)
149   parameter: [[ t = ptype; name = LIDENT -> (name, t) ]];
150
151   str_item: LEVEL "top" [
152     [ "entry_point";
153       local = OPT "local";
154       rtype = rtype; name = LIDENT;
155       "("; parameters = LIST0 parameter SEP ","; ")";
156       code = OPT [ code = expr -> code ];
157       includes = OPT [ "includes"; includes = expr -> includes ]
158       ->
159       add_entry_point _loc local name parameters rtype code includes
160     ]
161
162   | [ "enum"; name = LIDENT; identifiers = expr ->
163       add_enum _loc name identifiers
164     ]
165
166   | [ "typedef"; t = ptype; name = LIDENT ->
167       add_typedef _loc name t
168     ]
169   ];
170
171 END