4edad55d1fb9ff9ae071802e76ba5287e77b46dc
[rust-lightning] / c-bindings-gen / src / main.rs
1 //! Converts a rust crate into a rust crate containing a number of C-exported wrapper functions and
2 //! classes (which is exportable using cbindgen).
3 //! In general, supports convering:
4 //!  * structs as a pointer to the underlying type (either owned or not owned),
5 //!  * traits as a void-ptr plus a jump table,
6 //!  * enums as an equivalent enum with all the inner fields mapped to the mapped types,
7 //!  * certain containers (tuples, slices, Vecs, Options, and Results currently) to a concrete
8 //!    version of a defined container template.
9 //!
10 //! It also generates relevant memory-management functions and free-standing functions with
11 //! parameters mapped.
12
13 use std::collections::HashMap;
14 use std::env;
15 use std::fs::File;
16 use std::io::{Read, Write};
17 use std::path::Path;
18 use std::process;
19
20 use proc_macro2::{TokenTree, TokenStream, Span};
21
22 mod types;
23 mod blocks;
24 use types::*;
25 use blocks::*;
26
27 // *************************************
28 // *** Manually-expanded conversions ***
29 // *************************************
30
31 /// Because we don't expand macros, any code that we need to generated based on their contents has
32 /// to be completely manual. In this case its all just serialization, so its not too hard.
33 fn convert_macro<W: std::io::Write>(w: &mut W, macro_path: &syn::Path, stream: &TokenStream, types: &TypeResolver) {
34         assert_eq!(macro_path.segments.len(), 1);
35         match &format!("{}", macro_path.segments.iter().next().unwrap().ident) as &str {
36                 "impl_writeable" | "impl_writeable_len_match" => {
37                         let struct_for = if let TokenTree::Ident(i) = stream.clone().into_iter().next().unwrap() { i } else { unimplemented!(); };
38                         if let Some(s) = types.maybe_resolve_ident(&struct_for) {
39                                 if !types.crate_types.opaques.get(&s).is_some() { return; }
40                                 writeln!(w, "#[no_mangle]").unwrap();
41                                 writeln!(w, "pub extern \"C\" fn {}_write(obj: *const {}) -> crate::c_types::derived::CVec_u8Z {{", struct_for, struct_for).unwrap();
42                                 writeln!(w, "\tcrate::c_types::serialize_obj(unsafe {{ &(*(*obj).inner) }})").unwrap();
43                                 writeln!(w, "}}").unwrap();
44                                 writeln!(w, "#[no_mangle]").unwrap();
45                                 writeln!(w, "pub extern \"C\" fn {}_read(ser: crate::c_types::u8slice) -> {} {{", struct_for, struct_for).unwrap();
46                                 writeln!(w, "\tif let Ok(res) = crate::c_types::deserialize_obj(ser) {{").unwrap();
47                                 writeln!(w, "\t\t{} {{ inner: Box::into_raw(Box::new(res)), is_owned: true }}", struct_for).unwrap();
48                                 writeln!(w, "\t}} else {{").unwrap();
49                                 writeln!(w, "\t\t{} {{ inner: std::ptr::null_mut(), is_owned: true }}", struct_for).unwrap();
50                                 writeln!(w, "\t}}\n}}").unwrap();
51                         }
52                 },
53                 _ => {},
54         }
55 }
56
57 /// Convert "impl trait_path for for_obj { .. }" for manually-mapped types (ie (de)serialization)
58 fn maybe_convert_trait_impl<W: std::io::Write>(w: &mut W, trait_path: &syn::Path, for_obj: &syn::Ident, types: &TypeResolver) {
59         if let Some(t) = types.maybe_resolve_path(&trait_path, None) {
60                 let s = types.maybe_resolve_ident(for_obj).unwrap();
61                 if !types.crate_types.opaques.get(&s).is_some() { return; }
62                 match &t as &str {
63                         "util::ser::Writeable" => {
64                                 writeln!(w, "#[no_mangle]").unwrap();
65                                 writeln!(w, "pub extern \"C\" fn {}_write(obj: *const {}) -> crate::c_types::derived::CVec_u8Z {{", for_obj, for_obj).unwrap();
66                                 writeln!(w, "\tcrate::c_types::serialize_obj(unsafe {{ &(*(*obj).inner) }})").unwrap();
67                                 writeln!(w, "}}").unwrap();
68                         },
69                         "util::ser::Readable" => {
70                                 writeln!(w, "#[no_mangle]").unwrap();
71                                 writeln!(w, "pub extern \"C\" fn {}_read(ser: crate::c_types::u8slice) -> {} {{", for_obj, for_obj).unwrap();
72                                 writeln!(w, "\tif let Ok(res) = crate::c_types::deserialize_obj(ser) {{").unwrap();
73                                 writeln!(w, "\t\t{} {{ inner: Box::into_raw(Box::new(res)), is_owned: true }}", for_obj).unwrap();
74                                 writeln!(w, "\t}} else {{").unwrap();
75                                 writeln!(w, "\t\t{} {{ inner: std::ptr::null_mut(), is_owned: true }}", for_obj).unwrap();
76                                 writeln!(w, "\t}}\n}}").unwrap();
77                         },
78                         _ => {},
79                 }
80         }
81 }
82
83 // *******************************
84 // *** Per-Type Printing Logic ***
85 // *******************************
86
87 macro_rules! walk_supertraits { ($t: expr, $types: expr, ($( $pat: pat => $e: expr),*) ) => { {
88         if $t.colon_token.is_some() {
89                 for st in $t.supertraits.iter() {
90                         match st {
91                                 syn::TypeParamBound::Trait(supertrait) => {
92                                         if supertrait.paren_token.is_some() || supertrait.lifetimes.is_some() {
93                                                 unimplemented!();
94                                         }
95                                         if let Some(ident) = supertrait.path.get_ident() {
96                                                 match (&format!("{}", ident) as &str, &ident) {
97                                                         $( $pat => $e, )*
98                                                 }
99                                         } else {
100                                                 let path = $types.resolve_path(&supertrait.path, None);
101                                                 match (&path as &str, &supertrait.path.segments.iter().last().unwrap().ident) {
102                                                         $( $pat => $e, )*
103                                                 }
104                                         }
105                                 },
106                                 syn::TypeParamBound::Lifetime(_) => unimplemented!(),
107                         }
108                 }
109         }
110 } } }
111
112 /// Gets a HashMap from name idents to the bounding trait for associated types.
113 /// eg if a native trait has a "type T = TraitA", this will return a HashMap containing a mapping
114 /// from "T" to "TraitA".
115 fn learn_associated_types<'a>(t: &'a syn::ItemTrait) -> HashMap<&'a syn::Ident, &'a syn::Ident> {
116         let mut associated_types = HashMap::new();
117         for item in t.items.iter() {
118                 match item {
119                         &syn::TraitItem::Type(ref t) => {
120                                 if t.default.is_some() || t.generics.lt_token.is_some() { unimplemented!(); }
121                                 let mut bounds_iter = t.bounds.iter();
122                                 match bounds_iter.next().unwrap() {
123                                         syn::TypeParamBound::Trait(tr) => {
124                                                 assert_simple_bound(&tr);
125                                                 associated_types.insert(&t.ident, assert_single_path_seg(&tr.path));
126                                         },
127                                         _ => unimplemented!(),
128                                 }
129                                 if bounds_iter.next().is_some() { unimplemented!(); }
130                         },
131                         _ => {},
132                 }
133         }
134         associated_types
135 }
136
137 /// Prints a C-mapped trait object containing a void pointer and a jump table for each function in
138 /// the original trait.
139 /// Implements the native Rust trait and relevant parent traits for the new C-mapped trait.
140 ///
141 /// Finally, implements Deref<MappedTrait> for MappedTrait which allows its use in types which need
142 /// a concrete Deref to the Rust trait.
143 fn writeln_trait<'a, 'b, W: std::io::Write>(w: &mut W, t: &'a syn::ItemTrait, types: &mut TypeResolver<'b, 'a>, extra_headers: &mut File, cpp_headers: &mut File) {
144         let trait_name = format!("{}", t.ident);
145         match export_status(&t.attrs) {
146                 ExportStatus::Export => {},
147                 ExportStatus::NoExport|ExportStatus::TestOnly => return,
148         }
149         writeln_docs(w, &t.attrs, "");
150
151         let mut gen_types = GenericTypes::new();
152         assert!(gen_types.learn_generics(&t.generics, types));
153
154         writeln!(w, "#[repr(C)]\npub struct {} {{", trait_name).unwrap();
155         writeln!(w, "\tpub this_arg: *mut c_void,").unwrap();
156         let associated_types = learn_associated_types(t);
157         let mut generated_fields = Vec::new(); // Every field's name except this_arg, used in Clone generation
158         for item in t.items.iter() {
159                 match item {
160                         &syn::TraitItem::Method(ref m) => {
161                                 match export_status(&m.attrs) {
162                                         ExportStatus::NoExport => {
163                                                 // NoExport in this context means we'll hit an unimplemented!() at runtime,
164                                                 // so bail out.
165                                                 unimplemented!();
166                                         },
167                                         ExportStatus::Export => {},
168                                         ExportStatus::TestOnly => continue,
169                                 }
170                                 if m.default.is_some() { unimplemented!(); }
171
172                                 gen_types.push_ctx();
173                                 assert!(gen_types.learn_generics(&m.sig.generics, types));
174
175                                 writeln_docs(w, &m.attrs, "\t");
176
177                                 if let syn::ReturnType::Type(_, rtype) = &m.sig.output {
178                                         if let syn::Type::Reference(r) = &**rtype {
179                                                 // We have to do quite a dance for trait functions which return references
180                                                 // - they ultimately require us to have a native Rust object stored inside
181                                                 // our concrete trait to return a reference to. However, users may wish to
182                                                 // update the value to be returned each time the function is called (or, to
183                                                 // make C copies of Rust impls equivalent, we have to be able to).
184                                                 //
185                                                 // Thus, we store a copy of the C-mapped type (which is just a pointer to
186                                                 // the Rust type and a flag to indicate whether deallocation needs to
187                                                 // happen) as well as provide an Option<>al function pointer which is
188                                                 // called when the trait method is called which allows updating on the fly.
189                                                 write!(w, "\tpub {}: ", m.sig.ident).unwrap();
190                                                 generated_fields.push(format!("{}", m.sig.ident));
191                                                 types.write_c_type(w, &*r.elem, Some(&gen_types), false);
192                                                 writeln!(w, ",").unwrap();
193                                                 writeln!(w, "\t/// Fill in the {} field as a reference to it will be given to Rust after this returns", m.sig.ident).unwrap();
194                                                 writeln!(w, "\t/// Note that this takes a pointer to this object, not the this_ptr like other methods do").unwrap();
195                                                 writeln!(w, "\t/// This function pointer may be NULL if {} is filled in when this object is created and never needs updating.", m.sig.ident).unwrap();
196                                                 writeln!(w, "\tpub set_{}: Option<extern \"C\" fn(&{})>,", m.sig.ident, trait_name).unwrap();
197                                                 generated_fields.push(format!("set_{}", m.sig.ident));
198                                                 // Note that cbindgen will now generate
199                                                 // typedef struct Thing {..., set_thing: (const Thing*), ...} Thing;
200                                                 // which does not compile since Thing is not defined before it is used.
201                                                 writeln!(extra_headers, "struct LDK{};", trait_name).unwrap();
202                                                 writeln!(extra_headers, "typedef struct LDK{} LDK{};", trait_name, trait_name).unwrap();
203                                                 gen_types.pop_ctx();
204                                                 continue;
205                                         }
206                                         // Sadly, this currently doesn't do what we want, but it should be easy to get
207                                         // cbindgen to support it. See https://github.com/eqrion/cbindgen/issues/531
208                                         writeln!(w, "\t#[must_use]").unwrap();
209                                 }
210
211                                 write!(w, "\tpub {}: extern \"C\" fn (", m.sig.ident).unwrap();
212                                 generated_fields.push(format!("{}", m.sig.ident));
213                                 write_method_params(w, &m.sig, &associated_types, "c_void", types, Some(&gen_types), true, false);
214                                 writeln!(w, ",").unwrap();
215
216                                 gen_types.pop_ctx();
217                         },
218                         &syn::TraitItem::Type(_) => {},
219                         _ => unimplemented!(),
220                 }
221         }
222         // Add functions which may be required for supertrait implementations.
223         walk_supertraits!(t, types, (
224                 ("Clone", _) => {
225                         writeln!(w, "\tpub clone: Option<extern \"C\" fn (this_arg: *const c_void) -> *mut c_void>,").unwrap();
226                         generated_fields.push("clone".to_owned());
227                 },
228                 ("std::cmp::Eq", _) => {
229                         writeln!(w, "\tpub eq: extern \"C\" fn (this_arg: *const c_void, other_arg: *const c_void) -> bool,").unwrap();
230                         generated_fields.push("eq".to_owned());
231                 },
232                 ("std::hash::Hash", _) => {
233                         writeln!(w, "\tpub hash: extern \"C\" fn (this_arg: *const c_void) -> u64,").unwrap();
234                         generated_fields.push("hash".to_owned());
235                 },
236                 ("Send", _) => {}, ("Sync", _) => {},
237                 (s, i) => {
238                         // For in-crate supertraits, just store a C-mapped copy of the supertrait as a member.
239                         if types.crate_types.traits.get(s).is_none() { unimplemented!(); }
240                         writeln!(w, "\tpub {}: crate::{},", i, s).unwrap();
241                         generated_fields.push(format!("{}", i));
242                 }
243         ) );
244         writeln!(w, "\tpub free: Option<extern \"C\" fn(this_arg: *mut c_void)>,").unwrap();
245         generated_fields.push("free".to_owned());
246         writeln!(w, "}}").unwrap();
247         // Implement supertraits for the C-mapped struct.
248         walk_supertraits!(t, types, (
249                 ("Send", _) => writeln!(w, "unsafe impl Send for {} {{}}", trait_name).unwrap(),
250                 ("Sync", _) => writeln!(w, "unsafe impl Sync for {} {{}}", trait_name).unwrap(),
251                 ("std::cmp::Eq", _) => {
252                         writeln!(w, "impl std::cmp::Eq for {} {{}}", trait_name).unwrap();
253                         writeln!(w, "impl std::cmp::PartialEq for {} {{", trait_name).unwrap();
254                         writeln!(w, "\tfn eq(&self, o: &Self) -> bool {{ (self.eq)(self.this_arg, o.this_arg) }}\n}}").unwrap();
255                 },
256                 ("std::hash::Hash", _) => {
257                         writeln!(w, "impl std::hash::Hash for {} {{", trait_name).unwrap();
258                         writeln!(w, "\tfn hash<H: std::hash::Hasher>(&self, hasher: &mut H) {{ hasher.write_u64((self.hash)(self.this_arg)) }}\n}}").unwrap();
259                 },
260                 ("Clone", _) => {
261                         writeln!(w, "impl Clone for {} {{", trait_name).unwrap();
262                         writeln!(w, "\tfn clone(&self) -> Self {{").unwrap();
263                         writeln!(w, "\t\tSelf {{").unwrap();
264                         writeln!(w, "\t\tthis_arg: if let Some(f) = self.clone {{ (f)(self.this_arg) }} else {{ self.this_arg }},").unwrap();
265                         for field in generated_fields.iter() {
266                                 writeln!(w, "\t\t\t{}: self.{}.clone(),", field, field).unwrap();
267                         }
268                         writeln!(w, "\t\t}}\n\t}}\n}}").unwrap();
269                 },
270                 (s, i) => {
271                         if s != "util::events::MessageSendEventsProvider" { unimplemented!(); }
272                         // XXX: We straight-up cheat here - instead of bothering to get the trait object we
273                         // just print what we need since this is only used in one place.
274                         writeln!(w, "impl lightning::{} for {} {{", s, trait_name).unwrap();
275                         writeln!(w, "\tfn get_and_clear_pending_msg_events(&self) -> Vec<lightning::util::events::MessageSendEvent> {{").unwrap();
276                         writeln!(w, "\t\t<crate::{} as lightning::{}>::get_and_clear_pending_msg_events(&self.{})", s, s, i).unwrap();
277                         writeln!(w, "\t}}\n}}").unwrap();
278                 }
279         ) );
280
281         // Finally, implement the original Rust trait for the newly created mapped trait.
282         writeln!(w, "\nuse {}::{}::{} as rust{};", types.orig_crate, types.module_path, t.ident, trait_name).unwrap();
283         write!(w, "impl rust{}", t.ident).unwrap();
284         maybe_write_generics(w, &t.generics, types, false);
285         writeln!(w, " for {} {{", trait_name).unwrap();
286         for item in t.items.iter() {
287                 match item {
288                         syn::TraitItem::Method(m) => {
289                                 if let ExportStatus::TestOnly = export_status(&m.attrs) { continue; }
290                                 if m.default.is_some() { unimplemented!(); }
291                                 if m.sig.constness.is_some() || m.sig.asyncness.is_some() || m.sig.unsafety.is_some() ||
292                                                 m.sig.abi.is_some() || m.sig.variadic.is_some() {
293                                         unimplemented!();
294                                 }
295                                 gen_types.push_ctx();
296                                 assert!(gen_types.learn_generics(&m.sig.generics, types));
297                                 write!(w, "\tfn {}", m.sig.ident).unwrap();
298                                 types.write_rust_generic_param(w, Some(&gen_types), m.sig.generics.params.iter());
299                                 write!(w, "(").unwrap();
300                                 for inp in m.sig.inputs.iter() {
301                                         match inp {
302                                                 syn::FnArg::Receiver(recv) => {
303                                                         if !recv.attrs.is_empty() || recv.reference.is_none() { unimplemented!(); }
304                                                         write!(w, "&").unwrap();
305                                                         if let Some(lft) = &recv.reference.as_ref().unwrap().1 {
306                                                                 write!(w, "'{} ", lft.ident).unwrap();
307                                                         }
308                                                         if recv.mutability.is_some() {
309                                                                 write!(w, "mut self").unwrap();
310                                                         } else {
311                                                                 write!(w, "self").unwrap();
312                                                         }
313                                                 },
314                                                 syn::FnArg::Typed(arg) => {
315                                                         if !arg.attrs.is_empty() { unimplemented!(); }
316                                                         match &*arg.pat {
317                                                                 syn::Pat::Ident(ident) => {
318                                                                         if !ident.attrs.is_empty() || ident.by_ref.is_some() ||
319                                                                                         ident.mutability.is_some() || ident.subpat.is_some() {
320                                                                                 unimplemented!();
321                                                                         }
322                                                                         write!(w, ", {}{}: ", if types.skip_arg(&*arg.ty, Some(&gen_types)) { "_" } else { "" }, ident.ident).unwrap();
323                                                                 }
324                                                                 _ => unimplemented!(),
325                                                         }
326                                                         types.write_rust_type(w, Some(&gen_types), &*arg.ty);
327                                                 }
328                                         }
329                                 }
330                                 write!(w, ")").unwrap();
331                                 match &m.sig.output {
332                                         syn::ReturnType::Type(_, rtype) => {
333                                                 write!(w, " -> ").unwrap();
334                                                 types.write_rust_type(w, Some(&gen_types), &*rtype)
335                                         },
336                                         _ => {},
337                                 }
338                                 write!(w, " {{\n\t\t").unwrap();
339                                 match export_status(&m.attrs) {
340                                         ExportStatus::NoExport => {
341                                                 unimplemented!();
342                                         },
343                                         _ => {},
344                                 }
345                                 if let syn::ReturnType::Type(_, rtype) = &m.sig.output {
346                                         if let syn::Type::Reference(r) = &**rtype {
347                                                 assert_eq!(m.sig.inputs.len(), 1); // Must only take self!
348                                                 writeln!(w, "if let Some(f) = self.set_{} {{", m.sig.ident).unwrap();
349                                                 writeln!(w, "\t\t\t(f)(self);").unwrap();
350                                                 write!(w, "\t\t}}\n\t\t").unwrap();
351                                                 types.write_from_c_conversion_to_ref_prefix(w, &*r.elem, Some(&gen_types));
352                                                 write!(w, "self.{}", m.sig.ident).unwrap();
353                                                 types.write_from_c_conversion_to_ref_suffix(w, &*r.elem, Some(&gen_types));
354                                                 writeln!(w, "\n\t}}").unwrap();
355                                                 gen_types.pop_ctx();
356                                                 continue;
357                                         }
358                                 }
359                                 write_method_var_decl_body(w, &m.sig, "\t", types, Some(&gen_types), true);
360                                 write!(w, "(self.{})(", m.sig.ident).unwrap();
361                                 write_method_call_params(w, &m.sig, &associated_types, "\t", types, Some(&gen_types), "", true);
362
363                                 writeln!(w, "\n\t}}").unwrap();
364                                 gen_types.pop_ctx();
365                         },
366                         &syn::TraitItem::Type(ref t) => {
367                                 if t.default.is_some() || t.generics.lt_token.is_some() { unimplemented!(); }
368                                 let mut bounds_iter = t.bounds.iter();
369                                 match bounds_iter.next().unwrap() {
370                                         syn::TypeParamBound::Trait(tr) => {
371                                                 writeln!(w, "\ttype {} = crate::{};", t.ident, types.resolve_path(&tr.path, Some(&gen_types))).unwrap();
372                                         },
373                                         _ => unimplemented!(),
374                                 }
375                                 if bounds_iter.next().is_some() { unimplemented!(); }
376                         },
377                         _ => unimplemented!(),
378                 }
379         }
380         writeln!(w, "}}\n").unwrap();
381         writeln!(w, "// We're essentially a pointer already, or at least a set of pointers, so allow us to be used").unwrap();
382         writeln!(w, "// directly as a Deref trait in higher-level structs:").unwrap();
383         writeln!(w, "impl std::ops::Deref for {} {{\n\ttype Target = Self;", trait_name).unwrap();
384         writeln!(w, "\tfn deref(&self) -> &Self {{\n\t\tself\n\t}}\n}}").unwrap();
385
386         writeln!(w, "/// Calls the free function if one is set").unwrap();
387         writeln!(w, "#[no_mangle]\npub extern \"C\" fn {}_free(this_ptr: {}) {{ }}", trait_name, trait_name).unwrap();
388         writeln!(w, "impl Drop for {} {{", trait_name).unwrap();
389         writeln!(w, "\tfn drop(&mut self) {{").unwrap();
390         writeln!(w, "\t\tif let Some(f) = self.free {{").unwrap();
391         writeln!(w, "\t\t\tf(self.this_arg);").unwrap();
392         writeln!(w, "\t\t}}\n\t}}\n}}").unwrap();
393
394         write_cpp_wrapper(cpp_headers, &trait_name, true);
395         types.trait_declared(&t.ident, t);
396 }
397
398 /// Write out a simple "opaque" type (eg structs) which contain a pointer to the native Rust type
399 /// and a flag to indicate whether Drop'ing the mapped struct drops the underlying Rust type.
400 ///
401 /// Also writes out a _free function and a C++ wrapper which handles calling _free.
402 fn writeln_opaque<W: std::io::Write>(w: &mut W, ident: &syn::Ident, struct_name: &str, generics: &syn::Generics, attrs: &[syn::Attribute], types: &TypeResolver, extra_headers: &mut File, cpp_headers: &mut File) {
403         // If we directly read the original type by its original name, cbindgen hits
404         // https://github.com/eqrion/cbindgen/issues/286 Thus, instead, we import it as a temporary
405         // name and then reference it by that name, which works around the issue.
406         write!(w, "\nuse {}::{}::{} as native{}Import;\ntype native{} = native{}Import", types.orig_crate, types.module_path, ident, ident, ident, ident).unwrap();
407         maybe_write_generics(w, &generics, &types, true);
408         writeln!(w, ";\n").unwrap();
409         writeln!(extra_headers, "struct native{}Opaque;\ntypedef struct native{}Opaque LDKnative{};", ident, ident, ident).unwrap();
410         writeln_docs(w, &attrs, "");
411         writeln!(w, "#[must_use]\n#[repr(C)]\npub struct {} {{\n\t/// Nearly everywhere, inner must be non-null, however in places where", struct_name).unwrap();
412         writeln!(w, "\t/// the Rust equivalent takes an Option, it may be set to null to indicate None.").unwrap();
413         writeln!(w, "\tpub inner: *mut native{},\n\tpub is_owned: bool,\n}}\n", ident).unwrap();
414         writeln!(w, "impl Drop for {} {{\n\tfn drop(&mut self) {{", struct_name).unwrap();
415         writeln!(w, "\t\tif self.is_owned && !self.inner.is_null() {{").unwrap();
416         writeln!(w, "\t\t\tlet _ = unsafe {{ Box::from_raw(self.inner) }};\n\t\t}}\n\t}}\n}}").unwrap();
417         writeln!(w, "#[no_mangle]\npub extern \"C\" fn {}_free(this_ptr: {}) {{ }}", struct_name, struct_name).unwrap();
418         writeln!(w, "#[allow(unused)]").unwrap();
419         writeln!(w, "/// Used only if an object of this type is returned as a trait impl by a method").unwrap();
420         writeln!(w, "extern \"C\" fn {}_free_void(this_ptr: *mut c_void) {{", struct_name).unwrap();
421         writeln!(w, "\tunsafe {{ let _ = Box::from_raw(this_ptr as *mut native{}); }}\n}}", struct_name).unwrap();
422         writeln!(w, "#[allow(unused)]").unwrap();
423         writeln!(w, "/// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy").unwrap();
424         writeln!(w, "impl {} {{", struct_name).unwrap();
425         writeln!(w, "\tpub(crate) fn take_ptr(mut self) -> *mut native{} {{", struct_name).unwrap();
426         writeln!(w, "\t\tassert!(self.is_owned);").unwrap();
427         writeln!(w, "\t\tlet ret = self.inner;").unwrap();
428         writeln!(w, "\t\tself.inner = std::ptr::null_mut();").unwrap();
429         writeln!(w, "\t\tret").unwrap();
430         writeln!(w, "\t}}\n}}").unwrap();
431
432         'attr_loop: for attr in attrs.iter() {
433                 let tokens_clone = attr.tokens.clone();
434                 let mut token_iter = tokens_clone.into_iter();
435                 if let Some(token) = token_iter.next() {
436                         match token {
437                                 TokenTree::Group(g) => {
438                                         if format!("{}", single_ident_generic_path_to_ident(&attr.path).unwrap()) == "derive" {
439                                                 for id in g.stream().into_iter() {
440                                                         if let TokenTree::Ident(i) = id {
441                                                                 if i == "Clone" {
442                                                                         writeln!(w, "impl Clone for {} {{", struct_name).unwrap();
443                                                                         writeln!(w, "\tfn clone(&self) -> Self {{").unwrap();
444                                                                         writeln!(w, "\t\tSelf {{").unwrap();
445                                                                         writeln!(w, "\t\t\tinner: Box::into_raw(Box::new(unsafe {{ &*self.inner }}.clone())),").unwrap();
446                                                                         writeln!(w, "\t\t\tis_owned: true,").unwrap();
447                                                                         writeln!(w, "\t\t}}\n\t}}\n}}").unwrap();
448                                                                         writeln!(w, "#[allow(unused)]").unwrap();
449                                                                         writeln!(w, "/// Used only if an object of this type is returned as a trait impl by a method").unwrap();
450                                                                         writeln!(w, "pub(crate) extern \"C\" fn {}_clone_void(this_ptr: *const c_void) -> *mut c_void {{", struct_name).unwrap();
451                                                                         writeln!(w, "\tBox::into_raw(Box::new(unsafe {{ (*(this_ptr as *mut native{})).clone() }})) as *mut c_void", struct_name).unwrap();
452                                                                         writeln!(w, "}}").unwrap();
453                                                                         break 'attr_loop;
454                                                                 }
455                                                         }
456                                                 }
457                                         }
458                                 },
459                                 _ => {},
460                         }
461                 }
462         }
463
464         write_cpp_wrapper(cpp_headers, &format!("{}", ident), true);
465 }
466
467 /// Writes out all the relevant mappings for a Rust struct, deferring to writeln_opaque to generate
468 /// the struct itself, and then writing getters and setters for public, understood-type fields and
469 /// a constructor if every field is public.
470 fn writeln_struct<'a, 'b, W: std::io::Write>(w: &mut W, s: &'a syn::ItemStruct, types: &mut TypeResolver<'b, 'a>, extra_headers: &mut File, cpp_headers: &mut File) {
471         let struct_name = &format!("{}", s.ident);
472         let export = export_status(&s.attrs);
473         match export {
474                 ExportStatus::Export => {},
475                 ExportStatus::TestOnly => return,
476                 ExportStatus::NoExport => {
477                         types.struct_ignored(&s.ident);
478                         return;
479                 }
480         }
481
482         writeln_opaque(w, &s.ident, struct_name, &s.generics, &s.attrs, types, extra_headers, cpp_headers);
483
484         eprintln!("exporting fields for {}", struct_name);
485         if let syn::Fields::Named(fields) = &s.fields {
486                 let mut gen_types = GenericTypes::new();
487                 assert!(gen_types.learn_generics(&s.generics, types));
488
489                 let mut all_fields_settable = true;
490                 for field in fields.named.iter() {
491                         if let syn::Visibility::Public(_) = field.vis {
492                                 let export = export_status(&field.attrs);
493                                 match export {
494                                         ExportStatus::Export => {},
495                                         ExportStatus::NoExport|ExportStatus::TestOnly => {
496                                                 all_fields_settable = false;
497                                                 continue
498                                         },
499                                 }
500
501                                 if let Some(ident) = &field.ident {
502                                         let ref_type = syn::Type::Reference(syn::TypeReference {
503                                                 and_token: syn::Token!(&)(Span::call_site()), lifetime: None, mutability: None,
504                                                 elem: Box::new(field.ty.clone()) });
505                                         if types.understood_c_type(&ref_type, Some(&gen_types)) {
506                                                 writeln_docs(w, &field.attrs, "");
507                                                 write!(w, "#[no_mangle]\npub extern \"C\" fn {}_get_{}(this_ptr: &{}) -> ", struct_name, ident, struct_name).unwrap();
508                                                 types.write_c_type(w, &ref_type, Some(&gen_types), true);
509                                                 write!(w, " {{\n\tlet mut inner_val = &mut unsafe {{ &mut *this_ptr.inner }}.{};\n\t", ident).unwrap();
510                                                 let local_var = types.write_to_c_conversion_new_var(w, &syn::Ident::new("inner_val", Span::call_site()), &ref_type, Some(&gen_types), true);
511                                                 if local_var { write!(w, "\n\t").unwrap(); }
512                                                 types.write_to_c_conversion_inline_prefix(w, &ref_type, Some(&gen_types), true);
513                                                 if local_var {
514                                                         write!(w, "inner_val").unwrap();
515                                                 } else {
516                                                         write!(w, "(*inner_val)").unwrap();
517                                                 }
518                                                 types.write_to_c_conversion_inline_suffix(w, &ref_type, Some(&gen_types), true);
519                                                 writeln!(w, "\n}}").unwrap();
520                                         }
521
522                                         if types.understood_c_type(&field.ty, Some(&gen_types)) {
523                                                 writeln_docs(w, &field.attrs, "");
524                                                 write!(w, "#[no_mangle]\npub extern \"C\" fn {}_set_{}(this_ptr: &mut {}, mut val: ", struct_name, ident, struct_name).unwrap();
525                                                 types.write_c_type(w, &field.ty, Some(&gen_types), false);
526                                                 write!(w, ") {{\n\t").unwrap();
527                                                 let local_var = types.write_from_c_conversion_new_var(w, &syn::Ident::new("val", Span::call_site()), &field.ty, Some(&gen_types));
528                                                 if local_var { write!(w, "\n\t").unwrap(); }
529                                                 write!(w, "unsafe {{ &mut *this_ptr.inner }}.{} = ", ident).unwrap();
530                                                 types.write_from_c_conversion_prefix(w, &field.ty, Some(&gen_types));
531                                                 write!(w, "val").unwrap();
532                                                 types.write_from_c_conversion_suffix(w, &field.ty, Some(&gen_types));
533                                                 writeln!(w, ";\n}}").unwrap();
534                                         } else { all_fields_settable = false; }
535                                 } else { all_fields_settable = false; }
536                         } else { all_fields_settable = false; }
537                 }
538
539                 if all_fields_settable {
540                         // Build a constructor!
541                         write!(w, "#[must_use]\n#[no_mangle]\npub extern \"C\" fn {}_new(", struct_name).unwrap();
542                         for (idx, field) in fields.named.iter().enumerate() {
543                                 if idx != 0 { write!(w, ", ").unwrap(); }
544                                 write!(w, "mut {}_arg: ", field.ident.as_ref().unwrap()).unwrap();
545                                 types.write_c_type(w, &field.ty, Some(&gen_types), false);
546                         }
547                         write!(w, ") -> {} {{\n\t", struct_name).unwrap();
548                         for field in fields.named.iter() {
549                                 let field_name = format!("{}_arg", field.ident.as_ref().unwrap());
550                                 if types.write_from_c_conversion_new_var(w, &syn::Ident::new(&field_name, Span::call_site()), &field.ty, Some(&gen_types)) {
551                                         write!(w, "\n\t").unwrap();
552                                 }
553                         }
554                         writeln!(w, "{} {{ inner: Box::into_raw(Box::new(native{} {{", struct_name, s.ident).unwrap();
555                         for field in fields.named.iter() {
556                                 write!(w, "\t\t{}: ", field.ident.as_ref().unwrap()).unwrap();
557                                 types.write_from_c_conversion_prefix(w, &field.ty, Some(&gen_types));
558                                 write!(w, "{}_arg", field.ident.as_ref().unwrap()).unwrap();
559                                 types.write_from_c_conversion_suffix(w, &field.ty, Some(&gen_types));
560                                 writeln!(w, ",").unwrap();
561                         }
562                         writeln!(w, "\t}})), is_owned: true }}\n}}").unwrap();
563                 }
564         }
565
566         types.struct_imported(&s.ident, struct_name.clone());
567 }
568
569 /// Prints a relevant conversion for impl *
570 ///
571 /// For simple impl Struct {}s, this just outputs the wrapper functions as Struct_fn_name() { .. }.
572 ///
573 /// For impl Trait for Struct{}s, this non-exported generates wrapper functions as
574 /// Trait_Struct_fn_name and a Struct_as_Trait(&struct) -> Trait function which returns a populated
575 /// Trait struct containing a pointer to the passed struct's inner field and the wrapper functions.
576 ///
577 /// A few non-crate Traits are hard-coded including Default.
578 fn writeln_impl<W: std::io::Write>(w: &mut W, i: &syn::ItemImpl, types: &mut TypeResolver) {
579         if let &syn::Type::Path(ref p) = &*i.self_ty {
580                 if p.qself.is_some() { unimplemented!(); }
581                 if let Some(ident) = single_ident_generic_path_to_ident(&p.path) {
582                         if let Some(resolved_path) = types.maybe_resolve_non_ignored_ident(&ident) {
583                                 let mut gen_types = GenericTypes::new();
584                                 if !gen_types.learn_generics(&i.generics, types) {
585                                         eprintln!("Not implementing anything for impl {} due to not understood generics", ident);
586                                         return;
587                                 }
588
589                                 if i.defaultness.is_some() || i.unsafety.is_some() { unimplemented!(); }
590                                 if let Some(trait_path) = i.trait_.as_ref() {
591                                         if trait_path.0.is_some() { unimplemented!(); }
592                                         if types.understood_c_path(&trait_path.1) {
593                                                 let full_trait_path = types.resolve_path(&trait_path.1, None);
594                                                 let trait_obj = *types.crate_types.traits.get(&full_trait_path).unwrap();
595                                                 // We learn the associated types maping from the original trait object.
596                                                 // That's great, except that they are unresolved idents, so if we learn
597                                                 // mappings from a trai defined in a different file, we may mis-resolve or
598                                                 // fail to resolve the mapped types.
599                                                 let trait_associated_types = learn_associated_types(trait_obj);
600                                                 let mut impl_associated_types = HashMap::new();
601                                                 for item in i.items.iter() {
602                                                         match item {
603                                                                 syn::ImplItem::Type(t) => {
604                                                                         if let syn::Type::Path(p) = &t.ty {
605                                                                                 if let Some(id) = single_ident_generic_path_to_ident(&p.path) {
606                                                                                         impl_associated_types.insert(&t.ident, id);
607                                                                                 }
608                                                                         }
609                                                                 },
610                                                                 _ => {},
611                                                         }
612                                                 }
613
614                                                 let export = export_status(&trait_obj.attrs);
615                                                 match export {
616                                                         ExportStatus::Export => {},
617                                                         ExportStatus::NoExport|ExportStatus::TestOnly => return,
618                                                 }
619                                                 write!(w, "#[no_mangle]\npub extern \"C\" fn {}_as_{}(this_arg: *const {}) -> crate::{} {{\n", ident, trait_obj.ident, ident, full_trait_path).unwrap();
620                                                 writeln!(w, "\tcrate::{} {{", full_trait_path).unwrap();
621                                                 writeln!(w, "\t\tthis_arg: unsafe {{ (*this_arg).inner as *mut c_void }},").unwrap();
622                                                 writeln!(w, "\t\tfree: None,").unwrap();
623
624                                                 macro_rules! write_meth {
625                                                         ($m: expr, $trait: expr, $indent: expr) => {
626                                                                 let trait_method = $trait.items.iter().filter_map(|item| {
627                                                                         if let syn::TraitItem::Method(t_m) = item { Some(t_m) } else { None }
628                                                                 }).find(|trait_meth| trait_meth.sig.ident == $m.sig.ident).unwrap();
629                                                                 match export_status(&trait_method.attrs) {
630                                                                         ExportStatus::Export => {},
631                                                                         ExportStatus::NoExport => {
632                                                                                 write!(w, "{}\t\t//XXX: Need to export {}\n", $indent, $m.sig.ident).unwrap();
633                                                                                 continue;
634                                                                         },
635                                                                         ExportStatus::TestOnly => continue,
636                                                                 }
637
638                                                                 let mut printed = false;
639                                                                 if let syn::ReturnType::Type(_, rtype) = &$m.sig.output {
640                                                                         if let syn::Type::Reference(r) = &**rtype {
641                                                                                 write!(w, "\n\t\t{}{}: ", $indent, $m.sig.ident).unwrap();
642                                                                                 types.write_empty_rust_val(Some(&gen_types), w, &*r.elem);
643                                                                                 writeln!(w, ",\n{}\t\tset_{}: Some({}_{}_set_{}),", $indent, $m.sig.ident, ident, trait_obj.ident, $m.sig.ident).unwrap();
644                                                                                 printed = true;
645                                                                         }
646                                                                 }
647                                                                 if !printed {
648                                                                         write!(w, "{}\t\t{}: {}_{}_{},\n", $indent, $m.sig.ident, ident, trait_obj.ident, $m.sig.ident).unwrap();
649                                                                 }
650                                                         }
651                                                 }
652                                                 for item in trait_obj.items.iter() {
653                                                         match item {
654                                                                 syn::TraitItem::Method(m) => {
655                                                                         write_meth!(m, trait_obj, "");
656                                                                 },
657                                                                 _ => {},
658                                                         }
659                                                 }
660                                                 walk_supertraits!(trait_obj, types, (
661                                                         ("Clone", _) => {
662                                                                 writeln!(w, "\t\tclone: Some({}_clone_void),", ident).unwrap();
663                                                         },
664                                                         (s, t) => {
665                                                                 if s.starts_with("util::") {
666                                                                         let supertrait_obj = types.crate_types.traits.get(s).unwrap();
667                                                                         writeln!(w, "\t\t{}: crate::{} {{", t, s).unwrap();
668                                                                         writeln!(w, "\t\t\tthis_arg: unsafe {{ (*this_arg).inner as *mut c_void }},").unwrap();
669                                                                         writeln!(w, "\t\t\tfree: None,").unwrap();
670                                                                         for item in supertrait_obj.items.iter() {
671                                                                                 match item {
672                                                                                         syn::TraitItem::Method(m) => {
673                                                                                                 write_meth!(m, supertrait_obj, "\t");
674                                                                                         },
675                                                                                         _ => {},
676                                                                                 }
677                                                                         }
678                                                                         write!(w, "\t\t}},\n").unwrap();
679                                                                 }
680                                                         }
681                                                 ) );
682                                                 write!(w, "\t}}\n}}\nuse {}::{} as {}TraitImport;\n", types.orig_crate, full_trait_path, trait_obj.ident).unwrap();
683
684                                                 macro_rules! impl_meth {
685                                                         ($m: expr, $trait: expr, $indent: expr) => {
686                                                                 let trait_method = $trait.items.iter().filter_map(|item| {
687                                                                         if let syn::TraitItem::Method(t_m) = item { Some(t_m) } else { None }
688                                                                 }).find(|trait_meth| trait_meth.sig.ident == $m.sig.ident).unwrap();
689                                                                 match export_status(&trait_method.attrs) {
690                                                                         ExportStatus::Export => {},
691                                                                         ExportStatus::NoExport|ExportStatus::TestOnly => continue,
692                                                                 }
693
694                                                                 if let syn::ReturnType::Type(_, _) = &$m.sig.output {
695                                                                         writeln!(w, "#[must_use]").unwrap();
696                                                                 }
697                                                                 write!(w, "extern \"C\" fn {}_{}_{}(", ident, trait_obj.ident, $m.sig.ident).unwrap();
698                                                                 gen_types.push_ctx();
699                                                                 assert!(gen_types.learn_generics(&$m.sig.generics, types));
700                                                                 write_method_params(w, &$m.sig, &trait_associated_types, "c_void", types, Some(&gen_types), true, true);
701                                                                 write!(w, " {{\n\t").unwrap();
702                                                                 write_method_var_decl_body(w, &$m.sig, "", types, Some(&gen_types), false);
703                                                                 let mut takes_self = false;
704                                                                 for inp in $m.sig.inputs.iter() {
705                                                                         if let syn::FnArg::Receiver(_) = inp {
706                                                                                 takes_self = true;
707                                                                         }
708                                                                 }
709                                                                 if takes_self {
710                                                                         write!(w, "unsafe {{ &mut *(this_arg as *mut native{}) }}.{}(", ident, $m.sig.ident).unwrap();
711                                                                 } else {
712                                                                         write!(w, "{}::{}::{}(", types.orig_crate, resolved_path, $m.sig.ident).unwrap();
713                                                                 }
714
715                                                                 let mut real_type = "".to_string();
716                                                                 match &$m.sig.output {
717                                                                         syn::ReturnType::Type(_, rtype) => {
718                                                                                 if let Some(mut remaining_path) = first_seg_self(&*rtype) {
719                                                                                         if let Some(associated_seg) = get_single_remaining_path_seg(&mut remaining_path) {
720                                                                                                 real_type = format!("{}", impl_associated_types.get(associated_seg).unwrap());
721                                                                                         }
722                                                                                 }
723                                                                         },
724                                                                         _ => {},
725                                                                 }
726                                                                 write_method_call_params(w, &$m.sig, &trait_associated_types, "", types, Some(&gen_types), &real_type, false);
727                                                                 gen_types.pop_ctx();
728                                                                 write!(w, "\n}}\n").unwrap();
729                                                                 if let syn::ReturnType::Type(_, rtype) = &$m.sig.output {
730                                                                         if let syn::Type::Reference(r) = &**rtype {
731                                                                                 assert_eq!($m.sig.inputs.len(), 1); // Must only take self
732                                                                                 writeln!(w, "extern \"C\" fn {}_{}_set_{}(trait_self_arg: &{}) {{", ident, trait_obj.ident, $m.sig.ident, trait_obj.ident).unwrap();
733                                                                                 writeln!(w, "\t// This is a bit race-y in the general case, but for our specific use-cases today, we're safe").unwrap();
734                                                                                 writeln!(w, "\t// Specifically, we must ensure that the first time we're called it can never be in parallel").unwrap();
735                                                                                 write!(w, "\tif ").unwrap();
736                                                                                 types.write_empty_rust_val_check(Some(&gen_types), w, &*r.elem, &format!("trait_self_arg.{}", $m.sig.ident));
737                                                                                 writeln!(w, " {{").unwrap();
738                                                                                 writeln!(w, "\t\tunsafe {{ &mut *(trait_self_arg as *const {}  as *mut {}) }}.{} = {}_{}_{}(trait_self_arg.this_arg);", trait_obj.ident, trait_obj.ident, $m.sig.ident, ident, trait_obj.ident, $m.sig.ident).unwrap();
739                                                                                 writeln!(w, "\t}}").unwrap();
740                                                                                 writeln!(w, "}}").unwrap();
741                                                                         }
742                                                                 }
743                                                         }
744                                                 }
745
746                                                 for item in i.items.iter() {
747                                                         match item {
748                                                                 syn::ImplItem::Method(m) => {
749                                                                         impl_meth!(m, trait_obj, "");
750                                                                 },
751                                                                 syn::ImplItem::Type(_) => {},
752                                                                 _ => unimplemented!(),
753                                                         }
754                                                 }
755                                                 walk_supertraits!(trait_obj, types, (
756                                                         (s, t) => {
757                                                                 if s.starts_with("util::") {
758                                                                         writeln!(w, "use {}::{} as native{}Trait;", types.orig_crate, s, t).unwrap();
759                                                                         let supertrait_obj = *types.crate_types.traits.get(s).unwrap();
760                                                                         for item in supertrait_obj.items.iter() {
761                                                                                 match item {
762                                                                                         syn::TraitItem::Method(m) => {
763                                                                                                 impl_meth!(m, supertrait_obj, "\t");
764                                                                                         },
765                                                                                         _ => {},
766                                                                                 }
767                                                                         }
768                                                                 }
769                                                         }
770                                                 ) );
771                                                 write!(w, "\n").unwrap();
772                                         } else if let Some(trait_ident) = trait_path.1.get_ident() {
773                                                 //XXX: implement for other things like ToString
774                                                 match &format!("{}", trait_ident) as &str {
775                                                         "From" => {},
776                                                         "Default" => {
777                                                                 write!(w, "#[must_use]\n#[no_mangle]\npub extern \"C\" fn {}_default() -> {} {{\n", ident, ident).unwrap();
778                                                                 write!(w, "\t{} {{ inner: Box::into_raw(Box::new(Default::default())), is_owned: true }}\n", ident).unwrap();
779                                                                 write!(w, "}}\n").unwrap();
780                                                         },
781                                                         "PartialEq" => {},
782                                                         // If we have no generics, try a manual implementation:
783                                                         _ if p.path.get_ident().is_some() => maybe_convert_trait_impl(w, &trait_path.1, &ident, types),
784                                                         _ => {},
785                                                 }
786                                         } else if p.path.get_ident().is_some() {
787                                                 // If we have no generics, try a manual implementation:
788                                                 maybe_convert_trait_impl(w, &trait_path.1, &ident, types);
789                                         }
790                                 } else {
791                                         let declared_type = (*types.get_declared_type(&ident).unwrap()).clone();
792                                         for item in i.items.iter() {
793                                                 match item {
794                                                         syn::ImplItem::Method(m) => {
795                                                                 if let syn::Visibility::Public(_) = m.vis {
796                                                                         match export_status(&m.attrs) {
797                                                                                 ExportStatus::Export => {},
798                                                                                 ExportStatus::NoExport|ExportStatus::TestOnly => continue,
799                                                                         }
800                                                                         if m.defaultness.is_some() { unimplemented!(); }
801                                                                         writeln_docs(w, &m.attrs, "");
802                                                                         if let syn::ReturnType::Type(_, _) = &m.sig.output {
803                                                                                 writeln!(w, "#[must_use]").unwrap();
804                                                                         }
805                                                                         write!(w, "#[no_mangle]\npub extern \"C\" fn {}_{}(", ident, m.sig.ident).unwrap();
806                                                                         let ret_type = match &declared_type {
807                                                                                 DeclType::MirroredEnum => format!("{}", ident),
808                                                                                 DeclType::StructImported => format!("{}", ident),
809                                                                                 _ => unimplemented!(),
810                                                                         };
811                                                                         gen_types.push_ctx();
812                                                                         assert!(gen_types.learn_generics(&m.sig.generics, types));
813                                                                         write_method_params(w, &m.sig, &HashMap::new(), &ret_type, types, Some(&gen_types), false, true);
814                                                                         write!(w, " {{\n\t").unwrap();
815                                                                         write_method_var_decl_body(w, &m.sig, "", types, Some(&gen_types), false);
816                                                                         let mut takes_self = false;
817                                                                         let mut takes_mut_self = false;
818                                                                         for inp in m.sig.inputs.iter() {
819                                                                                 if let syn::FnArg::Receiver(r) = inp {
820                                                                                         takes_self = true;
821                                                                                         if r.mutability.is_some() { takes_mut_self = true; }
822                                                                                 }
823                                                                         }
824                                                                         if takes_mut_self {
825                                                                                 write!(w, "unsafe {{ &mut (*(this_arg.inner as *mut native{})) }}.{}(", ident, m.sig.ident).unwrap();
826                                                                         } else if takes_self {
827                                                                                 write!(w, "unsafe {{ &*this_arg.inner }}.{}(", m.sig.ident).unwrap();
828                                                                         } else {
829                                                                                 write!(w, "{}::{}::{}(", types.orig_crate, resolved_path, m.sig.ident).unwrap();
830                                                                         }
831                                                                         write_method_call_params(w, &m.sig, &HashMap::new(), "", types, Some(&gen_types), &ret_type, false);
832                                                                         gen_types.pop_ctx();
833                                                                         writeln!(w, "\n}}\n").unwrap();
834                                                                 }
835                                                         },
836                                                         _ => {},
837                                                 }
838                                         }
839                                 }
840                         } else {
841                                 eprintln!("Not implementing anything for {} due to no-resolve (probably the type isn't pub or its marked not exported)", ident);
842                         }
843                 }
844         }
845 }
846
847 /// Returns true if the enum will be mapped as an opaue (ie struct with a pointer to the underlying
848 /// type), otherwise it is mapped into a transparent, C-compatible version of itself.
849 fn is_enum_opaque(e: &syn::ItemEnum) -> bool {
850         for var in e.variants.iter() {
851                 if let syn::Fields::Unit = var.fields {
852                 } else if let syn::Fields::Named(fields) = &var.fields {
853                         for field in fields.named.iter() {
854                                 match export_status(&field.attrs) {
855                                         ExportStatus::Export|ExportStatus::TestOnly => {},
856                                         ExportStatus::NoExport => return true,
857                                 }
858                         }
859                 } else {
860                         return true;
861                 }
862         }
863         false
864 }
865
866 /// Print a mapping of an enum. If all of the enum's fields are C-mapped in some form (or the enum
867 /// is unitary), we generate an equivalent enum with all types replaced with their C mapped
868 /// versions followed by conversion functions which map between the Rust version and the C mapped
869 /// version.
870 fn writeln_enum<'a, 'b, W: std::io::Write>(w: &mut W, e: &'a syn::ItemEnum, types: &mut TypeResolver<'b, 'a>, extra_headers: &mut File, cpp_headers: &mut File) {
871         match export_status(&e.attrs) {
872                 ExportStatus::Export => {},
873                 ExportStatus::NoExport|ExportStatus::TestOnly => return,
874         }
875
876         if is_enum_opaque(e) {
877                 eprintln!("Skipping enum {} as it contains non-unit fields", e.ident);
878                 writeln_opaque(w, &e.ident, &format!("{}", e.ident), &e.generics, &e.attrs, types, extra_headers, cpp_headers);
879                 types.enum_ignored(&e.ident);
880                 return;
881         }
882         writeln_docs(w, &e.attrs, "");
883
884         if e.generics.lt_token.is_some() {
885                 unimplemented!();
886         }
887         types.mirrored_enum_declared(&e.ident);
888
889         let mut needs_free = false;
890
891         writeln!(w, "#[must_use]\n#[derive(Clone)]\n#[repr(C)]\npub enum {} {{", e.ident).unwrap();
892         for var in e.variants.iter() {
893                 assert_eq!(export_status(&var.attrs), ExportStatus::Export); // We can't partially-export a mirrored enum
894                 writeln_docs(w, &var.attrs, "\t");
895                 write!(w, "\t{}", var.ident).unwrap();
896                 if let syn::Fields::Named(fields) = &var.fields {
897                         needs_free = true;
898                         writeln!(w, " {{").unwrap();
899                         for field in fields.named.iter() {
900                                 if export_status(&field.attrs) == ExportStatus::TestOnly { continue; }
901                                 write!(w, "\t\t{}: ", field.ident.as_ref().unwrap()).unwrap();
902                                 types.write_c_type(w, &field.ty, None, false);
903                                 writeln!(w, ",").unwrap();
904                         }
905                         write!(w, "\t}}").unwrap();
906                 }
907                 if var.discriminant.is_some() { unimplemented!(); }
908                 writeln!(w, ",").unwrap();
909         }
910         writeln!(w, "}}\nuse {}::{}::{} as native{};\nimpl {} {{", types.orig_crate, types.module_path, e.ident, e.ident, e.ident).unwrap();
911
912         macro_rules! write_conv {
913                 ($fn_sig: expr, $to_c: expr, $ref: expr) => {
914                         writeln!(w, "\t#[allow(unused)]\n\tpub(crate) fn {} {{\n\t\tmatch {} {{", $fn_sig, if $to_c { "native" } else { "self" }).unwrap();
915                         for var in e.variants.iter() {
916                                 write!(w, "\t\t\t{}{}::{} ", if $to_c { "native" } else { "" }, e.ident, var.ident).unwrap();
917                                 if let syn::Fields::Named(fields) = &var.fields {
918                                         write!(w, "{{").unwrap();
919                                         for field in fields.named.iter() {
920                                                 if export_status(&field.attrs) == ExportStatus::TestOnly { continue; }
921                                                 write!(w, "{}{}, ", if $ref { "ref " } else { "mut " }, field.ident.as_ref().unwrap()).unwrap();
922                                         }
923                                         write!(w, "}} ").unwrap();
924                                 }
925                                 write!(w, "=>").unwrap();
926                                 if let syn::Fields::Named(fields) = &var.fields {
927                                         write!(w, " {{\n\t\t\t\t").unwrap();
928                                         for field in fields.named.iter() {
929                                                 if export_status(&field.attrs) == ExportStatus::TestOnly { continue; }
930                                                 let mut sink = ::std::io::sink();
931                                                 let mut out: &mut dyn std::io::Write = if $ref { &mut sink } else { w };
932                                                 let new_var = if $to_c {
933                                                         types.write_to_c_conversion_new_var(&mut out, field.ident.as_ref().unwrap(), &field.ty, None, false)
934                                                 } else {
935                                                         types.write_from_c_conversion_new_var(&mut out, field.ident.as_ref().unwrap(), &field.ty, None)
936                                                 };
937                                                 if $ref || new_var {
938                                                         if $ref {
939                                                                 write!(w, "let mut {}_nonref = (*{}).clone();\n\t\t\t\t", field.ident.as_ref().unwrap(), field.ident.as_ref().unwrap()).unwrap();
940                                                                 if new_var {
941                                                                         let nonref_ident = syn::Ident::new(&format!("{}_nonref", field.ident.as_ref().unwrap()), Span::call_site());
942                                                                         if $to_c {
943                                                                                 types.write_to_c_conversion_new_var(w, &nonref_ident, &field.ty, None, false);
944                                                                         } else {
945                                                                                 types.write_from_c_conversion_new_var(w, &nonref_ident, &field.ty, None);
946                                                                         }
947                                                                         write!(w, "\n\t\t\t\t").unwrap();
948                                                                 }
949                                                         } else {
950                                                                 write!(w, "\n\t\t\t\t").unwrap();
951                                                         }
952                                                 }
953                                         }
954                                 } else { write!(w, " ").unwrap(); }
955                                 write!(w, "{}{}::{}", if $to_c { "" } else { "native" }, e.ident, var.ident).unwrap();
956                                 if let syn::Fields::Named(fields) = &var.fields {
957                                         write!(w, " {{").unwrap();
958                                         for field in fields.named.iter() {
959                                                 if export_status(&field.attrs) == ExportStatus::TestOnly { continue; }
960                                                 write!(w, "\n\t\t\t\t\t{}: ", field.ident.as_ref().unwrap()).unwrap();
961                                                 if $to_c {
962                                                         types.write_to_c_conversion_inline_prefix(w, &field.ty, None, false);
963                                                 } else {
964                                                         types.write_from_c_conversion_prefix(w, &field.ty, None);
965                                                 }
966                                                 write!(w, "{}{}",
967                                                         field.ident.as_ref().unwrap(),
968                                                         if $ref { "_nonref" } else { "" }).unwrap();
969                                                 if $to_c {
970                                                         types.write_to_c_conversion_inline_suffix(w, &field.ty, None, false);
971                                                 } else {
972                                                         types.write_from_c_conversion_suffix(w, &field.ty, None);
973                                                 }
974                                                 write!(w, ",").unwrap();
975                                         }
976                                         writeln!(w, "\n\t\t\t\t}}").unwrap();
977                                         write!(w, "\t\t\t}}").unwrap();
978                                 }
979                                 writeln!(w, ",").unwrap();
980                         }
981                         writeln!(w, "\t\t}}\n\t}}").unwrap();
982                 }
983         }
984
985         write_conv!(format!("to_native(&self) -> native{}", e.ident), false, true);
986         write_conv!(format!("into_native(self) -> native{}", e.ident), false, false);
987         write_conv!(format!("from_native(native: &native{}) -> Self", e.ident), true, true);
988         write_conv!(format!("native_into(native: native{}) -> Self", e.ident), true, false);
989         writeln!(w, "}}").unwrap();
990
991         if needs_free {
992                 writeln!(w, "#[no_mangle]\npub extern \"C\" fn {}_free(this_ptr: {}) {{ }}", e.ident, e.ident).unwrap();
993         }
994         write_cpp_wrapper(cpp_headers, &format!("{}", e.ident), needs_free);
995 }
996
997 fn writeln_fn<'a, 'b, W: std::io::Write>(w: &mut W, f: &'a syn::ItemFn, types: &mut TypeResolver<'b, 'a>) {
998         match export_status(&f.attrs) {
999                 ExportStatus::Export => {},
1000                 ExportStatus::NoExport|ExportStatus::TestOnly => return,
1001         }
1002         writeln_docs(w, &f.attrs, "");
1003
1004         let mut gen_types = GenericTypes::new();
1005         if !gen_types.learn_generics(&f.sig.generics, types) { return; }
1006
1007         write!(w, "#[no_mangle]\npub extern \"C\" fn {}(", f.sig.ident).unwrap();
1008         write_method_params(w, &f.sig, &HashMap::new(), "", types, Some(&gen_types), false, true);
1009         write!(w, " {{\n\t").unwrap();
1010         write_method_var_decl_body(w, &f.sig, "", types, Some(&gen_types), false);
1011         write!(w, "{}::{}::{}(", types.orig_crate, types.module_path, f.sig.ident).unwrap();
1012         write_method_call_params(w, &f.sig, &HashMap::new(), "", types, Some(&gen_types), "", false);
1013         writeln!(w, "\n}}\n").unwrap();
1014 }
1015
1016 // ********************************
1017 // *** File/Crate Walking Logic ***
1018 // ********************************
1019
1020 /// Simple utility to walk the modules in a crate - iterating over the modules (with file paths) in
1021 /// a single File.
1022 struct FileIter<'a, I: Iterator<Item = &'a syn::Item>> {
1023         in_dir: &'a str,
1024         path: &'a str,
1025         module: &'a str,
1026         item_iter: I,
1027 }
1028 impl<'a, I: Iterator<Item = &'a syn::Item>> Iterator for FileIter<'a, I> {
1029         type Item = (String, String, &'a syn::ItemMod);
1030         fn next(&mut self) -> std::option::Option<<Self as std::iter::Iterator>::Item> {
1031                 loop {
1032                         match self.item_iter.next() {
1033                                 Some(syn::Item::Mod(m)) => {
1034                                         if let syn::Visibility::Public(_) = m.vis {
1035                                                 match export_status(&m.attrs) {
1036                                                         ExportStatus::Export => {},
1037                                                         ExportStatus::NoExport|ExportStatus::TestOnly => continue,
1038                                                 }
1039
1040                                                 let f_path = format!("{}/{}.rs", (self.path.as_ref() as &Path).parent().unwrap().display(), m.ident);
1041                                                 let new_mod = if self.module.is_empty() { format!("{}", m.ident) } else { format!("{}::{}", self.module, m.ident) };
1042                                                 if let Ok(_) = File::open(&format!("{}/{}", self.in_dir, f_path)) {
1043                                                         return Some((f_path, new_mod, m));
1044                                                 } else {
1045                                                         return Some((
1046                                                                 format!("{}/{}/mod.rs", (self.path.as_ref() as &Path).parent().unwrap().display(), m.ident),
1047                                                                 new_mod, m));
1048                                                 }
1049                                         }
1050                                 },
1051                                 Some(_) => {},
1052                                 None => return None,
1053                         }
1054                 }
1055         }
1056 }
1057 fn file_iter<'a>(file: &'a syn::File, in_dir: &'a str, path: &'a str, module: &'a str) ->
1058                 impl Iterator<Item = (String, String, &'a syn::ItemMod)> + 'a {
1059         FileIter { in_dir, path, module, item_iter: file.items.iter() }
1060 }
1061
1062 /// A struct containing the syn::File AST for each file in the crate.
1063 struct FullLibraryAST {
1064         files: HashMap<String, syn::File>,
1065 }
1066
1067 /// Do the Real Work of mapping an original file to C-callable wrappers. Creates a new file at
1068 /// `out_path` and fills it with wrapper structs/functions to allow calling the things in the AST
1069 /// at `module` from C.
1070 fn convert_file<'a, 'b>(libast: &'a FullLibraryAST, crate_types: &mut CrateTypes<'a>, in_dir: &str, out_dir: &str, path: &str, orig_crate: &str, module: &str, header_file: &mut File, cpp_header_file: &mut File) {
1071         let syntax = if let Some(ast) = libast.files.get(module) { ast } else { return };
1072
1073         assert!(syntax.shebang.is_none()); // Not sure what this is, hope we dont have one
1074
1075         let new_file_path = format!("{}/{}", out_dir, path);
1076         let _ = std::fs::create_dir((&new_file_path.as_ref() as &std::path::Path).parent().unwrap());
1077         let mut out = std::fs::OpenOptions::new().write(true).create(true).truncate(true)
1078                 .open(new_file_path).expect("Unable to open new src file");
1079
1080         assert_eq!(export_status(&syntax.attrs), ExportStatus::Export);
1081         writeln_docs(&mut out, &syntax.attrs, "");
1082
1083         if path.ends_with("/lib.rs") {
1084                 // Special-case the top-level lib.rs with various lint allows and a pointer to the c_types
1085                 // and bitcoin hand-written modules.
1086                 writeln!(out, "#![allow(unknown_lints)]").unwrap();
1087                 writeln!(out, "#![allow(non_camel_case_types)]").unwrap();
1088                 writeln!(out, "#![allow(non_snake_case)]").unwrap();
1089                 writeln!(out, "#![allow(unused_imports)]").unwrap();
1090                 writeln!(out, "#![allow(unused_variables)]").unwrap();
1091                 writeln!(out, "#![allow(unused_mut)]").unwrap();
1092                 writeln!(out, "#![allow(unused_parens)]").unwrap();
1093                 writeln!(out, "#![allow(unused_unsafe)]").unwrap();
1094                 writeln!(out, "#![allow(unused_braces)]").unwrap();
1095                 writeln!(out, "mod c_types;").unwrap();
1096                 writeln!(out, "mod bitcoin;").unwrap();
1097         } else {
1098                 writeln!(out, "\nuse std::ffi::c_void;\nuse bitcoin::hashes::Hash;\nuse crate::c_types::*;\n").unwrap();
1099         }
1100
1101         for (path, new_mod, m) in file_iter(&syntax, in_dir, path, &module) {
1102                 writeln_docs(&mut out, &m.attrs, "");
1103                 writeln!(out, "pub mod {};", m.ident).unwrap();
1104                 convert_file(libast, crate_types, in_dir, out_dir, &path,
1105                         orig_crate, &new_mod, header_file, cpp_header_file);
1106         }
1107
1108         eprintln!("Converting {} entries...", path);
1109
1110         let mut type_resolver = TypeResolver::new(orig_crate, module, crate_types);
1111
1112         for item in syntax.items.iter() {
1113                 match item {
1114                         syn::Item::Use(u) => type_resolver.process_use(&mut out, &u),
1115                         syn::Item::Static(_) => {},
1116                         syn::Item::Enum(e) => {
1117                                 if let syn::Visibility::Public(_) = e.vis {
1118                                         writeln_enum(&mut out, &e, &mut type_resolver, header_file, cpp_header_file);
1119                                 }
1120                         },
1121                         syn::Item::Impl(i) => {
1122                                 writeln_impl(&mut out, &i, &mut type_resolver);
1123                         },
1124                         syn::Item::Struct(s) => {
1125                                 if let syn::Visibility::Public(_) = s.vis {
1126                                         writeln_struct(&mut out, &s, &mut type_resolver, header_file, cpp_header_file);
1127                                 }
1128                         },
1129                         syn::Item::Trait(t) => {
1130                                 if let syn::Visibility::Public(_) = t.vis {
1131                                         writeln_trait(&mut out, &t, &mut type_resolver, header_file, cpp_header_file);
1132                                 }
1133                         },
1134                         syn::Item::Mod(_) => {}, // We don't have to do anything - the top loop handles these.
1135                         syn::Item::Const(c) => {
1136                                 // Re-export any primitive-type constants.
1137                                 if let syn::Visibility::Public(_) = c.vis {
1138                                         if let syn::Type::Path(p) = &*c.ty {
1139                                                 let resolved_path = type_resolver.resolve_path(&p.path, None);
1140                                                 if type_resolver.is_primitive(&resolved_path) {
1141                                                         writeln!(out, "\n#[no_mangle]").unwrap();
1142                                                         writeln!(out, "pub static {}: {} = {}::{}::{};", c.ident, resolved_path, orig_crate, module, c.ident).unwrap();
1143                                                 }
1144                                         }
1145                                 }
1146                         },
1147                         syn::Item::Type(t) => {
1148                                 if let syn::Visibility::Public(_) = t.vis {
1149                                         match export_status(&t.attrs) {
1150                                                 ExportStatus::Export => {},
1151                                                 ExportStatus::NoExport|ExportStatus::TestOnly => continue,
1152                                         }
1153
1154                                         let mut process_alias = true;
1155                                         for tok in t.generics.params.iter() {
1156                                                 if let syn::GenericParam::Lifetime(_) = tok {}
1157                                                 else { process_alias = false; }
1158                                         }
1159                                         if process_alias {
1160                                                 match &*t.ty {
1161                                                         syn::Type::Path(_) =>
1162                                                                 writeln_opaque(&mut out, &t.ident, &format!("{}", t.ident), &t.generics, &t.attrs, &type_resolver, header_file, cpp_header_file),
1163                                                         _ => {}
1164                                                 }
1165                                         }
1166                                 }
1167                         },
1168                         syn::Item::Fn(f) => {
1169                                 if let syn::Visibility::Public(_) = f.vis {
1170                                         writeln_fn(&mut out, &f, &mut type_resolver);
1171                                 }
1172                         },
1173                         syn::Item::Macro(m) => {
1174                                 if m.ident.is_none() { // If its not a macro definition
1175                                         convert_macro(&mut out, &m.mac.path, &m.mac.tokens, &type_resolver);
1176                                 }
1177                         },
1178                         syn::Item::Verbatim(_) => {},
1179                         syn::Item::ExternCrate(_) => {},
1180                         _ => unimplemented!(),
1181                 }
1182         }
1183
1184         out.flush().unwrap();
1185 }
1186
1187 /// Load the AST for each file in the crate, filling the FullLibraryAST object
1188 fn load_ast(in_dir: &str, path: &str, module: String, ast_storage: &mut FullLibraryAST) {
1189         eprintln!("Loading {}{}...", in_dir, path);
1190
1191         let mut file = File::open(format!("{}/{}", in_dir, path)).expect("Unable to open file");
1192         let mut src = String::new();
1193         file.read_to_string(&mut src).expect("Unable to read file");
1194         let syntax = syn::parse_file(&src).expect("Unable to parse file");
1195
1196         assert_eq!(export_status(&syntax.attrs), ExportStatus::Export);
1197
1198         for (path, new_mod, _) in file_iter(&syntax, in_dir, path, &module) {
1199                 load_ast(in_dir, &path, new_mod, ast_storage);
1200         }
1201         ast_storage.files.insert(module, syntax);
1202 }
1203
1204 /// Insert ident -> absolute Path resolutions into imports from the given UseTree and path-prefix.
1205 fn process_use_intern<'a>(u: &'a syn::UseTree, mut path: syn::punctuated::Punctuated<syn::PathSegment, syn::token::Colon2>, imports: &mut HashMap<&'a syn::Ident, syn::Path>) {
1206         match u {
1207                 syn::UseTree::Path(p) => {
1208                         path.push(syn::PathSegment { ident: p.ident.clone(), arguments: syn::PathArguments::None });
1209                         process_use_intern(&p.tree, path, imports);
1210                 },
1211                 syn::UseTree::Name(n) => {
1212                         path.push(syn::PathSegment { ident: n.ident.clone(), arguments: syn::PathArguments::None });
1213                         imports.insert(&n.ident, syn::Path { leading_colon: Some(syn::Token![::](Span::call_site())), segments: path });
1214                 },
1215                 syn::UseTree::Group(g) => {
1216                         for i in g.items.iter() {
1217                                 process_use_intern(i, path.clone(), imports);
1218                         }
1219                 },
1220                 _ => {}
1221         }
1222 }
1223
1224 /// Map all the Paths in a Type into absolute paths given a set of imports (generated via process_use_intern)
1225 fn resolve_imported_refs(imports: &HashMap<&syn::Ident, syn::Path>, mut ty: syn::Type) -> syn::Type {
1226         match &mut ty {
1227                 syn::Type::Path(p) => {
1228                         if let Some(ident) = p.path.get_ident() {
1229                                 if let Some(newpath) = imports.get(ident) {
1230                                         p.path = newpath.clone();
1231                                 }
1232                         } else { unimplemented!(); }
1233                 },
1234                 syn::Type::Reference(r) => {
1235                         r.elem = Box::new(resolve_imported_refs(imports, (*r.elem).clone()));
1236                 },
1237                 syn::Type::Slice(s) => {
1238                         s.elem = Box::new(resolve_imported_refs(imports, (*s.elem).clone()));
1239                 },
1240                 syn::Type::Tuple(t) => {
1241                         for e in t.elems.iter_mut() {
1242                                 *e = resolve_imported_refs(imports, e.clone());
1243                         }
1244                 },
1245                 _ => unimplemented!(),
1246         }
1247         ty
1248 }
1249
1250 /// Walk the FullLibraryAST, deciding how things will be mapped and adding tracking to CrateTypes.
1251 fn walk_ast<'a>(in_dir: &str, path: &str, module: String, ast_storage: &'a FullLibraryAST, crate_types: &mut CrateTypes<'a>) {
1252         let syntax = if let Some(ast) = ast_storage.files.get(&module) { ast } else { return };
1253         assert_eq!(export_status(&syntax.attrs), ExportStatus::Export);
1254
1255         for (path, new_mod, _) in file_iter(&syntax, in_dir, path, &module) {
1256                 walk_ast(in_dir, &path, new_mod, ast_storage, crate_types);
1257         }
1258
1259         let mut import_maps = HashMap::new();
1260
1261         for item in syntax.items.iter() {
1262                 match item {
1263                         syn::Item::Use(u) => {
1264                                 process_use_intern(&u.tree, syn::punctuated::Punctuated::new(), &mut import_maps);
1265                         },
1266                         syn::Item::Struct(s) => {
1267                                 if let syn::Visibility::Public(_) = s.vis {
1268                                         match export_status(&s.attrs) {
1269                                                 ExportStatus::Export => {},
1270                                                 ExportStatus::NoExport|ExportStatus::TestOnly => continue,
1271                                         }
1272                                         let struct_path = format!("{}::{}", module, s.ident);
1273                                         crate_types.opaques.insert(struct_path, &s.ident);
1274                                 }
1275                         },
1276                         syn::Item::Trait(t) => {
1277                                 if let syn::Visibility::Public(_) = t.vis {
1278                                         match export_status(&t.attrs) {
1279                                                 ExportStatus::Export => {},
1280                                                 ExportStatus::NoExport|ExportStatus::TestOnly => continue,
1281                                         }
1282                                         let trait_path = format!("{}::{}", module, t.ident);
1283                                         crate_types.traits.insert(trait_path, &t);
1284                                 }
1285                         },
1286                         syn::Item::Type(t) => {
1287                                 if let syn::Visibility::Public(_) = t.vis {
1288                                         match export_status(&t.attrs) {
1289                                                 ExportStatus::Export => {},
1290                                                 ExportStatus::NoExport|ExportStatus::TestOnly => continue,
1291                                         }
1292                                         let type_path = format!("{}::{}", module, t.ident);
1293                                         let mut process_alias = true;
1294                                         for tok in t.generics.params.iter() {
1295                                                 if let syn::GenericParam::Lifetime(_) = tok {}
1296                                                 else { process_alias = false; }
1297                                         }
1298                                         if process_alias {
1299                                                 match &*t.ty {
1300                                                         syn::Type::Path(_) => {
1301                                                                 // If its a path with no generics, assume we don't map the aliased type and map it opaque
1302                                                                 crate_types.opaques.insert(type_path, &t.ident);
1303                                                         },
1304                                                         _ => {
1305                                                                 crate_types.type_aliases.insert(type_path, resolve_imported_refs(&import_maps, (*t.ty).clone()));
1306                                                         }
1307                                                 }
1308                                         }
1309                                 }
1310                         },
1311                         syn::Item::Enum(e) if is_enum_opaque(e) => {
1312                                 if let syn::Visibility::Public(_) = e.vis {
1313                                         match export_status(&e.attrs) {
1314                                                 ExportStatus::Export => {},
1315                                                 ExportStatus::NoExport|ExportStatus::TestOnly => continue,
1316                                         }
1317                                         let enum_path = format!("{}::{}", module, e.ident);
1318                                         crate_types.opaques.insert(enum_path, &e.ident);
1319                                 }
1320                         },
1321                         syn::Item::Enum(e) => {
1322                                 if let syn::Visibility::Public(_) = e.vis {
1323                                         match export_status(&e.attrs) {
1324                                                 ExportStatus::Export => {},
1325                                                 ExportStatus::NoExport|ExportStatus::TestOnly => continue,
1326                                         }
1327                                         let enum_path = format!("{}::{}", module, e.ident);
1328                                         crate_types.mirrored_enums.insert(enum_path, &e);
1329                                 }
1330                         },
1331                         _ => {},
1332                 }
1333         }
1334 }
1335
1336 fn main() {
1337         let args: Vec<String> = env::args().collect();
1338         if args.len() != 7 {
1339                 eprintln!("Usage: source/dir target/dir source_crate_name derived_templates.rs extra/includes.h extra/cpp/includes.hpp");
1340                 process::exit(1);
1341         }
1342
1343         let mut derived_templates = std::fs::OpenOptions::new().write(true).create(true).truncate(true)
1344                 .open(&args[4]).expect("Unable to open new header file");
1345         let mut header_file = std::fs::OpenOptions::new().write(true).create(true).truncate(true)
1346                 .open(&args[5]).expect("Unable to open new header file");
1347         let mut cpp_header_file = std::fs::OpenOptions::new().write(true).create(true).truncate(true)
1348                 .open(&args[6]).expect("Unable to open new header file");
1349
1350         writeln!(header_file, "#if defined(__GNUC__)\n#define MUST_USE_STRUCT __attribute__((warn_unused))").unwrap();
1351         writeln!(header_file, "#else\n#define MUST_USE_STRUCT\n#endif").unwrap();
1352         writeln!(header_file, "#if defined(__GNUC__)\n#define MUST_USE_RES __attribute__((warn_unused_result))").unwrap();
1353         writeln!(header_file, "#else\n#define MUST_USE_RES\n#endif").unwrap();
1354         writeln!(cpp_header_file, "#include <string.h>\nnamespace LDK {{").unwrap();
1355
1356         // First parse the full crate's ASTs, caching them so that we can hold references to the AST
1357         // objects in other datastructures:
1358         let mut libast = FullLibraryAST { files: HashMap::new() };
1359         load_ast(&args[1], "/lib.rs", "".to_string(), &mut libast);
1360
1361         // ...then walk the ASTs tracking what types we will map, and how, so that we can resolve them
1362         // when parsing other file ASTs...
1363         let mut libtypes = CrateTypes { traits: HashMap::new(), opaques: HashMap::new(), mirrored_enums: HashMap::new(),
1364                 type_aliases: HashMap::new(), templates_defined: HashMap::default(), template_file: &mut derived_templates };
1365         walk_ast(&args[1], "/lib.rs", "".to_string(), &libast, &mut libtypes);
1366
1367         // ... finally, do the actual file conversion/mapping, writing out types as we go.
1368         convert_file(&libast, &mut libtypes, &args[1], &args[2], "/lib.rs", &args[3], "", &mut header_file, &mut cpp_header_file);
1369
1370         // For container templates which we created while walking the crate, make sure we add C++
1371         // mapped types so that C++ users can utilize the auto-destructors available.
1372         for (ty, has_destructor) in libtypes.templates_defined.iter() {
1373                 write_cpp_wrapper(&mut cpp_header_file, ty, *has_destructor);
1374         }
1375         writeln!(cpp_header_file, "}}").unwrap();
1376
1377         header_file.flush().unwrap();
1378         cpp_header_file.flush().unwrap();
1379         derived_templates.flush().unwrap();
1380 }