Drop special handling for more Option types and all-0 array handling
[ldk-c-bindings] / c-bindings-gen / src / types.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE>
5 // or the MIT license <LICENSE-MIT>, at your option.
6 // You may not use this file except in accordance with one or both of these
7 // licenses.
8
9 use std::cell::RefCell;
10 use std::collections::{HashMap, HashSet};
11 use std::fs::File;
12 use std::io::Write;
13 use std::hash;
14
15 use crate::blocks::*;
16
17 use proc_macro2::{TokenTree, Span};
18 use quote::format_ident;
19 use syn::parse_quote;
20
21 // The following utils are used purely to build our known types maps - they break down all the
22 // types we need to resolve to include the given object, and no more.
23
24 pub fn first_seg_self<'a>(t: &'a syn::Type) -> Option<impl Iterator<Item=&syn::PathSegment> + 'a> {
25         match t {
26                 syn::Type::Path(p) => {
27                         if p.qself.is_some() || p.path.leading_colon.is_some() {
28                                 return None;
29                         }
30                         let mut segs = p.path.segments.iter();
31                         let ty = segs.next().unwrap();
32                         if !ty.arguments.is_empty() { return None; }
33                         if format!("{}", ty.ident) == "Self" {
34                                 Some(segs)
35                         } else { None }
36                 },
37                 _ => None,
38         }
39 }
40
41 pub fn get_single_remaining_path_seg<'a, I: Iterator<Item=&'a syn::PathSegment>>(segs: &mut I) -> Option<&'a syn::Ident> {
42         if let Some(ty) = segs.next() {
43                 if !ty.arguments.is_empty() { unimplemented!(); }
44                 if segs.next().is_some() { return None; }
45                 Some(&ty.ident)
46         } else { None }
47 }
48
49 pub fn first_seg_is_stdlib(first_seg_str: &str) -> bool {
50         first_seg_str == "std" || first_seg_str == "core" || first_seg_str == "alloc"
51 }
52
53 pub fn single_ident_generic_path_to_ident(p: &syn::Path) -> Option<&syn::Ident> {
54         if p.segments.len() == 1 {
55                 Some(&p.segments.iter().next().unwrap().ident)
56         } else { None }
57 }
58
59 pub fn path_matches_nongeneric(p: &syn::Path, exp: &[&str]) -> bool {
60         if p.segments.len() != exp.len() { return false; }
61         for (seg, e) in p.segments.iter().zip(exp.iter()) {
62                 if seg.arguments != syn::PathArguments::None { return false; }
63                 if &format!("{}", seg.ident) != *e { return false; }
64         }
65         true
66 }
67
68 pub fn string_path_to_syn_path(path: &str) -> syn::Path {
69         let mut segments = syn::punctuated::Punctuated::new();
70         for seg in path.split("::") {
71                 segments.push(syn::PathSegment {
72                         ident: syn::Ident::new(seg, Span::call_site()),
73                         arguments: syn::PathArguments::None,
74                 });
75         }
76         syn::Path { leading_colon: Some(syn::Token![::](Span::call_site())), segments }
77 }
78
79 #[derive(Debug, PartialEq)]
80 pub enum ExportStatus {
81         Export,
82         NoExport,
83         TestOnly,
84         /// This is used only for traits to indicate that users should not be able to implement their
85         /// own version of a trait, but we should export Rust implementations of the trait (and the
86         /// trait itself).
87         /// Concretly, this means that we do not implement the Rust trait for the C trait struct.
88         NotImplementable,
89 }
90 /// Gets the ExportStatus of an object (struct, fn, etc) given its attributes.
91 pub fn export_status(attrs: &[syn::Attribute]) -> ExportStatus {
92         for attr in attrs.iter() {
93                 let tokens_clone = attr.tokens.clone();
94                 let mut token_iter = tokens_clone.into_iter();
95                 if let Some(token) = token_iter.next() {
96                         match token {
97                                 TokenTree::Punct(c) if c.as_char() == '=' => {
98                                         // Really not sure where syn gets '=' from here -
99                                         // it somehow represents '///' or '//!'
100                                 },
101                                 TokenTree::Group(g) => {
102                                         if format!("{}", single_ident_generic_path_to_ident(&attr.path).unwrap()) == "cfg" {
103                                                 let mut iter = g.stream().into_iter();
104                                                 if let TokenTree::Ident(i) = iter.next().unwrap() {
105                                                         if i == "any" {
106                                                                 // #[cfg(any(test, feature = ""))]
107                                                                 if let TokenTree::Group(g) = iter.next().unwrap() {
108                                                                         let mut all_test = true;
109                                                                         for token in g.stream().into_iter() {
110                                                                                 if let TokenTree::Ident(i) = token {
111                                                                                         match format!("{}", i).as_str() {
112                                                                                                 "test" => {},
113                                                                                                 "feature" => {},
114                                                                                                 _ => all_test = false,
115                                                                                         }
116                                                                                 } else if let TokenTree::Literal(lit) = token {
117                                                                                         if format!("{}", lit) != "fuzztarget" {
118                                                                                                 all_test = false;
119                                                                                         }
120                                                                                 }
121                                                                         }
122                                                                         if all_test { return ExportStatus::TestOnly; }
123                                                                 }
124                                                         } else if i == "test" {
125                                                                 return ExportStatus::TestOnly;
126                                                         }
127                                                 }
128                                         }
129                                         continue; // eg #[derive()]
130                                 },
131                                 _ => unimplemented!(),
132                         }
133                 } else { continue; }
134                 match token_iter.next().unwrap() {
135                         TokenTree::Literal(lit) => {
136                                 let line = format!("{}", lit);
137                                 if line.contains("(C-not exported)") || line.contains("This is not exported to bindings users") {
138                                         return ExportStatus::NoExport;
139                                 } else if line.contains("(C-not implementable)") {
140                                         return ExportStatus::NotImplementable;
141                                 }
142                         },
143                         _ => unimplemented!(),
144                 }
145         }
146         ExportStatus::Export
147 }
148
149 pub fn assert_simple_bound(bound: &syn::TraitBound) {
150         if bound.paren_token.is_some() { unimplemented!(); }
151         if let syn::TraitBoundModifier::Maybe(_) = bound.modifier { unimplemented!(); }
152 }
153
154 /// Returns true if the enum will be mapped as an opaue (ie struct with a pointer to the underlying
155 /// type), otherwise it is mapped into a transparent, C-compatible version of itself.
156 pub fn is_enum_opaque(e: &syn::ItemEnum) -> bool {
157         for var in e.variants.iter() {
158                 if let syn::Fields::Named(fields) = &var.fields {
159                         for field in fields.named.iter() {
160                                 match export_status(&field.attrs) {
161                                         ExportStatus::Export|ExportStatus::TestOnly => {},
162                                         ExportStatus::NotImplementable => panic!("(C-not implementable) should only appear on traits!"),
163                                         ExportStatus::NoExport => return true,
164                                 }
165                         }
166                 } else if let syn::Fields::Unnamed(fields) = &var.fields {
167                         for field in fields.unnamed.iter() {
168                                 match export_status(&field.attrs) {
169                                         ExportStatus::Export|ExportStatus::TestOnly => {},
170                                         ExportStatus::NotImplementable => panic!("(C-not implementable) should only appear on traits!"),
171                                         ExportStatus::NoExport => return true,
172                                 }
173                         }
174                 }
175         }
176         false
177 }
178
179 /// A stack of sets of generic resolutions.
180 ///
181 /// This tracks the template parameters for a function, struct, or trait, allowing resolution into
182 /// a concrete type. By pushing a new context onto the stack, this can track a function's template
183 /// parameters inside of a generic struct or trait.
184 ///
185 /// It maps both direct types as well as Deref<Target = X>, mapping them via the provided
186 /// TypeResolver's resolve_path function (ie traits map to the concrete jump table, structs to the
187 /// concrete C container struct, etc).
188 #[must_use]
189 pub struct GenericTypes<'a, 'b> {
190         self_ty: Option<String>,
191         parent: Option<&'b GenericTypes<'b, 'b>>,
192         typed_generics: HashMap<&'a syn::Ident, String>,
193         default_generics: HashMap<&'a syn::Ident, (syn::Type, syn::Type, syn::Type)>,
194 }
195 impl<'a, 'p: 'a> GenericTypes<'a, 'p> {
196         pub fn new(self_ty: Option<String>) -> Self {
197                 Self { self_ty, parent: None, typed_generics: HashMap::new(), default_generics: HashMap::new(), }
198         }
199
200         /// push a new context onto the stack, allowing for a new set of generics to be learned which
201         /// will override any lower contexts, but which will still fall back to resoltion via lower
202         /// contexts.
203         pub fn push_ctx<'c>(&'c self) -> GenericTypes<'a, 'c> {
204                 GenericTypes { self_ty: None, parent: Some(self), typed_generics: HashMap::new(), default_generics: HashMap::new(), }
205         }
206
207         /// Learn the generics in generics in the current context, given a TypeResolver.
208         pub fn learn_generics_with_impls<'b, 'c>(&mut self, generics: &'a syn::Generics, impld_generics: &'a syn::PathArguments, types: &'b TypeResolver<'a, 'c>) -> bool {
209                 let mut new_typed_generics = HashMap::new();
210                 // First learn simple generics...
211                 for (idx, generic) in generics.params.iter().enumerate() {
212                         match generic {
213                                 syn::GenericParam::Type(type_param) => {
214                                         let mut non_lifetimes_processed = false;
215                                         'bound_loop: for bound in type_param.bounds.iter() {
216                                                 if let syn::TypeParamBound::Trait(trait_bound) = bound {
217                                                         if let Some(ident) = single_ident_generic_path_to_ident(&trait_bound.path) {
218                                                                 match &format!("{}", ident) as &str { "Send" => continue, "Sync" => continue, _ => {} }
219                                                         }
220                                                         if path_matches_nongeneric(&trait_bound.path, &["core", "clone", "Clone"]) { continue; }
221
222                                                         assert_simple_bound(&trait_bound);
223                                                         if let Some(path) = types.maybe_resolve_path(&trait_bound.path, None) {
224                                                                 if types.skip_path(&path) { continue; }
225                                                                 if path == "Sized" { continue; }
226                                                                 if non_lifetimes_processed { return false; }
227                                                                 non_lifetimes_processed = true;
228                                                                 if path != "std::ops::Deref" && path != "core::ops::Deref" {
229                                                                         let p = string_path_to_syn_path(&path);
230                                                                         let ref_ty = parse_quote!(&#p);
231                                                                         let mut_ref_ty = parse_quote!(&mut #p);
232                                                                         self.default_generics.insert(&type_param.ident, (syn::Type::Path(syn::TypePath { qself: None, path: p }), ref_ty, mut_ref_ty));
233                                                                         new_typed_generics.insert(&type_param.ident, Some(path));
234                                                                 } else {
235                                                                         // If we're templated on Deref<Target = ConcreteThing>, store
236                                                                         // the reference type in `default_generics` which handles full
237                                                                         // types and not just paths.
238                                                                         if let syn::PathArguments::AngleBracketed(ref args) =
239                                                                                         trait_bound.path.segments[0].arguments {
240                                                                                 assert_eq!(trait_bound.path.segments.len(), 1);
241                                                                                 for subargument in args.args.iter() {
242                                                                                         match subargument {
243                                                                                                 syn::GenericArgument::Lifetime(_) => {},
244                                                                                                 syn::GenericArgument::Binding(ref b) => {
245                                                                                                         if &format!("{}", b.ident) != "Target" { return false; }
246                                                                                                         let default = &b.ty;
247                                                                                                         self.default_generics.insert(&type_param.ident, (parse_quote!(&#default), parse_quote!(&#default), parse_quote!(&mut #default)));
248                                                                                                         break 'bound_loop;
249                                                                                                 },
250                                                                                                 _ => unimplemented!(),
251                                                                                         }
252                                                                                 }
253                                                                         } else {
254                                                                                 new_typed_generics.insert(&type_param.ident, None);
255                                                                         }
256                                                                 }
257                                                         }
258                                                 }
259                                         }
260                                         if let Some(default) = type_param.default.as_ref() {
261                                                 assert!(type_param.bounds.is_empty());
262                                                 self.default_generics.insert(&type_param.ident, (default.clone(), parse_quote!(&#default), parse_quote!(&mut #default)));
263                                         } else if type_param.bounds.is_empty() {
264                                                 if let syn::PathArguments::AngleBracketed(args) = impld_generics {
265                                                         match &args.args[idx] {
266                                                                 syn::GenericArgument::Type(ty) => {
267                                                                         self.default_generics.insert(&type_param.ident, (ty.clone(), parse_quote!(&#ty), parse_quote!(&mut #ty)));
268                                                                 }
269                                                                 _ => unimplemented!(),
270                                                         }
271                                                 }
272                                         }
273                                 },
274                                 _ => {},
275                         }
276                 }
277                 // Then find generics where we are required to pass a Deref<Target=X> and pretend its just X.
278                 if let Some(wh) = &generics.where_clause {
279                         for pred in wh.predicates.iter() {
280                                 if let syn::WherePredicate::Type(t) = pred {
281                                         if let syn::Type::Path(p) = &t.bounded_ty {
282                                                 if first_seg_self(&t.bounded_ty).is_some() && p.path.segments.len() == 1 { continue; }
283                                                 if p.qself.is_some() { return false; }
284                                                 if p.path.leading_colon.is_some() { return false; }
285                                                 let mut p_iter = p.path.segments.iter();
286                                                 let p_ident = &p_iter.next().unwrap().ident;
287                                                 if let Some(gen) = new_typed_generics.get_mut(p_ident) {
288                                                         if gen.is_some() { return false; }
289                                                         if &format!("{}", p_iter.next().unwrap().ident) != "Target" {return false; }
290
291                                                         let mut non_lifetimes_processed = false;
292                                                         for bound in t.bounds.iter() {
293                                                                 if let syn::TypeParamBound::Trait(trait_bound) = bound {
294                                                                         if let Some(id) = trait_bound.path.get_ident() {
295                                                                                 if format!("{}", id) == "Sized" { continue; }
296                                                                         }
297                                                                         if non_lifetimes_processed { return false; }
298                                                                         non_lifetimes_processed = true;
299                                                                         assert_simple_bound(&trait_bound);
300                                                                         let resolved = types.resolve_path(&trait_bound.path, None);
301                                                                         let ty = syn::Type::Path(syn::TypePath {
302                                                                                 qself: None, path: string_path_to_syn_path(&resolved)
303                                                                         });
304                                                                         let ref_ty = parse_quote!(&#ty);
305                                                                         let mut_ref_ty = parse_quote!(&mut #ty);
306                                                                         if types.crate_types.traits.get(&resolved).is_some() {
307                                                                                 self.default_generics.insert(p_ident, (ty, ref_ty, mut_ref_ty));
308                                                                         } else {
309                                                                                 self.default_generics.insert(p_ident, (ref_ty.clone(), ref_ty, mut_ref_ty));
310                                                                         }
311
312                                                                         *gen = Some(resolved);
313                                                                 }
314                                                         }
315                                                 } else { return false; }
316                                         } else { return false; }
317                                 }
318                         }
319                 }
320                 for (key, value) in new_typed_generics.drain() {
321                         if let Some(v) = value {
322                                 assert!(self.typed_generics.insert(key, v).is_none());
323                         } else { return false; }
324                 }
325                 true
326         }
327
328         /// Learn the generics in generics in the current context, given a TypeResolver.
329         pub fn learn_generics<'b, 'c>(&mut self, generics: &'a syn::Generics, types: &'b TypeResolver<'a, 'c>) -> bool {
330                 self.learn_generics_with_impls(generics, &syn::PathArguments::None, types)
331         }
332
333         /// Learn the associated types from the trait in the current context.
334         pub fn learn_associated_types<'b, 'c>(&mut self, t: &'a syn::ItemTrait, types: &'b TypeResolver<'a, 'c>) {
335                 for item in t.items.iter() {
336                         match item {
337                                 &syn::TraitItem::Type(ref t) => {
338                                         if t.default.is_some() || t.generics.lt_token.is_some() { unimplemented!(); }
339                                         let mut bounds_iter = t.bounds.iter();
340                                         loop {
341                                                 match bounds_iter.next().unwrap() {
342                                                         syn::TypeParamBound::Trait(tr) => {
343                                                                 assert_simple_bound(&tr);
344                                                                 if let Some(path) = types.maybe_resolve_path(&tr.path, None) {
345                                                                         if types.skip_path(&path) { continue; }
346                                                                         // In general we handle Deref<Target=X> as if it were just X (and
347                                                                         // implement Deref<Target=Self> for relevant types). We don't
348                                                                         // bother to implement it for associated types, however, so we just
349                                                                         // ignore such bounds.
350                                                                         if path != "std::ops::Deref" && path != "core::ops::Deref" {
351                                                                                 self.typed_generics.insert(&t.ident, path);
352                                                                         }
353                                                                 } else { unimplemented!(); }
354                                                                 for bound in bounds_iter {
355                                                                         if let syn::TypeParamBound::Trait(_) = bound { unimplemented!(); }
356                                                                 }
357                                                                 break;
358                                                         },
359                                                         syn::TypeParamBound::Lifetime(_) => {},
360                                                 }
361                                         }
362                                 },
363                                 _ => {},
364                         }
365                 }
366         }
367
368         /// Attempt to resolve a Path as a generic parameter and return the full path. as both a string
369         /// and syn::Path.
370         pub fn maybe_resolve_path<'b>(&'b self, path: &syn::Path) -> Option<&'b String> {
371                 if let Some(ident) = path.get_ident() {
372                         if let Some(ty) = &self.self_ty {
373                                 if format!("{}", ident) == "Self" {
374                                         return Some(&ty);
375                                 }
376                         }
377                         if let Some(res) = self.typed_generics.get(ident) {
378                                 return Some(res);
379                         }
380                 } else {
381                         // Associated types are usually specified as "Self::Generic", so we check for that
382                         // explicitly here.
383                         let mut it = path.segments.iter();
384                         if path.segments.len() == 2 && format!("{}", it.next().unwrap().ident) == "Self" {
385                                 let ident = &it.next().unwrap().ident;
386                                 if let Some(res) = self.typed_generics.get(ident) {
387                                         return Some(res);
388                                 }
389                         }
390                 }
391                 if let Some(parent) = self.parent {
392                         parent.maybe_resolve_path(path)
393                 } else {
394                         None
395                 }
396         }
397 }
398
399 pub trait ResolveType<'a> { fn resolve_type(&'a self, ty: &'a syn::Type) -> &'a syn::Type; }
400 impl<'a, 'b, 'c: 'a + 'b> ResolveType<'c> for Option<&GenericTypes<'a, 'b>> {
401         fn resolve_type(&'c self, ty: &'c syn::Type) -> &'c syn::Type {
402                 if let Some(us) = self {
403                         match ty {
404                                 syn::Type::Path(p) => {
405                                         if let Some(ident) = p.path.get_ident() {
406                                                 if let Some((ty, _, _)) = us.default_generics.get(ident) {
407                                                         return self.resolve_type(ty);
408                                                 }
409                                         }
410                                 },
411                                 syn::Type::Reference(syn::TypeReference { elem, mutability, .. }) => {
412                                         if let syn::Type::Path(p) = &**elem {
413                                                 if let Some(ident) = p.path.get_ident() {
414                                                         if let Some((_, refty, mut_ref_ty)) = us.default_generics.get(ident) {
415                                                                 if mutability.is_some() {
416                                                                         return self.resolve_type(mut_ref_ty);
417                                                                 } else {
418                                                                         return self.resolve_type(refty);
419                                                                 }
420                                                         }
421                                                 }
422                                         }
423                                 }
424                                 _ => {},
425                         }
426                         us.parent.resolve_type(ty)
427                 } else { ty }
428         }
429 }
430
431 #[derive(Clone, PartialEq)]
432 // The type of declaration and the object itself
433 pub enum DeclType<'a> {
434         MirroredEnum,
435         Trait(&'a syn::ItemTrait),
436         StructImported { generics: &'a syn::Generics  },
437         StructIgnored,
438         EnumIgnored { generics: &'a syn::Generics },
439 }
440
441 pub struct ImportResolver<'mod_lifetime, 'crate_lft: 'mod_lifetime> {
442         pub crate_name: &'mod_lifetime str,
443         library: &'crate_lft FullLibraryAST,
444         module_path: &'mod_lifetime str,
445         imports: HashMap<syn::Ident, (String, syn::Path)>,
446         declared: HashMap<syn::Ident, DeclType<'crate_lft>>,
447         priv_modules: HashSet<syn::Ident>,
448 }
449 impl<'mod_lifetime, 'crate_lft: 'mod_lifetime> ImportResolver<'mod_lifetime, 'crate_lft> {
450         fn walk_use_intern<F: FnMut(syn::Ident, (String, syn::Path))>(
451                 crate_name: &str, module_path: &str, dependencies: &HashSet<syn::Ident>, u: &syn::UseTree,
452                 partial_path: &str,
453                 mut path: syn::punctuated::Punctuated<syn::PathSegment, syn::token::Colon2>, handle_use: &mut F
454         ) {
455                 let new_path;
456                 macro_rules! push_path {
457                         ($ident: expr, $path_suffix: expr) => {
458                                 if partial_path == "" && format!("{}", $ident) == "super" {
459                                         let mut mod_iter = module_path.rsplitn(2, "::");
460                                         mod_iter.next().unwrap();
461                                         let super_mod = mod_iter.next().unwrap();
462                                         new_path = format!("{}{}", super_mod, $path_suffix);
463                                         assert_eq!(path.len(), 0);
464                                         for module in super_mod.split("::") {
465                                                 path.push(syn::PathSegment { ident: syn::Ident::new(module, Span::call_site()), arguments: syn::PathArguments::None });
466                                         }
467                                 } else if partial_path == "" && format!("{}", $ident) == "self" {
468                                         new_path = format!("{}{}", module_path, $path_suffix);
469                                         for module in module_path.split("::") {
470                                                 path.push(syn::PathSegment { ident: syn::Ident::new(module, Span::call_site()), arguments: syn::PathArguments::None });
471                                         }
472                                 } else if partial_path == "" && format!("{}", $ident) == "crate" {
473                                         new_path = format!("{}{}", crate_name, $path_suffix);
474                                         let crate_name_ident = format_ident!("{}", crate_name);
475                                         path.push(parse_quote!(#crate_name_ident));
476                                 } else if partial_path == "" && !dependencies.contains(&$ident) {
477                                         new_path = format!("{}::{}{}", module_path, $ident, $path_suffix);
478                                         for module in module_path.split("::") {
479                                                 path.push(syn::PathSegment { ident: syn::Ident::new(module, Span::call_site()), arguments: syn::PathArguments::None });
480                                         }
481                                         let ident_str = format_ident!("{}", $ident);
482                                         path.push(parse_quote!(#ident_str));
483                                 } else if format!("{}", $ident) == "self" {
484                                         let mut path_iter = partial_path.rsplitn(2, "::");
485                                         path_iter.next().unwrap();
486                                         new_path = path_iter.next().unwrap().to_owned();
487                                 } else {
488                                         new_path = format!("{}{}{}", partial_path, $ident, $path_suffix);
489                                 }
490                                 let ident = &$ident;
491                                 path.push(parse_quote!(#ident));
492                         }
493                 }
494                 match u {
495                         syn::UseTree::Path(p) => {
496                                 push_path!(p.ident, "::");
497                                 Self::walk_use_intern(crate_name, module_path, dependencies, &p.tree, &new_path, path, handle_use);
498                         },
499                         syn::UseTree::Name(n) => {
500                                 push_path!(n.ident, "");
501                                 let imported_ident = syn::Ident::new(new_path.rsplitn(2, "::").next().unwrap(), Span::call_site());
502                                 handle_use(imported_ident, (new_path, syn::Path { leading_colon: Some(syn::Token![::](Span::call_site())), segments: path }));
503                         },
504                         syn::UseTree::Group(g) => {
505                                 for i in g.items.iter() {
506                                         Self::walk_use_intern(crate_name, module_path, dependencies, i, partial_path, path.clone(), handle_use);
507                                 }
508                         },
509                         syn::UseTree::Rename(r) => {
510                                 push_path!(r.ident, "");
511                                 handle_use(r.rename.clone(), (new_path, syn::Path { leading_colon: Some(syn::Token![::](Span::call_site())), segments: path }));
512                         },
513                         syn::UseTree::Glob(_) => {
514                                 eprintln!("Ignoring * use for {} - this may result in resolution failures", partial_path);
515                         },
516                 }
517         }
518
519         fn process_use_intern(crate_name: &str, module_path: &str, dependencies: &HashSet<syn::Ident>,
520                 imports: &mut HashMap<syn::Ident, (String, syn::Path)>, u: &syn::UseTree, partial_path: &str,
521                 path: syn::punctuated::Punctuated<syn::PathSegment, syn::token::Colon2>
522         ) {
523                 Self::walk_use_intern(crate_name, module_path, dependencies, u, partial_path, path,
524                         &mut |k, v| { imports.insert(k, v); });
525         }
526
527         fn process_use(crate_name: &str, module_path: &str, dependencies: &HashSet<syn::Ident>, imports: &mut HashMap<syn::Ident, (String, syn::Path)>, u: &syn::ItemUse) {
528                 if u.leading_colon.is_some() { eprintln!("Ignoring leading-colon use!"); return; }
529                 Self::process_use_intern(crate_name, module_path, dependencies, imports, &u.tree, "", syn::punctuated::Punctuated::new());
530         }
531
532         fn insert_primitive(imports: &mut HashMap<syn::Ident, (String, syn::Path)>, id: &str) {
533                 let ident = format_ident!("{}", id);
534                 let path = parse_quote!(#ident);
535                 imports.insert(ident, (id.to_owned(), path));
536         }
537
538         pub fn new(crate_name: &'mod_lifetime str, library: &'crate_lft FullLibraryAST, module_path: &'mod_lifetime str, contents: &'crate_lft [syn::Item]) -> Self {
539                 Self::from_borrowed_items(crate_name, library, module_path, &contents.iter().map(|a| a).collect::<Vec<_>>())
540         }
541         pub fn from_borrowed_items(crate_name: &'mod_lifetime str, library: &'crate_lft FullLibraryAST, module_path: &'mod_lifetime str, contents: &[&'crate_lft syn::Item]) -> Self {
542                 let mut imports = HashMap::new();
543                 // Add primitives to the "imports" list:
544                 Self::insert_primitive(&mut imports, "bool");
545                 Self::insert_primitive(&mut imports, "u128");
546                 Self::insert_primitive(&mut imports, "u64");
547                 Self::insert_primitive(&mut imports, "u32");
548                 Self::insert_primitive(&mut imports, "u16");
549                 Self::insert_primitive(&mut imports, "u8");
550                 Self::insert_primitive(&mut imports, "usize");
551                 Self::insert_primitive(&mut imports, "str");
552                 Self::insert_primitive(&mut imports, "String");
553
554                 // These are here to allow us to print native Rust types in trait fn impls even if we don't
555                 // have C mappings:
556                 Self::insert_primitive(&mut imports, "Result");
557                 Self::insert_primitive(&mut imports, "Vec");
558                 Self::insert_primitive(&mut imports, "Option");
559
560                 let mut declared = HashMap::new();
561                 let mut priv_modules = HashSet::new();
562
563                 for item in contents.iter() {
564                         match item {
565                                 syn::Item::Use(u) => Self::process_use(crate_name, module_path, &library.dependencies, &mut imports, &u),
566                                 syn::Item::Struct(s) => {
567                                         if let syn::Visibility::Public(_) = s.vis {
568                                                 match export_status(&s.attrs) {
569                                                         ExportStatus::Export => { declared.insert(s.ident.clone(), DeclType::StructImported { generics: &s.generics }); },
570                                                         ExportStatus::NoExport => { declared.insert(s.ident.clone(), DeclType::StructIgnored); },
571                                                         ExportStatus::TestOnly => continue,
572                                                         ExportStatus::NotImplementable => panic!("(C-not implementable) should only appear on traits!"),
573                                                 }
574                                         }
575                                 },
576                                 syn::Item::Type(t) if export_status(&t.attrs) == ExportStatus::Export => {
577                                         if let syn::Visibility::Public(_) = t.vis {
578                                                 declared.insert(t.ident.clone(), DeclType::StructImported { generics: &t.generics });
579                                         }
580                                 },
581                                 syn::Item::Enum(e) => {
582                                         if let syn::Visibility::Public(_) = e.vis {
583                                                 match export_status(&e.attrs) {
584                                                         ExportStatus::Export if is_enum_opaque(e) => { declared.insert(e.ident.clone(), DeclType::EnumIgnored { generics: &e.generics }); },
585                                                         ExportStatus::Export => { declared.insert(e.ident.clone(), DeclType::MirroredEnum); },
586                                                         ExportStatus::NotImplementable => panic!("(C-not implementable) should only appear on traits!"),
587                                                         _ => continue,
588                                                 }
589                                         }
590                                 },
591                                 syn::Item::Trait(t) => {
592                                         match export_status(&t.attrs) {
593                                                 ExportStatus::Export|ExportStatus::NotImplementable => {
594                                                         if let syn::Visibility::Public(_) = t.vis {
595                                                                 declared.insert(t.ident.clone(), DeclType::Trait(t));
596                                                         }
597                                                 },
598                                                 _ => continue,
599                                         }
600                                 },
601                                 syn::Item::Mod(m) => {
602                                         priv_modules.insert(m.ident.clone());
603                                 },
604                                 _ => {},
605                         }
606                 }
607
608                 Self { crate_name, library, module_path, imports, declared, priv_modules }
609         }
610
611         pub fn maybe_resolve_declared(&self, id: &syn::Ident) -> Option<&DeclType<'crate_lft>> {
612                 self.declared.get(id)
613         }
614
615         pub fn maybe_resolve_ident(&self, id: &syn::Ident) -> Option<String> {
616                 if let Some((imp, _)) = self.imports.get(id) {
617                         Some(imp.clone())
618                 } else if self.declared.get(id).is_some() {
619                         Some(self.module_path.to_string() + "::" + &format!("{}", id))
620                 } else { None }
621         }
622
623         fn maybe_resolve_imported_path(&self, p: &syn::Path, generics: Option<&GenericTypes>) -> Option<String> {
624                 if let Some(gen_types) = generics {
625                         if let Some(resp) = gen_types.maybe_resolve_path(p) {
626                                 return Some(resp.clone());
627                         }
628                 }
629
630                 if p.leading_colon.is_some() {
631                         let mut res: String = p.segments.iter().enumerate().map(|(idx, seg)| {
632                                 format!("{}{}", if idx == 0 { "" } else { "::" }, seg.ident)
633                         }).collect();
634                         let firstseg = p.segments.iter().next().unwrap();
635                         if !self.library.dependencies.contains(&firstseg.ident) {
636                                 res = self.crate_name.to_owned() + "::" + &res;
637                         }
638                         Some(res)
639                 } else if let Some(id) = p.get_ident() {
640                         self.maybe_resolve_ident(id)
641                 } else {
642                         if p.segments.len() == 1 {
643                                 let seg = p.segments.iter().next().unwrap();
644                                 return self.maybe_resolve_ident(&seg.ident);
645                         }
646                         let mut seg_iter = p.segments.iter();
647                         let first_seg = seg_iter.next().unwrap();
648                         let remaining: String = seg_iter.map(|seg| {
649                                 format!("::{}", seg.ident)
650                         }).collect();
651                         let first_seg_str = format!("{}", first_seg.ident);
652                         if let Some((imp, _)) = self.imports.get(&first_seg.ident) {
653                                 if remaining != "" {
654                                         Some(imp.clone() + &remaining)
655                                 } else {
656                                         Some(imp.clone())
657                                 }
658                         } else if let Some(_) = self.priv_modules.get(&first_seg.ident) {
659                                 Some(format!("{}::{}{}", self.module_path, first_seg.ident, remaining))
660                         } else if first_seg_is_stdlib(&first_seg_str) || self.library.dependencies.contains(&first_seg.ident) {
661                                 Some(first_seg_str + &remaining)
662                         } else if first_seg_str == "crate" {
663                                 Some(self.crate_name.to_owned() + &remaining)
664                         } else { None }
665                 }
666         }
667
668         pub fn maybe_resolve_path(&self, p: &syn::Path, generics: Option<&GenericTypes>) -> Option<String> {
669                 self.maybe_resolve_imported_path(p, generics).map(|mut path| {
670                         loop {
671                                 // Now that we've resolved the path to the path as-imported, check whether the path
672                                 // is actually a pub(.*) use statement and map it to the real path.
673                                 let path_tmp = path.clone();
674                                 let crate_name = path_tmp.splitn(2, "::").next().unwrap();
675                                 let mut module_riter = path_tmp.rsplitn(2, "::");
676                                 let obj = module_riter.next().unwrap();
677                                 if let Some(module_path) = module_riter.next() {
678                                         if let Some(m) = self.library.modules.get(module_path) {
679                                                 for item in m.items.iter() {
680                                                         if let syn::Item::Use(syn::ItemUse { vis, tree, .. }) = item {
681                                                                 match vis {
682                                                                         syn::Visibility::Public(_)|
683                                                                         syn::Visibility::Crate(_)|
684                                                                         syn::Visibility::Restricted(_) => {
685                                                                                 Self::walk_use_intern(crate_name, module_path,
686                                                                                         &self.library.dependencies, tree, "",
687                                                                                         syn::punctuated::Punctuated::new(), &mut |ident, (use_path, _)| {
688                                                                                                 if format!("{}", ident) == obj {
689                                                                                                         path = use_path;
690                                                                                                 }
691                                                                                 });
692                                                                         },
693                                                                         syn::Visibility::Inherited => {},
694                                                                 }
695                                                         }
696                                                 }
697                                         }
698                                 }
699                                 break;
700                         }
701                         path
702                 })
703         }
704
705         /// Map all the Paths in a Type into absolute paths given a set of imports (generated via process_use_intern)
706         pub fn resolve_imported_refs(&self, mut ty: syn::Type) -> syn::Type {
707                 match &mut ty {
708                         syn::Type::Path(p) => {
709                                 if p.path.segments.len() != 1 { unimplemented!(); }
710                                 let mut args = p.path.segments[0].arguments.clone();
711                                 if let syn::PathArguments::AngleBracketed(ref mut generics) = &mut args {
712                                         for arg in generics.args.iter_mut() {
713                                                 if let syn::GenericArgument::Type(ref mut t) = arg {
714                                                         *t = self.resolve_imported_refs(t.clone());
715                                                 }
716                                         }
717                                 }
718                                 if let Some((_, newpath)) = self.imports.get(single_ident_generic_path_to_ident(&p.path).unwrap()) {
719                                         p.path = newpath.clone();
720                                 }
721                                 p.path.segments[0].arguments = args;
722                         },
723                         syn::Type::Reference(r) => {
724                                 r.elem = Box::new(self.resolve_imported_refs((*r.elem).clone()));
725                         },
726                         syn::Type::Slice(s) => {
727                                 s.elem = Box::new(self.resolve_imported_refs((*s.elem).clone()));
728                         },
729                         syn::Type::Tuple(t) => {
730                                 for e in t.elems.iter_mut() {
731                                         *e = self.resolve_imported_refs(e.clone());
732                                 }
733                         },
734                         _ => unimplemented!(),
735                 }
736                 ty
737         }
738 }
739
740 // templates_defined is walked to write the C++ header, so if we use the default hashing it get
741 // reordered on each genbindings run. Instead, we use SipHasher (which defaults to 0-keys) so that
742 // the sorting is stable across runs. It is deprecated, but the "replacement" doesn't actually
743 // accomplish the same goals, so we just ignore it.
744 #[allow(deprecated)]
745 pub type NonRandomHash = hash::BuildHasherDefault<hash::SipHasher>;
746
747 /// A public module
748 pub struct ASTModule {
749         pub attrs: Vec<syn::Attribute>,
750         pub items: Vec<syn::Item>,
751         pub submods: Vec<String>,
752 }
753 /// A struct containing the syn::File AST for each file in the crate.
754 pub struct FullLibraryAST {
755         pub modules: HashMap<String, ASTModule, NonRandomHash>,
756         pub dependencies: HashSet<syn::Ident>,
757 }
758 impl FullLibraryAST {
759         fn load_module(&mut self, module: String, attrs: Vec<syn::Attribute>, mut items: Vec<syn::Item>) {
760                 let mut non_mod_items = Vec::with_capacity(items.len());
761                 let mut submods = Vec::with_capacity(items.len());
762                 for item in items.drain(..) {
763                         match item {
764                                 syn::Item::Mod(m) if m.content.is_some() => {
765                                         if export_status(&m.attrs) == ExportStatus::Export {
766                                                 if let syn::Visibility::Public(_) = m.vis {
767                                                         let modident = format!("{}", m.ident);
768                                                         let modname = if module != "" {
769                                                                 module.clone() + "::" + &modident
770                                                         } else {
771                                                                 self.dependencies.insert(m.ident);
772                                                                 modident.clone()
773                                                         };
774                                                         self.load_module(modname, m.attrs, m.content.unwrap().1);
775                                                         submods.push(modident);
776                                                 } else {
777                                                         non_mod_items.push(syn::Item::Mod(m));
778                                                 }
779                                         }
780                                 },
781                                 syn::Item::Mod(_) => panic!("--pretty=expanded output should never have non-body modules"),
782                                 syn::Item::ExternCrate(c) => {
783                                         if export_status(&c.attrs) == ExportStatus::Export {
784                                                 self.dependencies.insert(c.ident);
785                                         }
786                                 },
787                                 _ => { non_mod_items.push(item); }
788                         }
789                 }
790                 self.modules.insert(module, ASTModule { attrs, items: non_mod_items, submods });
791         }
792
793         pub fn load_lib(lib: syn::File) -> Self {
794                 assert_eq!(export_status(&lib.attrs), ExportStatus::Export);
795                 let mut res = Self { modules: HashMap::default(), dependencies: HashSet::new() };
796                 res.load_module("".to_owned(), lib.attrs, lib.items);
797                 res
798         }
799 }
800
801 /// List of manually-generated types which are clonable
802 fn initial_clonable_types() -> HashSet<String> {
803         let mut res = HashSet::new();
804         res.insert("crate::c_types::U5".to_owned());
805         res.insert("crate::c_types::U128".to_owned());
806         res.insert("crate::c_types::FourBytes".to_owned());
807         res.insert("crate::c_types::TwelveBytes".to_owned());
808         res.insert("crate::c_types::SixteenBytes".to_owned());
809         res.insert("crate::c_types::TwentyBytes".to_owned());
810         res.insert("crate::c_types::ThirtyTwoBytes".to_owned());
811         res.insert("crate::c_types::EightU16s".to_owned());
812         res.insert("crate::c_types::SecretKey".to_owned());
813         res.insert("crate::c_types::PublicKey".to_owned());
814         res.insert("crate::c_types::Transaction".to_owned());
815         res.insert("crate::c_types::Witness".to_owned());
816         res.insert("crate::c_types::WitnessVersion".to_owned());
817         res.insert("crate::c_types::TxOut".to_owned());
818         res.insert("crate::c_types::Signature".to_owned());
819         res.insert("crate::c_types::RecoverableSignature".to_owned());
820         res.insert("crate::c_types::BigEndianScalar".to_owned());
821         res.insert("crate::c_types::Bech32Error".to_owned());
822         res.insert("crate::c_types::Secp256k1Error".to_owned());
823         res.insert("crate::c_types::IOError".to_owned());
824         res.insert("crate::c_types::Error".to_owned());
825         res.insert("crate::c_types::Str".to_owned());
826
827         // Because some types are manually-mapped to CVec_u8Z we may end up checking if its clonable
828         // before we ever get to constructing the type fully via
829         // `write_c_mangled_container_path_intern` (which will add it here too), so we have to manually
830         // add it on startup.
831         res.insert("crate::c_types::derived::CVec_u8Z".to_owned());
832         res
833 }
834
835 /// Top-level struct tracking everything which has been defined while walking the crate.
836 pub struct CrateTypes<'a> {
837         /// This may contain structs or enums, but only when either is mapped as
838         /// struct X { inner: *mut originalX, .. }
839         pub opaques: HashMap<String, (&'a syn::Ident, &'a syn::Generics)>,
840         /// structs that weren't exposed
841         pub priv_structs: HashMap<String, &'a syn::Generics>,
842         /// Enums which are mapped as C enums with conversion functions
843         pub mirrored_enums: HashMap<String, &'a syn::ItemEnum>,
844         /// Traits which are mapped as a pointer + jump table
845         pub traits: HashMap<String, &'a syn::ItemTrait>,
846         /// Aliases from paths to some other Type
847         pub type_aliases: HashMap<String, syn::Type>,
848         /// Value is an alias to Key (maybe with some generics)
849         pub reverse_alias_map: HashMap<String, Vec<(String, syn::PathArguments)>>,
850         /// Template continer types defined, map from mangled type name -> whether a destructor fn
851         /// exists.
852         ///
853         /// This is used at the end of processing to make C++ wrapper classes
854         pub templates_defined: RefCell<HashMap<String, bool, NonRandomHash>>,
855         /// The output file for any created template container types, written to as we find new
856         /// template containers which need to be defined.
857         template_file: RefCell<&'a mut File>,
858         /// Set of containers which are clonable
859         clonable_types: RefCell<HashSet<String>>,
860         /// Key impls Value
861         pub trait_impls: HashMap<String, Vec<String>>,
862         /// The full set of modules in the crate(s)
863         pub lib_ast: &'a FullLibraryAST,
864 }
865
866 impl<'a> CrateTypes<'a> {
867         pub fn new(template_file: &'a mut File, libast: &'a FullLibraryAST) -> Self {
868                 CrateTypes {
869                         opaques: HashMap::new(), mirrored_enums: HashMap::new(), traits: HashMap::new(),
870                         type_aliases: HashMap::new(), reverse_alias_map: HashMap::new(),
871                         templates_defined: RefCell::new(HashMap::default()), priv_structs: HashMap::new(),
872                         clonable_types: RefCell::new(initial_clonable_types()), trait_impls: HashMap::new(),
873                         template_file: RefCell::new(template_file), lib_ast: &libast,
874                 }
875         }
876         pub fn set_clonable(&self, object: String) {
877                 self.clonable_types.borrow_mut().insert(object);
878         }
879         pub fn is_clonable(&self, object: &str) -> bool {
880                 self.clonable_types.borrow().contains(object)
881         }
882         pub fn write_new_template(&self, mangled_container: String, has_destructor: bool, created_container: &[u8]) {
883                 self.template_file.borrow_mut().write(created_container).unwrap();
884                 self.templates_defined.borrow_mut().insert(mangled_container, has_destructor);
885         }
886 }
887
888 /// A struct which tracks resolving rust types into C-mapped equivalents, exists for one specific
889 /// module but contains a reference to the overall CrateTypes tracking.
890 pub struct TypeResolver<'mod_lifetime, 'crate_lft: 'mod_lifetime> {
891         pub module_path: &'mod_lifetime str,
892         pub crate_types: &'mod_lifetime CrateTypes<'crate_lft>,
893         pub types: ImportResolver<'mod_lifetime, 'crate_lft>,
894 }
895
896 /// Returned by write_empty_rust_val_check_suffix to indicate what type of dereferencing needs to
897 /// happen to get the inner value of a generic.
898 enum EmptyValExpectedTy {
899         /// A type which has a flag for being empty (eg an array where we treat all-0s as empty).
900         NonPointer,
901         /// A Option mapped as a COption_*Z
902         OptionType,
903         /// A pointer which we want to convert to a reference.
904         ReferenceAsPointer,
905 }
906
907 #[derive(PartialEq)]
908 /// Describes the appropriate place to print a general type-conversion string when converting a
909 /// container.
910 enum ContainerPrefixLocation {
911         /// Prints a general type-conversion string prefix and suffix outside of the
912         /// container-conversion strings.
913         OutsideConv,
914         /// Prints a general type-conversion string prefix and suffix inside of the
915         /// container-conversion strings.
916         PerConv,
917         /// Does not print the usual type-conversion string prefix and suffix.
918         NoPrefix,
919 }
920
921 impl<'a, 'c: 'a> TypeResolver<'a, 'c> {
922         pub fn new(module_path: &'a str, types: ImportResolver<'a, 'c>, crate_types: &'a CrateTypes<'c>) -> Self {
923                 Self { module_path, types, crate_types }
924         }
925
926         // *************************************************
927         // *** Well know type and conversion definitions ***
928         // *************************************************
929
930         /// Returns true we if can just skip passing this to C entirely
931         pub fn skip_path(&self, full_path: &str) -> bool {
932                 full_path == "bitcoin::secp256k1::Secp256k1" ||
933                 full_path == "bitcoin::secp256k1::Signing" ||
934                 full_path == "bitcoin::secp256k1::Verification"
935         }
936         /// Returns true we if can just skip passing this to C entirely
937         fn no_arg_path_to_rust(&self, full_path: &str) -> &str {
938                 if full_path == "bitcoin::secp256k1::Secp256k1" {
939                         "secp256k1::global::SECP256K1"
940                 } else { unimplemented!(); }
941         }
942
943         /// Returns true if the object is a primitive and is mapped as-is with no conversion
944         /// whatsoever.
945         pub fn is_primitive(&self, full_path: &str) -> bool {
946                 match full_path {
947                         "bool" => true,
948                         "u64" => true,
949                         "u32" => true,
950                         "u16" => true,
951                         "u8" => true,
952                         "usize" => true,
953                         _ => false,
954                 }
955         }
956         pub fn is_clonable(&self, ty: &str) -> bool {
957                 if self.crate_types.is_clonable(ty) { return true; }
958                 if self.is_primitive(ty) { return true; }
959                 match ty {
960                         "()" => true,
961                         _ => false,
962                 }
963         }
964         /// Gets the C-mapped type for types which are outside of the crate, or which are manually
965         /// ignored by for some reason need mapping anyway.
966         fn c_type_from_path<'b>(&self, full_path: &'b str, is_ref: bool, _ptr_for_ref: bool) -> Option<&'b str> {
967                 if self.is_primitive(full_path) {
968                         return Some(full_path);
969                 }
970                 match full_path {
971                         // Note that no !is_ref types can map to an array because Rust and C's call semantics
972                         // for arrays are different (https://github.com/eqrion/cbindgen/issues/528)
973
974                         "[u8; 32]" if !is_ref => Some("crate::c_types::ThirtyTwoBytes"),
975                         "[u8; 20]" if !is_ref => Some("crate::c_types::TwentyBytes"),
976                         "[u8; 16]" if !is_ref => Some("crate::c_types::SixteenBytes"),
977                         "[u8; 12]" if !is_ref => Some("crate::c_types::TwelveBytes"),
978                         "[u8; 4]" if !is_ref => Some("crate::c_types::FourBytes"),
979                         "[u8; 3]" if !is_ref => Some("crate::c_types::ThreeBytes"), // Used for RGB values
980                         "[u16; 8]" if !is_ref => Some("crate::c_types::EightU16s"),
981
982                         "str" if is_ref => Some("crate::c_types::Str"),
983                         "alloc::string::String"|"String" => Some("crate::c_types::Str"),
984
985                         "bitcoin::Address" => Some("crate::c_types::Str"),
986
987                         "std::time::Duration"|"core::time::Duration" => Some("u64"),
988                         "std::time::SystemTime" => Some("u64"),
989                         "std::io::Error"|"lightning::io::Error"|"lightning::io::ErrorKind" => Some("crate::c_types::IOError"),
990                         "core::fmt::Arguments" if is_ref => Some("crate::c_types::Str"),
991
992                         "core::convert::Infallible" => Some("crate::c_types::NotConstructable"),
993
994                         "bitcoin::bech32::Error"|"bech32::Error"
995                                 if !is_ref => Some("crate::c_types::Bech32Error"),
996                         "bitcoin::secp256k1::Error"|"secp256k1::Error"
997                                 if !is_ref => Some("crate::c_types::Secp256k1Error"),
998
999                         "core::num::ParseIntError" => Some("crate::c_types::Error"),
1000                         "core::str::Utf8Error" => Some("crate::c_types::Error"),
1001
1002                         "bitcoin::bech32::u5"|"bech32::u5" => Some("crate::c_types::U5"),
1003                         "u128" => Some("crate::c_types::U128"),
1004                         "core::num::NonZeroU8" => Some("u8"),
1005
1006                         "secp256k1::PublicKey"|"bitcoin::secp256k1::PublicKey" => Some("crate::c_types::PublicKey"),
1007                         "bitcoin::secp256k1::ecdsa::Signature" => Some("crate::c_types::Signature"),
1008                         "bitcoin::secp256k1::ecdsa::RecoverableSignature" => Some("crate::c_types::RecoverableSignature"),
1009                         "bitcoin::secp256k1::SecretKey" if is_ref  => Some("*const [u8; 32]"),
1010                         "bitcoin::secp256k1::SecretKey" if !is_ref => Some("crate::c_types::SecretKey"),
1011                         "bitcoin::secp256k1::Scalar" if is_ref  => Some("*const crate::c_types::BigEndianScalar"),
1012                         "bitcoin::secp256k1::Scalar" if !is_ref => Some("crate::c_types::BigEndianScalar"),
1013                         "bitcoin::secp256k1::ecdh::SharedSecret" if !is_ref => Some("crate::c_types::ThirtyTwoBytes"),
1014
1015                         "bitcoin::blockdata::script::Script" if is_ref => Some("crate::c_types::u8slice"),
1016                         "bitcoin::blockdata::script::Script" if !is_ref => Some("crate::c_types::derived::CVec_u8Z"),
1017                         "bitcoin::OutPoint"|"bitcoin::blockdata::transaction::OutPoint" => Some("crate::lightning::chain::transaction::OutPoint"),
1018                         "bitcoin::blockdata::transaction::Transaction"|"bitcoin::Transaction" => Some("crate::c_types::Transaction"),
1019                         "bitcoin::Witness" => Some("crate::c_types::Witness"),
1020                         "bitcoin::TxOut"|"bitcoin::blockdata::transaction::TxOut" if !is_ref => Some("crate::c_types::TxOut"),
1021                         "bitcoin::network::constants::Network" => Some("crate::bitcoin::network::Network"),
1022                         "bitcoin::util::address::WitnessVersion" => Some("crate::c_types::WitnessVersion"),
1023                         "bitcoin::blockdata::block::BlockHeader" if is_ref  => Some("*const [u8; 80]"),
1024                         "bitcoin::blockdata::block::Block" if is_ref  => Some("crate::c_types::u8slice"),
1025
1026                         "bitcoin::PubkeyHash"|"bitcoin::hash_types::PubkeyHash"|
1027                         "bitcoin::hash_types::WPubkeyHash"|
1028                         "bitcoin::ScriptHash"|"bitcoin::hash_types::ScriptHash"
1029                                 if !is_ref => Some("crate::c_types::TwentyBytes"),
1030                         "bitcoin::PubkeyHash"|"bitcoin::hash_types::PubkeyHash"|
1031                         "bitcoin::hash_types::WPubkeyHash"|
1032                         "bitcoin::ScriptHash"|"bitcoin::hash_types::ScriptHash"
1033                                 if is_ref => Some("*const [u8; 20]"),
1034                         "bitcoin::hash_types::WScriptHash"
1035                                 if is_ref => Some("*const [u8; 32]"),
1036
1037                         // Newtypes that we just expose in their original form.
1038                         "bitcoin::hash_types::Txid"|"bitcoin::BlockHash"|"bitcoin::hash_types::BlockHash"|"bitcoin_hashes::sha256::Hash"|"bitcoin::blockdata::constants::ChainHash"
1039                                 if is_ref  => Some("*const [u8; 32]"),
1040                         "bitcoin::hash_types::Txid"|"bitcoin::BlockHash"|"bitcoin::hash_types::BlockHash"|"bitcoin_hashes::sha256::Hash"|"bitcoin::blockdata::constants::ChainHash"
1041                                 if !is_ref => Some("crate::c_types::ThirtyTwoBytes"),
1042                         "bitcoin::secp256k1::Message" if !is_ref => Some("crate::c_types::ThirtyTwoBytes"),
1043                         "lightning::ln::PaymentHash"|"lightning::ln::PaymentPreimage"|"lightning::ln::PaymentSecret"
1044                         |"lightning::ln::channelmanager::PaymentId"|"lightning::ln::channelmanager::InterceptId"
1045                         |"lightning::chain::keysinterface::KeyMaterial"
1046                                 if is_ref => Some("*const [u8; 32]"),
1047                         "lightning::ln::PaymentHash"|"lightning::ln::PaymentPreimage"|"lightning::ln::PaymentSecret"
1048                         |"lightning::ln::channelmanager::PaymentId"|"lightning::ln::channelmanager::InterceptId"
1049                         |"lightning::chain::keysinterface::KeyMaterial"
1050                                 if !is_ref => Some("crate::c_types::ThirtyTwoBytes"),
1051
1052                         "lightning::io::Read" => Some("crate::c_types::u8slice"),
1053
1054                         _ => None,
1055                 }
1056         }
1057
1058         fn from_c_conversion_new_var_from_path<'b>(&self, _full_path: &str, _is_ref: bool) -> Option<(&'b str, &'b str)> {
1059                 None
1060         }
1061         fn from_c_conversion_prefix_from_path<'b>(&self, full_path: &str, is_ref: bool) -> Option<String> {
1062                 if self.is_primitive(full_path) {
1063                         return Some("".to_owned());
1064                 }
1065                 match full_path {
1066                         "Vec" if !is_ref => Some("local_"),
1067                         "Result" if !is_ref => Some("local_"),
1068                         "Option" if is_ref => Some("&local_"),
1069                         "Option" => Some("local_"),
1070
1071                         "[u8; 32]" if is_ref => Some("unsafe { &*"),
1072                         "[u8; 32]" if !is_ref => Some(""),
1073                         "[u8; 20]" if !is_ref => Some(""),
1074                         "[u8; 16]" if !is_ref => Some(""),
1075                         "[u8; 12]" if !is_ref => Some(""),
1076                         "[u8; 4]" if !is_ref => Some(""),
1077                         "[u8; 3]" if !is_ref => Some(""),
1078                         "[u16; 8]" if !is_ref => Some(""),
1079
1080                         "[u8]" if is_ref => Some(""),
1081                         "[usize]" if is_ref => Some(""),
1082
1083                         "str" if is_ref => Some(""),
1084                         "alloc::string::String"|"String" => Some(""),
1085                         "std::io::Error"|"lightning::io::Error"|"lightning::io::ErrorKind" => Some(""),
1086                         // Note that we'll panic for String if is_ref, as we only have non-owned memory, we
1087                         // cannot create a &String.
1088
1089                         "core::convert::Infallible" => Some("panic!(\"You must never construct a NotConstructable! : "),
1090
1091                         "bitcoin::bech32::Error"|"bech32::Error" if !is_ref => Some(""),
1092                         "bitcoin::secp256k1::Error"|"secp256k1::Error" if !is_ref => Some(""),
1093
1094                         "core::num::ParseIntError" => Some("u8::from_str_radix(\" a\", 10).unwrap_err() /*"),
1095                         "core::str::Utf8Error" => Some("core::str::from_utf8(&[0xff]).unwrap_err() /*"),
1096
1097                         "std::time::Duration"|"core::time::Duration" => Some("core::time::Duration::from_secs("),
1098                         "std::time::SystemTime" => Some("(::std::time::SystemTime::UNIX_EPOCH + std::time::Duration::from_secs("),
1099
1100                         "bitcoin::bech32::u5"|"bech32::u5" => Some(""),
1101                         "u128" => Some(""),
1102                         "core::num::NonZeroU8" => Some("core::num::NonZeroU8::new("),
1103
1104                         "bitcoin::secp256k1::PublicKey"|"secp256k1::PublicKey" if is_ref => Some("&"),
1105                         "bitcoin::secp256k1::PublicKey"|"secp256k1::PublicKey" => Some(""),
1106                         "bitcoin::secp256k1::ecdsa::Signature" if is_ref => Some("&"),
1107                         "bitcoin::secp256k1::ecdsa::Signature" => Some(""),
1108                         "bitcoin::secp256k1::ecdsa::RecoverableSignature" => Some(""),
1109                         "bitcoin::secp256k1::SecretKey" if is_ref => Some("&::bitcoin::secp256k1::SecretKey::from_slice(&unsafe { *"),
1110                         "bitcoin::secp256k1::SecretKey" if !is_ref => Some(""),
1111                         "bitcoin::secp256k1::Scalar" if is_ref => Some("&"),
1112                         "bitcoin::secp256k1::Scalar" if !is_ref => Some(""),
1113                         "bitcoin::secp256k1::ecdh::SharedSecret" if !is_ref => Some("::bitcoin::secp256k1::ecdh::SharedSecret::from_bytes("),
1114
1115                         "bitcoin::blockdata::script::Script" if is_ref => Some("&::bitcoin::blockdata::script::Script::from(Vec::from("),
1116                         "bitcoin::blockdata::script::Script" if !is_ref => Some("::bitcoin::blockdata::script::Script::from("),
1117                         "bitcoin::blockdata::transaction::Transaction"|"bitcoin::Transaction" if is_ref => Some("&"),
1118                         "bitcoin::blockdata::transaction::Transaction"|"bitcoin::Transaction" => Some(""),
1119                         "bitcoin::Witness" if is_ref => Some("&"),
1120                         "bitcoin::Witness" => Some(""),
1121                         "bitcoin::OutPoint"|"bitcoin::blockdata::transaction::OutPoint" => Some("crate::c_types::C_to_bitcoin_outpoint("),
1122                         "bitcoin::TxOut"|"bitcoin::blockdata::transaction::TxOut" if !is_ref => Some(""),
1123                         "bitcoin::network::constants::Network" => Some(""),
1124                         "bitcoin::util::address::WitnessVersion" => Some(""),
1125                         "bitcoin::blockdata::block::BlockHeader" => Some("&::bitcoin::consensus::encode::deserialize(unsafe { &*"),
1126                         "bitcoin::blockdata::block::Block" if is_ref => Some("&::bitcoin::consensus::encode::deserialize("),
1127
1128                         "bitcoin::PubkeyHash"|"bitcoin::hash_types::PubkeyHash" if !is_ref =>
1129                                 Some("bitcoin::hash_types::PubkeyHash::from_hash(bitcoin::hashes::Hash::from_inner("),
1130                         "bitcoin::PubkeyHash"|"bitcoin::hash_types::PubkeyHash" if is_ref =>
1131                                 Some("&bitcoin::hash_types::PubkeyHash::from_hash(bitcoin::hashes::Hash::from_inner(unsafe { *"),
1132                         "bitcoin::hash_types::WPubkeyHash" if is_ref =>
1133                                 Some("&bitcoin::hash_types::WPubkeyHash::from_hash(bitcoin::hashes::Hash::from_inner(unsafe { *"),
1134                         "bitcoin::ScriptHash"|"bitcoin::hash_types::ScriptHash" if !is_ref =>
1135                                 Some("bitcoin::hash_types::ScriptHash::from_hash(bitcoin::hashes::Hash::from_inner("),
1136                         "bitcoin::ScriptHash"|"bitcoin::hash_types::ScriptHash" if is_ref =>
1137                                 Some("&bitcoin::hash_types::ScriptHash::from_hash(bitcoin::hashes::Hash::from_inner(unsafe { *"),
1138                         "bitcoin::hash_types::WScriptHash" if is_ref =>
1139                                 Some("&bitcoin::hash_types::WScriptHash::from_hash(bitcoin::hashes::Hash::from_inner(unsafe { *"),
1140
1141                         // Newtypes that we just expose in their original form.
1142                         "bitcoin::hash_types::Txid" if is_ref => Some("&::bitcoin::hash_types::Txid::from_slice(&unsafe { &*"),
1143                         "bitcoin::hash_types::Txid" if !is_ref => Some("::bitcoin::hash_types::Txid::from_slice(&"),
1144                         "bitcoin::hash_types::BlockHash"|"bitcoin::BlockHash" => Some("::bitcoin::hash_types::BlockHash::from_slice(&"),
1145                         "bitcoin::blockdata::constants::ChainHash" => Some("::bitcoin::blockdata::constants::ChainHash::from(&"),
1146                         "lightning::ln::PaymentHash" if !is_ref => Some("::lightning::ln::PaymentHash("),
1147                         "lightning::ln::PaymentHash" if is_ref => Some("&::lightning::ln::PaymentHash(unsafe { *"),
1148                         "lightning::ln::PaymentPreimage" if !is_ref => Some("::lightning::ln::PaymentPreimage("),
1149                         "lightning::ln::PaymentPreimage" if is_ref => Some("&::lightning::ln::PaymentPreimage(unsafe { *"),
1150                         "lightning::ln::PaymentSecret" if !is_ref => Some("::lightning::ln::PaymentSecret("),
1151                         "lightning::ln::channelmanager::PaymentId" if !is_ref => Some("::lightning::ln::channelmanager::PaymentId("),
1152                         "lightning::ln::channelmanager::PaymentId" if is_ref=> Some("&::lightning::ln::channelmanager::PaymentId( unsafe { *"),
1153                         "lightning::ln::channelmanager::InterceptId" if !is_ref => Some("::lightning::ln::channelmanager::InterceptId("),
1154                         "lightning::ln::channelmanager::InterceptId" if is_ref=> Some("&::lightning::ln::channelmanager::InterceptId( unsafe { *"),
1155                         "lightning::chain::keysinterface::KeyMaterial" if !is_ref => Some("::lightning::chain::keysinterface::KeyMaterial("),
1156                         "lightning::chain::keysinterface::KeyMaterial" if is_ref=> Some("&::lightning::chain::keysinterface::KeyMaterial( unsafe { *"),
1157
1158                         // List of traits we map (possibly during processing of other files):
1159                         "lightning::io::Read" => Some("&mut "),
1160
1161                         _ => None,
1162                 }.map(|s| s.to_owned())
1163         }
1164         fn from_c_conversion_suffix_from_path<'b>(&self, full_path: &str, is_ref: bool) -> Option<String> {
1165                 if self.is_primitive(full_path) {
1166                         return Some("".to_owned());
1167                 }
1168                 match full_path {
1169                         "Vec" if !is_ref => Some(""),
1170                         "Option" => Some(""),
1171                         "Result" if !is_ref => Some(""),
1172
1173                         "[u8; 32]" if is_ref => Some("}"),
1174                         "[u8; 32]" if !is_ref => Some(".data"),
1175                         "[u8; 20]" if !is_ref => Some(".data"),
1176                         "[u8; 16]" if !is_ref => Some(".data"),
1177                         "[u8; 12]" if !is_ref => Some(".data"),
1178                         "[u8; 4]" if !is_ref => Some(".data"),
1179                         "[u8; 3]" if !is_ref => Some(".data"),
1180                         "[u16; 8]" if !is_ref => Some(".data"),
1181
1182                         "[u8]" if is_ref => Some(".to_slice()"),
1183                         "[usize]" if is_ref => Some(".to_slice()"),
1184
1185                         "str" if is_ref => Some(".into_str()"),
1186                         "alloc::string::String"|"String" => Some(".into_string()"),
1187                         "std::io::Error"|"lightning::io::Error" => Some(".to_rust()"),
1188                         "lightning::io::ErrorKind" => Some(".to_rust_kind()"),
1189
1190                         "core::convert::Infallible" => Some("\")"),
1191
1192                         "bitcoin::bech32::Error"|"bech32::Error" if !is_ref => Some(".into_rust()"),
1193                         "bitcoin::secp256k1::Error"|"secp256k1::Error" if !is_ref => Some(".into_rust()"),
1194
1195                         "core::num::ParseIntError" => Some("*/"),
1196                         "core::str::Utf8Error" => Some("*/"),
1197
1198                         "std::time::Duration"|"core::time::Duration" => Some(")"),
1199                         "std::time::SystemTime" => Some("))"),
1200
1201                         "bitcoin::bech32::u5"|"bech32::u5" => Some(".into()"),
1202                         "u128" => Some(".into()"),
1203                         "core::num::NonZeroU8" => Some(").expect(\"Value must be non-zero\")"),
1204
1205                         "bitcoin::secp256k1::PublicKey"|"secp256k1::PublicKey" => Some(".into_rust()"),
1206                         "bitcoin::secp256k1::ecdsa::Signature" => Some(".into_rust()"),
1207                         "bitcoin::secp256k1::ecdsa::RecoverableSignature" => Some(".into_rust()"),
1208                         "bitcoin::secp256k1::SecretKey" if !is_ref => Some(".into_rust()"),
1209                         "bitcoin::secp256k1::SecretKey" if is_ref => Some("}[..]).unwrap()"),
1210                         "bitcoin::secp256k1::Scalar" => Some(".into_rust()"),
1211                         "bitcoin::secp256k1::ecdh::SharedSecret" if !is_ref => Some(".data)"),
1212
1213                         "bitcoin::blockdata::script::Script" if is_ref => Some(".to_slice()))"),
1214                         "bitcoin::blockdata::script::Script" if !is_ref => Some(".into_rust())"),
1215                         "bitcoin::blockdata::transaction::Transaction"|"bitcoin::Transaction" => Some(".into_bitcoin()"),
1216                         "bitcoin::Witness" => Some(".into_bitcoin()"),
1217                         "bitcoin::OutPoint"|"bitcoin::blockdata::transaction::OutPoint" => Some(")"),
1218                         "bitcoin::TxOut"|"bitcoin::blockdata::transaction::TxOut" if !is_ref => Some(".into_rust()"),
1219                         "bitcoin::network::constants::Network" => Some(".into_bitcoin()"),
1220                         "bitcoin::util::address::WitnessVersion" => Some(".into()"),
1221                         "bitcoin::blockdata::block::BlockHeader" => Some(" }).unwrap()"),
1222                         "bitcoin::blockdata::block::Block" => Some(".to_slice()).unwrap()"),
1223
1224                         "bitcoin::PubkeyHash"|"bitcoin::hash_types::PubkeyHash"|
1225                         "bitcoin::hash_types::WPubkeyHash"|"bitcoin::hash_types::WScriptHash"|
1226                         "bitcoin::ScriptHash"|"bitcoin::hash_types::ScriptHash"
1227                                 if !is_ref => Some(".data))"),
1228                         "bitcoin::PubkeyHash"|"bitcoin::hash_types::PubkeyHash"|
1229                         "bitcoin::hash_types::WPubkeyHash"|"bitcoin::hash_types::WScriptHash"|
1230                         "bitcoin::ScriptHash"|"bitcoin::hash_types::ScriptHash"
1231                                 if is_ref => Some(" }.clone()))"),
1232
1233                         // Newtypes that we just expose in their original form.
1234                         "bitcoin::hash_types::Txid" if is_ref => Some(" }[..]).unwrap()"),
1235                         "bitcoin::hash_types::Txid" => Some(".data[..]).unwrap()"),
1236                         "bitcoin::hash_types::BlockHash"|"bitcoin::BlockHash" if !is_ref => Some(".data[..]).unwrap()"),
1237                         "bitcoin::blockdata::constants::ChainHash" if !is_ref => Some(".data[..])"),
1238                         "lightning::ln::PaymentHash"|"lightning::ln::PaymentPreimage"|"lightning::ln::PaymentSecret"
1239                         |"lightning::ln::channelmanager::PaymentId"|"lightning::ln::channelmanager::InterceptId"
1240                         |"lightning::chain::keysinterface::KeyMaterial"
1241                                 if !is_ref => Some(".data)"),
1242                         "lightning::ln::PaymentHash"|"lightning::ln::PaymentPreimage"|"lightning::ln::PaymentSecret"
1243                         |"lightning::ln::channelmanager::PaymentId"|"lightning::ln::channelmanager::InterceptId"
1244                         |"lightning::chain::keysinterface::KeyMaterial"
1245                                 if is_ref => Some(" })"),
1246
1247                         // List of traits we map (possibly during processing of other files):
1248                         "lightning::io::Read" => Some(".to_reader()"),
1249
1250                         _ => None,
1251                 }.map(|s| s.to_owned())
1252         }
1253
1254         fn to_c_conversion_new_var_from_path<'b>(&self, full_path: &str, is_ref: bool) -> Option<(&'b str, &'b str)> {
1255                 if self.is_primitive(full_path) {
1256                         return None;
1257                 }
1258                 match full_path {
1259                         "[u8]" if is_ref => Some(("crate::c_types::u8slice::from_slice(", ")")),
1260                         "[usize]" if is_ref => Some(("crate::c_types::usizeslice::from_slice(", ")")),
1261
1262                         "bitcoin::blockdata::block::BlockHeader" if is_ref => Some(("{ let mut s = [0u8; 80]; s[..].copy_from_slice(&::bitcoin::consensus::encode::serialize(", ")); s }")),
1263                         "bitcoin::blockdata::block::Block" if is_ref => Some(("::bitcoin::consensus::encode::serialize(", ")")),
1264                         "bitcoin::hash_types::Txid" => None,
1265
1266                         _ => None,
1267                 }.map(|s| s.to_owned())
1268         }
1269         fn to_c_conversion_inline_prefix_from_path(&self, full_path: &str, is_ref: bool, _ptr_for_ref: bool) -> Option<String> {
1270                 if self.is_primitive(full_path) {
1271                         return Some("".to_owned());
1272                 }
1273                 match full_path {
1274                         "Result" if !is_ref => Some("local_"),
1275                         "Vec" if !is_ref => Some("local_"),
1276                         "Option" => Some("local_"),
1277
1278                         "[u8; 32]" if !is_ref => Some("crate::c_types::ThirtyTwoBytes { data: "),
1279                         "[u8; 32]" if is_ref => Some(""),
1280                         "[u8; 20]" if !is_ref => Some("crate::c_types::TwentyBytes { data: "),
1281                         "[u8; 16]" if !is_ref => Some("crate::c_types::SixteenBytes { data: "),
1282                         "[u8; 12]" if !is_ref => Some("crate::c_types::TwelveBytes { data: "),
1283                         "[u8; 4]" if !is_ref => Some("crate::c_types::FourBytes { data: "),
1284                         "[u8; 3]" if is_ref => Some(""),
1285                         "[u16; 8]" if !is_ref => Some("crate::c_types::EightU16s { data: "),
1286
1287                         "[u8]" if is_ref => Some("local_"),
1288                         "[usize]" if is_ref => Some("local_"),
1289
1290                         "str" if is_ref => Some(""),
1291                         "alloc::string::String"|"String" => Some(""),
1292
1293                         "bitcoin::Address" => Some("alloc::string::ToString::to_string(&"),
1294
1295                         "std::time::Duration"|"core::time::Duration" => Some(""),
1296                         "std::time::SystemTime" => Some(""),
1297                         "std::io::Error"|"lightning::io::Error" => Some("crate::c_types::IOError::from_rust("),
1298                         "lightning::io::ErrorKind" => Some("crate::c_types::IOError::from_rust_kind("),
1299                         "core::fmt::Arguments" => Some("alloc::format!(\"{}\", "),
1300
1301                         "core::convert::Infallible" => Some("panic!(\"Cannot construct an Infallible: "),
1302
1303                         "bitcoin::bech32::Error"|"bech32::Error"
1304                                 if !is_ref => Some("crate::c_types::Bech32Error::from_rust("),
1305                         "bitcoin::secp256k1::Error"|"secp256k1::Error"
1306                                 if !is_ref => Some("crate::c_types::Secp256k1Error::from_rust("),
1307
1308                         "core::num::ParseIntError" => Some("crate::c_types::Error { _dummy: 0 } /*"),
1309                         "core::str::Utf8Error" => Some("crate::c_types::Error { _dummy: 0 } /*"),
1310
1311                         "bitcoin::bech32::u5"|"bech32::u5" => Some(""),
1312                         "u128" => Some(""),
1313
1314                         "bitcoin::secp256k1::PublicKey"|"secp256k1::PublicKey" => Some("crate::c_types::PublicKey::from_rust(&"),
1315                         "bitcoin::secp256k1::ecdsa::Signature" => Some("crate::c_types::Signature::from_rust(&"),
1316                         "bitcoin::secp256k1::ecdsa::RecoverableSignature" => Some("crate::c_types::RecoverableSignature::from_rust(&"),
1317                         "bitcoin::secp256k1::SecretKey" if is_ref => Some(""),
1318                         "bitcoin::secp256k1::SecretKey" if !is_ref => Some("crate::c_types::SecretKey::from_rust("),
1319                         "bitcoin::secp256k1::Scalar" if !is_ref => Some("crate::c_types::BigEndianScalar::from_rust(&"),
1320                         "bitcoin::secp256k1::ecdh::SharedSecret" if !is_ref => Some("crate::c_types::ThirtyTwoBytes { data: "),
1321
1322                         "bitcoin::blockdata::script::Script" if is_ref => Some("crate::c_types::u8slice::from_slice(&"),
1323                         "bitcoin::blockdata::script::Script" if !is_ref => Some(""),
1324                         "bitcoin::blockdata::transaction::Transaction"|"bitcoin::Transaction" if is_ref => Some("crate::c_types::Transaction::from_bitcoin("),
1325                         "bitcoin::blockdata::transaction::Transaction"|"bitcoin::Transaction" => Some("crate::c_types::Transaction::from_bitcoin(&"),
1326                         "bitcoin::Witness" if is_ref => Some("crate::c_types::Witness::from_bitcoin("),
1327                         "bitcoin::Witness" if !is_ref => Some("crate::c_types::Witness::from_bitcoin(&"),
1328                         "bitcoin::OutPoint"|"bitcoin::blockdata::transaction::OutPoint" => Some("crate::c_types::bitcoin_to_C_outpoint("),
1329                         "bitcoin::TxOut"|"bitcoin::blockdata::transaction::TxOut" if !is_ref => Some("crate::c_types::TxOut::from_rust("),
1330                         "bitcoin::network::constants::Network" => Some("crate::bitcoin::network::Network::from_bitcoin("),
1331                         "bitcoin::util::address::WitnessVersion" => Some(""),
1332                         "bitcoin::blockdata::block::BlockHeader" if is_ref => Some("&local_"),
1333                         "bitcoin::blockdata::block::Block" if is_ref => Some("crate::c_types::u8slice::from_slice(&local_"),
1334
1335                         "bitcoin::hash_types::Txid" if !is_ref => Some("crate::c_types::ThirtyTwoBytes { data: "),
1336
1337                         "bitcoin::PubkeyHash"|"bitcoin::hash_types::PubkeyHash"|
1338                         "bitcoin::hash_types::WPubkeyHash"|"bitcoin::hash_types::WScriptHash"|
1339                         "bitcoin::ScriptHash"|"bitcoin::hash_types::ScriptHash"
1340                                 if !is_ref => Some("crate::c_types::TwentyBytes { data: "),
1341
1342                         // Newtypes that we just expose in their original form.
1343                         "bitcoin::hash_types::Txid"|"bitcoin::BlockHash"|"bitcoin::hash_types::BlockHash"|"bitcoin_hashes::sha256::Hash"|"bitcoin::blockdata::constants::ChainHash"
1344                                 if is_ref => Some(""),
1345                         "bitcoin::hash_types::Txid"|"bitcoin::BlockHash"|"bitcoin::hash_types::BlockHash"|"bitcoin_hashes::sha256::Hash"|"bitcoin::blockdata::constants::ChainHash"
1346                                 if !is_ref => Some("crate::c_types::ThirtyTwoBytes { data: "),
1347                         "bitcoin::secp256k1::Message" if !is_ref => Some("crate::c_types::ThirtyTwoBytes { data: "),
1348                         "lightning::ln::PaymentHash"|"lightning::ln::PaymentPreimage"|"lightning::ln::PaymentSecret"
1349                         |"lightning::ln::channelmanager::PaymentId"|"lightning::ln::channelmanager::InterceptId"
1350                         |"lightning::chain::keysinterface::KeyMaterial"
1351                                 if is_ref => Some("&"),
1352                         "lightning::ln::PaymentHash"|"lightning::ln::PaymentPreimage"|"lightning::ln::PaymentSecret"
1353                         |"lightning::ln::channelmanager::PaymentId"|"lightning::ln::channelmanager::InterceptId"
1354                         |"lightning::chain::keysinterface::KeyMaterial"
1355                                 if !is_ref => Some("crate::c_types::ThirtyTwoBytes { data: "),
1356
1357                         "lightning::io::Read" => Some("crate::c_types::u8slice::from_vec(&crate::c_types::reader_to_vec("),
1358
1359                         _ => None,
1360                 }.map(|s| s.to_owned())
1361         }
1362         fn to_c_conversion_inline_suffix_from_path(&self, full_path: &str, is_ref: bool, _ptr_for_ref: bool) -> Option<String> {
1363                 if self.is_primitive(full_path) {
1364                         return Some("".to_owned());
1365                 }
1366                 match full_path {
1367                         "Result" if !is_ref => Some(""),
1368                         "Vec" if !is_ref => Some(".into()"),
1369                         "Option" => Some(""),
1370
1371                         "[u8; 32]" if !is_ref => Some(" }"),
1372                         "[u8; 32]" if is_ref => Some(""),
1373                         "[u8; 20]" if !is_ref => Some(" }"),
1374                         "[u8; 16]" if !is_ref => Some(" }"),
1375                         "[u8; 12]" if !is_ref => Some(" }"),
1376                         "[u8; 4]" if !is_ref => Some(" }"),
1377                         "[u8; 3]" if is_ref => Some(""),
1378                         "[u16; 8]" if !is_ref => Some(" }"),
1379
1380                         "[u8]" if is_ref => Some(""),
1381                         "[usize]" if is_ref => Some(""),
1382
1383                         "str" if is_ref => Some(".into()"),
1384                         "alloc::string::String"|"String" if is_ref => Some(".as_str().into()"),
1385                         "alloc::string::String"|"String" => Some(".into()"),
1386
1387                         "bitcoin::Address" => Some(").into()"),
1388
1389                         "std::time::Duration"|"core::time::Duration" => Some(".as_secs()"),
1390                         "std::time::SystemTime" => Some(".duration_since(::std::time::SystemTime::UNIX_EPOCH).expect(\"Times must be post-1970\").as_secs()"),
1391                         "std::io::Error"|"lightning::io::Error"|"lightning::io::ErrorKind" => Some(")"),
1392                         "core::fmt::Arguments" => Some(").into()"),
1393
1394                         "core::convert::Infallible" => Some("\")"),
1395
1396                         "bitcoin::secp256k1::Error"|"bech32::Error"
1397                                 if !is_ref => Some(")"),
1398                         "bitcoin::secp256k1::Error"|"secp256k1::Error"
1399                                 if !is_ref => Some(")"),
1400
1401                         "core::num::ParseIntError" => Some("*/"),
1402                         "core::str::Utf8Error" => Some("*/"),
1403
1404                         "bitcoin::bech32::u5"|"bech32::u5" => Some(".into()"),
1405                         "u128" => Some(".into()"),
1406
1407                         "bitcoin::secp256k1::PublicKey"|"secp256k1::PublicKey" => Some(")"),
1408                         "bitcoin::secp256k1::ecdsa::Signature" => Some(")"),
1409                         "bitcoin::secp256k1::ecdsa::RecoverableSignature" => Some(")"),
1410                         "bitcoin::secp256k1::SecretKey" if !is_ref => Some(")"),
1411                         "bitcoin::secp256k1::SecretKey" if is_ref => Some(".as_ref()"),
1412                         "bitcoin::secp256k1::Scalar" if !is_ref => Some(")"),
1413                         "bitcoin::secp256k1::ecdh::SharedSecret" if !is_ref => Some(".secret_bytes() }"),
1414
1415                         "bitcoin::blockdata::script::Script" if is_ref => Some("[..])"),
1416                         "bitcoin::blockdata::script::Script" if !is_ref => Some(".into_bytes().into()"),
1417                         "bitcoin::blockdata::transaction::Transaction"|"bitcoin::Transaction" => Some(")"),
1418                         "bitcoin::Witness" => Some(")"),
1419                         "bitcoin::OutPoint"|"bitcoin::blockdata::transaction::OutPoint" => Some(")"),
1420                         "bitcoin::TxOut"|"bitcoin::blockdata::transaction::TxOut" if !is_ref => Some(")"),
1421                         "bitcoin::network::constants::Network" => Some(")"),
1422                         "bitcoin::util::address::WitnessVersion" => Some(".into()"),
1423                         "bitcoin::blockdata::block::BlockHeader" if is_ref => Some(""),
1424                         "bitcoin::blockdata::block::Block" if is_ref => Some(")"),
1425
1426                         "bitcoin::hash_types::Txid" if !is_ref => Some(".into_inner() }"),
1427
1428                         "bitcoin::PubkeyHash"|"bitcoin::hash_types::PubkeyHash"|
1429                         "bitcoin::hash_types::WPubkeyHash"|"bitcoin::hash_types::WScriptHash"|
1430                         "bitcoin::ScriptHash"|"bitcoin::hash_types::ScriptHash"
1431                                 if !is_ref => Some(".as_hash().into_inner() }"),
1432
1433                         // Newtypes that we just expose in their original form.
1434                         "bitcoin::hash_types::Txid"|"bitcoin::BlockHash"|"bitcoin::hash_types::BlockHash"|"bitcoin_hashes::sha256::Hash"
1435                                 if is_ref => Some(".as_inner()"),
1436                         "bitcoin::hash_types::Txid"|"bitcoin::BlockHash"|"bitcoin::hash_types::BlockHash"|"bitcoin_hashes::sha256::Hash"
1437                                 if !is_ref => Some(".into_inner() }"),
1438                         "bitcoin::blockdata::constants::ChainHash" if is_ref => Some(".as_bytes() }"),
1439                         "bitcoin::blockdata::constants::ChainHash" if !is_ref => Some(".to_bytes() }"),
1440                         "bitcoin::secp256k1::Message" if !is_ref => Some(".as_ref().clone() }"),
1441                         "lightning::ln::PaymentHash"|"lightning::ln::PaymentPreimage"|"lightning::ln::PaymentSecret"
1442                         |"lightning::ln::channelmanager::PaymentId"|"lightning::ln::channelmanager::InterceptId"
1443                         |"lightning::chain::keysinterface::KeyMaterial"
1444                                 if is_ref => Some(".0"),
1445                         "lightning::ln::PaymentHash"|"lightning::ln::PaymentPreimage"|"lightning::ln::PaymentSecret"
1446                         |"lightning::ln::channelmanager::PaymentId"|"lightning::ln::channelmanager::InterceptId"
1447                         |"lightning::chain::keysinterface::KeyMaterial"
1448                                 if !is_ref => Some(".0 }"),
1449
1450                         "lightning::io::Read" => Some("))"),
1451
1452                         _ => None,
1453                 }.map(|s| s.to_owned())
1454         }
1455
1456         fn empty_val_check_suffix_from_path(&self, full_path: &str) -> Option<&str> {
1457                 match full_path {
1458                         "secp256k1::PublicKey"|"bitcoin::secp256k1::PublicKey" => Some(".is_null()"),
1459                         "bitcoin::secp256k1::ecdsa::Signature" => Some(".is_null()"),
1460                         _ => None
1461                 }
1462         }
1463
1464         /// When printing a reference to the source crate's rust type, if we need to map it to a
1465         /// different "real" type, it can be done so here.
1466         /// This is useful to work around limitations in the binding type resolver, where we reference
1467         /// a non-public `use` alias.
1468         /// TODO: We should never need to use this!
1469         fn real_rust_type_mapping<'equiv>(&self, thing: &'equiv str) -> &'equiv str {
1470                 match thing {
1471                         "lightning::io::Read" => "crate::c_types::io::Read",
1472                         _ => thing,
1473                 }
1474         }
1475
1476         // ****************************
1477         // *** Container Processing ***
1478         // ****************************
1479
1480         /// Returns the module path in the generated mapping crate to the containers which we generate
1481         /// when writing to CrateTypes::template_file.
1482         pub fn generated_container_path() -> &'static str {
1483                 "crate::c_types::derived"
1484         }
1485         /// Returns the module path in the generated mapping crate to the container templates, which
1486         /// are then concretized and put in the generated container path/template_file.
1487         fn container_templ_path() -> &'static str {
1488                 "crate::c_types"
1489         }
1490
1491         /// This should just be a closure, but doing so gets an error like
1492         /// error: reached the recursion limit while instantiating `types::TypeResolver::is_transpar...c/types.rs:1358:104: 1358:110]>>`
1493         /// which implies the concrete function instantiation of `is_transparent_container` ends up
1494         /// being recursive.
1495         fn deref_type<'one, 'b: 'one> (obj: &'one &'b syn::Type) -> &'b syn::Type { *obj }
1496
1497         /// Returns true if the path containing the given args is a "transparent" container, ie an
1498         /// Option or a container which does not require a generated continer class.
1499         fn is_transparent_container<'i, I: Iterator<Item=&'i syn::Type>>(&self, full_path: &str, _is_ref: bool, mut args: I, generics: Option<&GenericTypes>) -> bool {
1500                 if full_path == "Option" {
1501                         let inner = args.next().unwrap();
1502                         assert!(args.next().is_none());
1503                         match generics.resolve_type(inner) {
1504                                 syn::Type::Reference(r) => {
1505                                         let elem = &*r.elem;
1506                                         match elem {
1507                                                 syn::Type::Path(_) =>
1508                                                         self.is_transparent_container(full_path, true, [elem].iter().map(Self::deref_type), generics),
1509                                                 _ => true,
1510                                         }
1511                                 },
1512                                 syn::Type::Array(a) => {
1513                                         if let syn::Expr::Lit(l) = &a.len {
1514                                                 if let syn::Lit::Int(i) = &l.lit {
1515                                                         if i.base10_digits().parse::<usize>().unwrap() >= 32 {
1516                                                                 let mut buf = Vec::new();
1517                                                                 self.write_rust_type(&mut buf, generics, &a.elem, false);
1518                                                                 let ty = String::from_utf8(buf).unwrap();
1519                                                                 ty == "u8"
1520                                                         } else {
1521                                                                 // Blindly assume that if we're trying to create an empty value for an
1522                                                                 // array < 32 entries that all-0s may be a valid state.
1523                                                                 unimplemented!();
1524                                                         }
1525                                                 } else { unimplemented!(); }
1526                                         } else { unimplemented!(); }
1527                                 },
1528                                 syn::Type::Path(p) => {
1529                                         if let Some(resolved) = self.maybe_resolve_path(&p.path, generics) {
1530                                                 if self.c_type_has_inner_from_path(&resolved) { return true; }
1531                                                 if self.is_primitive(&resolved) { return false; }
1532                                                 // We want to move to using `Option_` mappings where possible rather than
1533                                                 // manual mappings, as it makes downstream bindings simpler and is more
1534                                                 // clear for users. Thus, we default to false but override for a few
1535                                                 // types which had mappings defined when we were avoiding the `Option_`s.
1536                                                 match &resolved as &str {
1537                                                         "secp256k1::PublicKey"|"bitcoin::secp256k1::PublicKey" => true,
1538                                                         _ => false,
1539                                                 }
1540                                         } else { unimplemented!(); }
1541                                 },
1542                                 syn::Type::Tuple(_) => false,
1543                                 _ => unimplemented!(),
1544                         }
1545                 } else { false }
1546         }
1547         /// Returns true if the path is a "transparent" container, ie an Option or a container which does
1548         /// not require a generated continer class.
1549         pub fn is_path_transparent_container(&self, full_path: &syn::Path, generics: Option<&GenericTypes>, is_ref: bool) -> bool {
1550                 let inner_iter = match &full_path.segments.last().unwrap().arguments {
1551                         syn::PathArguments::None => return false,
1552                         syn::PathArguments::AngleBracketed(args) => args.args.iter().map(|arg| {
1553                                 if let syn::GenericArgument::Type(ref ty) = arg {
1554                                         ty
1555                                 } else { unimplemented!() }
1556                         }),
1557                         syn::PathArguments::Parenthesized(_) => unimplemented!(),
1558                 };
1559                 self.is_transparent_container(&self.resolve_path(full_path, generics), is_ref, inner_iter, generics)
1560         }
1561         /// Returns true if this is a known, supported, non-transparent container.
1562         fn is_known_container(&self, full_path: &str, is_ref: bool) -> bool {
1563                 (full_path == "Result" && !is_ref) || (full_path == "Vec" && !is_ref) || full_path.ends_with("Tuple") || full_path == "Option"
1564         }
1565         fn to_c_conversion_container_new_var<'b>(&self, generics: Option<&GenericTypes>, full_path: &str, is_ref: bool, single_contained: Option<&syn::Type>, var_name: &syn::Ident, var_access: &str)
1566                         // Returns prefix + Vec<(prefix, var-name-to-inline-convert)> + suffix
1567                         // expecting one element in the vec per generic type, each of which is inline-converted
1568                         -> Option<(&'b str, Vec<(String, String)>, &'b str, ContainerPrefixLocation)> {
1569                 match full_path {
1570                         "Result" if !is_ref => {
1571                                 Some(("match ",
1572                                                 vec![(" { Ok(mut o) => crate::c_types::CResultTempl::ok(".to_string(), "o".to_string()),
1573                                                         (").into(), Err(mut e) => crate::c_types::CResultTempl::err(".to_string(), "e".to_string())],
1574                                                 ").into() }", ContainerPrefixLocation::PerConv))
1575                         },
1576                         "Vec" => {
1577                                 if is_ref {
1578                                         // We should only get here if the single contained has an inner
1579                                         assert!(self.c_type_has_inner(single_contained.unwrap()));
1580                                 }
1581                                 Some(("Vec::new(); for mut item in ", vec![(format!(".drain(..) {{ local_{}.push(", var_name), "item".to_string())], "); }", ContainerPrefixLocation::PerConv))
1582                         },
1583                         "Slice" => {
1584                                 if let Some(syn::Type::Reference(_)) = single_contained {
1585                                         Some(("Vec::new(); for item in ", vec![(format!(".iter() {{ local_{}.push(", var_name), "(*item)".to_string())], "); }", ContainerPrefixLocation::PerConv))
1586                                 } else {
1587                                         Some(("Vec::new(); for item in ", vec![(format!(".iter() {{ local_{}.push(", var_name), "item".to_string())], "); }", ContainerPrefixLocation::PerConv))
1588                                 }
1589                         },
1590                         "Option" => {
1591                                 let mut is_contained_ref = false;
1592                                 let contained_struct = if let Some(syn::Type::Path(p)) = single_contained {
1593                                         Some(self.resolve_path(&p.path, generics))
1594                                 } else if let Some(syn::Type::Reference(r)) = single_contained {
1595                                         is_contained_ref = true;
1596                                         if let syn::Type::Path(p) = &*r.elem {
1597                                                 Some(self.resolve_path(&p.path, generics))
1598                                         } else { None }
1599                                 } else { None };
1600                                 if let Some(inner_path) = contained_struct {
1601                                         let only_contained_has_inner = self.c_type_has_inner_from_path(&inner_path);
1602                                         if self.c_type_has_inner_from_path(&inner_path) {
1603                                                 let is_inner_ref = if let Some(syn::Type::Reference(_)) = single_contained { true } else { false };
1604                                                 if is_ref {
1605                                                         return Some(("if ", vec![
1606                                                                 (".is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner(".to_owned(),
1607                                                                         format!("({}{}.unwrap())", var_access, if is_inner_ref { "" } else { ".as_ref()" }))
1608                                                                 ], ") }", ContainerPrefixLocation::OutsideConv));
1609                                                 } else {
1610                                                         return Some(("if ", vec![
1611                                                                 (".is_none() { core::ptr::null_mut() } else { ".to_owned(), format!("({}.unwrap())", var_access))
1612                                                                 ], " }", ContainerPrefixLocation::OutsideConv));
1613                                                 }
1614                                         } else if !self.is_transparent_container("Option", is_ref, [single_contained.unwrap()].iter().map(|a| *a), generics) {
1615                                                 if self.is_primitive(&inner_path) || (!is_contained_ref && !is_ref) || only_contained_has_inner {
1616                                                         let inner_name = self.get_c_mangled_container_type(vec![single_contained.unwrap()], generics, "Option").unwrap();
1617                                                         return Some(("if ", vec![
1618                                                                 (format!(".is_none() {{ {}::None }} else {{ {}::Some(", inner_name, inner_name),
1619                                                                  format!("{}.unwrap()", var_access))
1620                                                                 ], ") }", ContainerPrefixLocation::PerConv));
1621                                                 } else {
1622                                                         let inner_name = self.get_c_mangled_container_type(vec![single_contained.unwrap()], generics, "Option").unwrap();
1623                                                         return Some(("if ", vec![
1624                                                                 (format!(".is_none() {{ {}::None }} else {{ {}::Some(/* WARNING: CLONING CONVERSION HERE! &Option<Enum> is otherwise un-expressable. */", inner_name, inner_name),
1625                                                                  format!("(*{}.as_ref().unwrap()).clone()", var_access))
1626                                                                 ], ") }", ContainerPrefixLocation::PerConv));
1627                                                 }
1628                                         } else {
1629                                                 // If c_type_from_path is some (ie there's a manual mapping for the inner
1630                                                 // type), lean on write_empty_rust_val, below.
1631                                         }
1632                                 }
1633                                 if let Some(t) = single_contained {
1634                                         if let syn::Type::Tuple(syn::TypeTuple { elems, .. }) = t {
1635                                                 let inner_name = self.get_c_mangled_container_type(vec![single_contained.unwrap()], generics, "Option").unwrap();
1636                                                 if elems.is_empty() {
1637                                                         return Some(("if ", vec![
1638                                                                 (format!(".is_none() {{ {}::None }} else {{ {}::Some /* ",
1639                                                                         inner_name, inner_name), format!(""))
1640                                                                 ], " */ }", ContainerPrefixLocation::PerConv));
1641                                                 } else {
1642                                                         return Some(("if ", vec![
1643                                                                 (format!(".is_none() {{ {}::None }} else {{ {}::Some(",
1644                                                                         inner_name, inner_name), format!("({}.unwrap())", var_access))
1645                                                                 ], ") }", ContainerPrefixLocation::PerConv));
1646                                                 }
1647                                         }
1648                                         if let syn::Type::Reference(syn::TypeReference { elem, .. }) = t {
1649                                                 if let syn::Type::Slice(_) = &**elem {
1650                                                         return Some(("if ", vec![
1651                                                                         (".is_none() { SmartPtr::null() } else { SmartPtr::from_obj(".to_string(),
1652                                                                          format!("({}.unwrap())", var_access))
1653                                                                 ], ") }", ContainerPrefixLocation::PerConv));
1654                                                 }
1655                                         }
1656                                         let mut v = Vec::new();
1657                                         self.write_empty_rust_val(generics, &mut v, t);
1658                                         let s = String::from_utf8(v).unwrap();
1659                                         return Some(("if ", vec![
1660                                                 (format!(".is_none() {{ {} }} else {{ ", s), format!("({}.unwrap())", var_access))
1661                                                 ], " }", ContainerPrefixLocation::PerConv));
1662                                 } else { unreachable!(); }
1663                         },
1664                         _ => None,
1665                 }
1666         }
1667
1668         /// only_contained_has_inner implies that there is only one contained element in the container
1669         /// and it has an inner field (ie is an "opaque" type we've defined).
1670         fn from_c_conversion_container_new_var<'b>(&self, generics: Option<&GenericTypes>, full_path: &str, is_ref: bool, single_contained: Option<&syn::Type>, var_name: &syn::Ident, var_access: &str)
1671                         // Returns prefix + Vec<(prefix, var-name-to-inline-convert)> + suffix
1672                         // expecting one element in the vec per generic type, each of which is inline-converted
1673                         -> Option<(&'b str, Vec<(String, String)>, &'b str, ContainerPrefixLocation)> {
1674                 let mut only_contained_has_inner = false;
1675                 let only_contained_resolved = if let Some(syn::Type::Path(p)) = single_contained {
1676                         let res = self.resolve_path(&p.path, generics);
1677                         only_contained_has_inner = self.c_type_has_inner_from_path(&res);
1678                         Some(res)
1679                 } else { None };
1680                 match full_path {
1681                         "Result" if !is_ref => {
1682                                 Some(("match ",
1683                                                 vec![(".result_ok { true => Ok(".to_string(), format!("(*unsafe {{ Box::from_raw(<*mut _>::take_ptr(&mut {}.contents.result)) }})", var_access)),
1684                                                      ("), false => Err(".to_string(), format!("(*unsafe {{ Box::from_raw(<*mut _>::take_ptr(&mut {}.contents.err)) }})", var_access))],
1685                                                 ")}", ContainerPrefixLocation::PerConv))
1686                         },
1687                         "Slice" if is_ref && only_contained_has_inner => {
1688                                 Some(("Vec::new(); for mut item in ", vec![(format!(".as_slice().iter() {{ local_{}.push(", var_name), "item".to_string())], "); }", ContainerPrefixLocation::PerConv))
1689                         },
1690                         "Vec"|"Slice" => {
1691                                 Some(("Vec::new(); for mut item in ", vec![(format!(".into_rust().drain(..) {{ local_{}.push(", var_name), "item".to_string())], "); }", ContainerPrefixLocation::PerConv))
1692                         },
1693                         "Option" => {
1694                                 if let Some(resolved) = only_contained_resolved {
1695                                         if self.is_primitive(&resolved) {
1696                                                 return Some(("if ", vec![(".is_some() { Some(".to_string(), format!("{}.take()", var_access))], ") } else { None }", ContainerPrefixLocation::NoPrefix))
1697                                         } else if only_contained_has_inner {
1698                                                 if is_ref {
1699                                                         return Some(("if ", vec![(".inner.is_null() { None } else { Some((*".to_string(), format!("{}", var_access))], ").clone()) }", ContainerPrefixLocation::PerConv))
1700                                                 } else {
1701                                                         return Some(("if ", vec![(".inner.is_null() { None } else { Some(".to_string(), format!("{}", var_access))], ") }", ContainerPrefixLocation::PerConv));
1702                                                 }
1703                                         }
1704                                 }
1705
1706                                 if let Some(t) = single_contained {
1707                                         match t {
1708                                                 syn::Type::Reference(_)|syn::Type::Path(_)|syn::Type::Slice(_)|syn::Type::Array(_) => {
1709                                                         let mut v = Vec::new();
1710                                                         let ret_ref = self.write_empty_rust_val_check_suffix(generics, &mut v, t);
1711                                                         let s = String::from_utf8(v).unwrap();
1712                                                         match ret_ref {
1713                                                                 EmptyValExpectedTy::ReferenceAsPointer =>
1714                                                                         return Some(("if ", vec![
1715                                                                                 (format!("{} {{ None }} else {{ Some(", s), format!("unsafe {{ &mut *{} }}", var_access))
1716                                                                         ], ") }", ContainerPrefixLocation::NoPrefix)),
1717                                                                 EmptyValExpectedTy::OptionType =>
1718                                                                         return Some(("{ /*", vec![
1719                                                                                 (format!("*/ let {}_opt = {}; if {}_opt{} {{ None }} else {{ Some({{", var_name, var_access, var_name, s),
1720                                                                                 format!("{{ {}_opt.take() }}", var_name))
1721                                                                         ], "})} }", ContainerPrefixLocation::PerConv)),
1722                                                                 EmptyValExpectedTy::NonPointer =>
1723                                                                         return Some(("if ", vec![
1724                                                                                 (format!("{} {{ None }} else {{ Some(", s), format!("{}", var_access))
1725                                                                         ], ") }", ContainerPrefixLocation::PerConv)),
1726                                                         }
1727                                                 },
1728                                                 syn::Type::Tuple(_) => {
1729                                                         return Some(("if ", vec![(".is_some() { Some(".to_string(), format!("{}.take()", var_access))], ") } else { None }", ContainerPrefixLocation::PerConv))
1730                                                 },
1731                                                 _ => unimplemented!(),
1732                                         }
1733                                 } else { unreachable!(); }
1734                         },
1735                         _ => None,
1736                 }
1737         }
1738
1739         /// Constructs a reference to the given type, possibly tweaking the type if relevant to make it
1740         /// convertable to C.
1741         pub fn create_ownable_reference(&self, t: &syn::Type, generics: Option<&GenericTypes>) -> Option<syn::Type> {
1742                 let default_value = Some(syn::Type::Reference(syn::TypeReference {
1743                         and_token: syn::Token!(&)(Span::call_site()), lifetime: None, mutability: None,
1744                         elem: Box::new(t.clone()) }));
1745                 match generics.resolve_type(t) {
1746                         syn::Type::Path(p) => {
1747                                 if let Some(resolved_path) = self.maybe_resolve_path(&p.path, generics) {
1748                                         if resolved_path != "Vec" { return default_value; }
1749                                         if p.path.segments.len() != 1 { unimplemented!(); }
1750                                         let only_seg = p.path.segments.iter().next().unwrap();
1751                                         if let syn::PathArguments::AngleBracketed(args) = &only_seg.arguments {
1752                                                 if args.args.len() != 1 { unimplemented!(); }
1753                                                 let inner_arg = args.args.iter().next().unwrap();
1754                                                 if let syn::GenericArgument::Type(ty) = &inner_arg {
1755                                                         let mut can_create = self.c_type_has_inner(&ty);
1756                                                         if let syn::Type::Path(inner) = ty {
1757                                                                 if inner.path.segments.len() == 1 &&
1758                                                                                 format!("{}", inner.path.segments[0].ident) == "Vec" {
1759                                                                         can_create = true;
1760                                                                 }
1761                                                         }
1762                                                         if !can_create { return default_value; }
1763                                                         if let Some(inner_ty) = self.create_ownable_reference(&ty, generics) {
1764                                                                 return Some(syn::Type::Reference(syn::TypeReference {
1765                                                                         and_token: syn::Token![&](Span::call_site()),
1766                                                                         lifetime: None,
1767                                                                         mutability: None,
1768                                                                         elem: Box::new(syn::Type::Slice(syn::TypeSlice {
1769                                                                                 bracket_token: syn::token::Bracket { span: Span::call_site() },
1770                                                                                 elem: Box::new(inner_ty)
1771                                                                         }))
1772                                                                 }));
1773                                                         } else { return default_value; }
1774                                                 } else { unimplemented!(); }
1775                                         } else { unimplemented!(); }
1776                                 } else { return None; }
1777                         },
1778                         _ => default_value,
1779                 }
1780         }
1781
1782         // *************************************************
1783         // *** Type definition during main.rs processing ***
1784         // *************************************************
1785
1786         /// Returns true if the object at the given path is mapped as X { inner: *mut origX, .. }.
1787         pub fn c_type_has_inner_from_path(&self, full_path: &str) -> bool {
1788                 self.crate_types.opaques.get(full_path).is_some()
1789         }
1790
1791         /// Returns true if the object at the given path is mapped as X { inner: *mut origX, .. }.
1792         pub fn c_type_has_inner(&self, ty: &syn::Type) -> bool {
1793                 match ty {
1794                         syn::Type::Path(p) => {
1795                                 if let Some(full_path) = self.maybe_resolve_path(&p.path, None) {
1796                                         self.c_type_has_inner_from_path(&full_path)
1797                                 } else { false }
1798                         },
1799                         syn::Type::Reference(r) => {
1800                                 self.c_type_has_inner(&*r.elem)
1801                         },
1802                         _ => false,
1803                 }
1804         }
1805
1806         pub fn maybe_resolve_ident(&self, id: &syn::Ident) -> Option<String> {
1807                 self.types.maybe_resolve_ident(id)
1808         }
1809
1810         pub fn maybe_resolve_path(&self, p_arg: &syn::Path, generics: Option<&GenericTypes>) -> Option<String> {
1811                 self.types.maybe_resolve_path(p_arg, generics)
1812         }
1813         pub fn resolve_path(&self, p: &syn::Path, generics: Option<&GenericTypes>) -> String {
1814                 self.maybe_resolve_path(p, generics).unwrap()
1815         }
1816
1817         // ***********************************
1818         // *** Original Rust Type Printing ***
1819         // ***********************************
1820
1821         fn in_rust_prelude(resolved_path: &str) -> bool {
1822                 match resolved_path {
1823                         "Vec" => true,
1824                         "Result" => true,
1825                         "Option" => true,
1826                         _ => false,
1827                 }
1828         }
1829
1830         fn write_rust_path<W: std::io::Write>(&self, w: &mut W, generics_resolver: Option<&GenericTypes>, path: &syn::Path, with_ref_lifetime: bool, generated_crate_ref: bool) {
1831                 if let Some(resolved) = self.maybe_resolve_path(&path, generics_resolver) {
1832                         if self.is_primitive(&resolved) {
1833                                 write!(w, "{}", path.get_ident().unwrap()).unwrap();
1834                         } else {
1835                                 // TODO: We should have a generic "is from a dependency" check here instead of
1836                                 // checking for "bitcoin" explicitly.
1837                                 if resolved.starts_with("bitcoin::") || Self::in_rust_prelude(&resolved) {
1838                                         write!(w, "{}", resolved).unwrap();
1839                                 } else if !generated_crate_ref {
1840                                         // If we're printing a generic argument, it needs to reference the crate, otherwise
1841                                         // the original crate.
1842                                         write!(w, "{}", self.real_rust_type_mapping(&resolved)).unwrap();
1843                                 } else {
1844                                         write!(w, "crate::{}", resolved).unwrap();
1845                                 }
1846                         }
1847                         if let syn::PathArguments::AngleBracketed(args) = &path.segments.iter().last().unwrap().arguments {
1848                                 self.write_rust_generic_arg(w, generics_resolver, args.args.iter(), with_ref_lifetime);
1849                         }
1850                 } else {
1851                         if path.leading_colon.is_some() {
1852                                 write!(w, "::").unwrap();
1853                         }
1854                         for (idx, seg) in path.segments.iter().enumerate() {
1855                                 if idx != 0 { write!(w, "::").unwrap(); }
1856                                 write!(w, "{}", seg.ident).unwrap();
1857                                 if let syn::PathArguments::AngleBracketed(args) = &seg.arguments {
1858                                         self.write_rust_generic_arg(w, generics_resolver, args.args.iter(), with_ref_lifetime);
1859                                 }
1860                         }
1861                 }
1862         }
1863         pub fn write_rust_generic_param<'b, W: std::io::Write>(&self, w: &mut W, generics_resolver: Option<&GenericTypes>, generics: impl Iterator<Item=&'b syn::GenericParam>) {
1864                 let mut had_params = false;
1865                 for (idx, arg) in generics.enumerate() {
1866                         if idx != 0 { write!(w, ", ").unwrap(); } else { write!(w, "<").unwrap(); }
1867                         had_params = true;
1868                         match arg {
1869                                 syn::GenericParam::Lifetime(lt) => write!(w, "'{}", lt.lifetime.ident).unwrap(),
1870                                 syn::GenericParam::Type(t) => {
1871                                         write!(w, "{}", t.ident).unwrap();
1872                                         if t.colon_token.is_some() { write!(w, ":").unwrap(); }
1873                                         for (idx, bound) in t.bounds.iter().enumerate() {
1874                                                 if idx != 0 { write!(w, " + ").unwrap(); }
1875                                                 match bound {
1876                                                         syn::TypeParamBound::Trait(tb) => {
1877                                                                 if tb.paren_token.is_some() || tb.lifetimes.is_some() { unimplemented!(); }
1878                                                                 self.write_rust_path(w, generics_resolver, &tb.path, false, false);
1879                                                         },
1880                                                         _ => unimplemented!(),
1881                                                 }
1882                                         }
1883                                         if t.eq_token.is_some() || t.default.is_some() { unimplemented!(); }
1884                                 },
1885                                 _ => unimplemented!(),
1886                         }
1887                 }
1888                 if had_params { write!(w, ">").unwrap(); }
1889         }
1890
1891         pub fn write_rust_generic_arg<'b, W: std::io::Write>(&self, w: &mut W, generics_resolver: Option<&GenericTypes>, generics: impl Iterator<Item=&'b syn::GenericArgument>, with_ref_lifetime: bool) {
1892                 write!(w, "<").unwrap();
1893                 for (idx, arg) in generics.enumerate() {
1894                         if idx != 0 { write!(w, ", ").unwrap(); }
1895                         match arg {
1896                                 syn::GenericArgument::Type(t) => self.write_rust_type(w, generics_resolver, t, with_ref_lifetime),
1897                                 _ => unimplemented!(),
1898                         }
1899                 }
1900                 write!(w, ">").unwrap();
1901         }
1902         fn do_write_rust_type<W: std::io::Write>(&self, w: &mut W, generics: Option<&GenericTypes>, t: &syn::Type, with_ref_lifetime: bool, force_crate_ref: bool) {
1903                 let real_ty = generics.resolve_type(t);
1904                 let mut generate_crate_ref = force_crate_ref || t != real_ty;
1905                 match real_ty {
1906                         syn::Type::Path(p) => {
1907                                 if p.qself.is_some() {
1908                                         unimplemented!();
1909                                 }
1910                                 if let Some(resolved_ty) = self.maybe_resolve_path(&p.path, generics) {
1911                                         generate_crate_ref |= self.maybe_resolve_path(&p.path, None).as_ref() != Some(&resolved_ty);
1912                                         if self.crate_types.traits.get(&resolved_ty).is_none() { generate_crate_ref = false; }
1913                                 }
1914                                 self.write_rust_path(w, generics, &p.path, with_ref_lifetime, generate_crate_ref);
1915                         },
1916                         syn::Type::Reference(r) => {
1917                                 write!(w, "&").unwrap();
1918                                 if let Some(lft) = &r.lifetime {
1919                                         write!(w, "'{} ", lft.ident).unwrap();
1920                                 } else if with_ref_lifetime {
1921                                         write!(w, "'static ").unwrap();
1922                                 }
1923                                 if r.mutability.is_some() {
1924                                         write!(w, "mut ").unwrap();
1925                                 }
1926                                 self.do_write_rust_type(w, generics, &*r.elem, with_ref_lifetime, generate_crate_ref);
1927                         },
1928                         syn::Type::Array(a) => {
1929                                 write!(w, "[").unwrap();
1930                                 self.do_write_rust_type(w, generics, &a.elem, with_ref_lifetime, generate_crate_ref);
1931                                 if let syn::Expr::Lit(l) = &a.len {
1932                                         if let syn::Lit::Int(i) = &l.lit {
1933                                                 write!(w, "; {}]", i).unwrap();
1934                                         } else { unimplemented!(); }
1935                                 } else { unimplemented!(); }
1936                         }
1937                         syn::Type::Slice(s) => {
1938                                 write!(w, "[").unwrap();
1939                                 self.do_write_rust_type(w, generics, &s.elem, with_ref_lifetime, generate_crate_ref);
1940                                 write!(w, "]").unwrap();
1941                         },
1942                         syn::Type::Tuple(s) => {
1943                                 write!(w, "(").unwrap();
1944                                 for (idx, t) in s.elems.iter().enumerate() {
1945                                         if idx != 0 { write!(w, ", ").unwrap(); }
1946                                         self.do_write_rust_type(w, generics, &t, with_ref_lifetime, generate_crate_ref);
1947                                 }
1948                                 write!(w, ")").unwrap();
1949                         },
1950                         _ => unimplemented!(),
1951                 }
1952         }
1953         pub fn write_rust_type<W: std::io::Write>(&self, w: &mut W, generics: Option<&GenericTypes>, t: &syn::Type, with_ref_lifetime: bool) {
1954                 self.do_write_rust_type(w, generics, t, with_ref_lifetime, false);
1955         }
1956
1957
1958         /// Prints a constructor for something which is "uninitialized" (but obviously not actually
1959         /// unint'd memory).
1960         pub fn write_empty_rust_val<W: std::io::Write>(&self, generics: Option<&GenericTypes>, w: &mut W, t: &syn::Type) {
1961                 match t {
1962                         syn::Type::Reference(r) => {
1963                                 self.write_empty_rust_val(generics, w, &*r.elem)
1964                         },
1965                         syn::Type::Path(p) => {
1966                                 let resolved = self.resolve_path(&p.path, generics);
1967                                 if self.crate_types.opaques.get(&resolved).is_some() {
1968                                         write!(w, "crate::{} {{ inner: core::ptr::null_mut(), is_owned: true }}", resolved).unwrap();
1969                                 } else {
1970                                         // Assume its a manually-mapped C type, where we can just define an null() fn
1971                                         write!(w, "{}::null()", self.c_type_from_path(&resolved, false, false).unwrap()).unwrap();
1972                                 }
1973                         },
1974                         syn::Type::Array(a) => {
1975                                 if let syn::Expr::Lit(l) = &a.len {
1976                                         if let syn::Lit::Int(i) = &l.lit {
1977                                                 if i.base10_digits().parse::<usize>().unwrap() < 32 {
1978                                                         // Blindly assume that if we're trying to create an empty value for an
1979                                                         // array < 32 entries that all-0s may be a valid state.
1980                                                         unimplemented!();
1981                                                 }
1982                                                 let arrty = format!("[u8; {}]", i.base10_digits());
1983                                                 write!(w, "{}", self.to_c_conversion_inline_prefix_from_path(&arrty, false, false).unwrap()).unwrap();
1984                                                 write!(w, "[0; {}]", i.base10_digits()).unwrap();
1985                                                 write!(w, "{}", self.to_c_conversion_inline_suffix_from_path(&arrty, false, false).unwrap()).unwrap();
1986                                         } else { unimplemented!(); }
1987                                 } else { unimplemented!(); }
1988                         }
1989                         _ => unimplemented!(),
1990                 }
1991         }
1992
1993         /// Prints a suffix to determine if a variable is empty (ie was set by write_empty_rust_val).
1994         /// See EmptyValExpectedTy for information on return types.
1995         fn write_empty_rust_val_check_suffix<W: std::io::Write>(&self, generics: Option<&GenericTypes>, w: &mut W, t: &syn::Type) -> EmptyValExpectedTy {
1996                 match t {
1997                         syn::Type::Reference(r) => {
1998                                 return self.write_empty_rust_val_check_suffix(generics, w, &*r.elem);
1999                         },
2000                         syn::Type::Path(p) => {
2001                                 let resolved = self.resolve_path(&p.path, generics);
2002                                 if self.crate_types.opaques.get(&resolved).is_some() {
2003                                         write!(w, ".inner.is_null()").unwrap();
2004                                         EmptyValExpectedTy::NonPointer
2005                                 } else {
2006                                         if let Some(suffix) = self.empty_val_check_suffix_from_path(&resolved) {
2007                                                 write!(w, "{}", suffix).unwrap();
2008                                                 // We may eventually need to allow empty_val_check_suffix_from_path to specify if we need a deref or not
2009                                                 EmptyValExpectedTy::NonPointer
2010                                         } else {
2011                                                 write!(w, ".is_none()").unwrap();
2012                                                 EmptyValExpectedTy::OptionType
2013                                         }
2014                                 }
2015                         },
2016                         syn::Type::Array(a) => {
2017                                 if let syn::Expr::Lit(l) = &a.len {
2018                                         if let syn::Lit::Int(i) = &l.lit {
2019                                                 write!(w, ".data == [0; {}]", i.base10_digits()).unwrap();
2020                                                 EmptyValExpectedTy::NonPointer
2021                                         } else { unimplemented!(); }
2022                                 } else { unimplemented!(); }
2023                         },
2024                         syn::Type::Slice(_) => {
2025                                 // Option<[]> always implies that we want to treat len() == 0 differently from
2026                                 // None, so we always map an Option<[]> into a pointer.
2027                                 write!(w, " == core::ptr::null_mut()").unwrap();
2028                                 EmptyValExpectedTy::ReferenceAsPointer
2029                         },
2030                         _ => unimplemented!(),
2031                 }
2032         }
2033
2034         /// Prints a suffix to determine if a variable is empty (ie was set by write_empty_rust_val).
2035         pub fn write_empty_rust_val_check<W: std::io::Write>(&self, generics: Option<&GenericTypes>, w: &mut W, t: &syn::Type, var_access: &str) {
2036                 match t {
2037                         syn::Type::Reference(r) => {
2038                                 self.write_empty_rust_val_check(generics, w, &*r.elem, var_access);
2039                         },
2040                         syn::Type::Path(_) => {
2041                                 write!(w, "{}", var_access).unwrap();
2042                                 self.write_empty_rust_val_check_suffix(generics, w, t);
2043                         },
2044                         syn::Type::Array(a) => {
2045                                 if let syn::Expr::Lit(l) = &a.len {
2046                                         if let syn::Lit::Int(i) = &l.lit {
2047                                                 let arrty = format!("[u8; {}]", i.base10_digits());
2048                                                 // We don't (yet) support a new-var conversion here.
2049                                                 assert!(self.from_c_conversion_new_var_from_path(&arrty, false).is_none());
2050                                                 write!(w, "{}{}{}",
2051                                                         self.from_c_conversion_prefix_from_path(&arrty, false).unwrap(),
2052                                                         var_access,
2053                                                         self.from_c_conversion_suffix_from_path(&arrty, false).unwrap()).unwrap();
2054                                                 self.write_empty_rust_val_check_suffix(generics, w, t);
2055                                         } else { unimplemented!(); }
2056                                 } else { unimplemented!(); }
2057                         }
2058                         _ => unimplemented!(),
2059                 }
2060         }
2061
2062         // ********************************
2063         // *** Type conversion printing ***
2064         // ********************************
2065
2066         /// Returns true we if can just skip passing this to C entirely
2067         pub fn skip_arg(&self, t: &syn::Type, generics: Option<&GenericTypes>) -> bool {
2068                 match t {
2069                         syn::Type::Path(p) => {
2070                                 if p.qself.is_some() { unimplemented!(); }
2071                                 if let Some(full_path) = self.maybe_resolve_path(&p.path, generics) {
2072                                         self.skip_path(&full_path)
2073                                 } else { false }
2074                         },
2075                         syn::Type::Reference(r) => {
2076                                 self.skip_arg(&*r.elem, generics)
2077                         },
2078                         _ => false,
2079                 }
2080         }
2081         pub fn no_arg_to_rust<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>) {
2082                 match t {
2083                         syn::Type::Path(p) => {
2084                                 if p.qself.is_some() { unimplemented!(); }
2085                                 if let Some(full_path) = self.maybe_resolve_path(&p.path, generics) {
2086                                         write!(w, "{}", self.no_arg_path_to_rust(&full_path)).unwrap();
2087                                 }
2088                         },
2089                         syn::Type::Reference(r) => {
2090                                 self.no_arg_to_rust(w, &*r.elem, generics);
2091                         },
2092                         _ => {},
2093                 }
2094         }
2095
2096         fn write_conversion_inline_intern<W: std::io::Write,
2097                         LP: Fn(&str, bool, bool) -> Option<String>, DL: Fn(&mut W, &DeclType, &str, bool, bool), SC: Fn(bool, Option<&str>) -> String>
2098                         (&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, is_ref: bool, is_mut: bool, ptr_for_ref: bool,
2099                          tupleconv: &str, prefix: bool, sliceconv: SC, path_lookup: LP, decl_lookup: DL) {
2100                 match generics.resolve_type(t) {
2101                         syn::Type::Reference(r) => {
2102                                 self.write_conversion_inline_intern(w, &*r.elem, generics, true, r.mutability.is_some(),
2103                                         ptr_for_ref, tupleconv, prefix, sliceconv, path_lookup, decl_lookup);
2104                         },
2105                         syn::Type::Path(p) => {
2106                                 if p.qself.is_some() {
2107                                         unimplemented!();
2108                                 }
2109
2110                                 let resolved_path = self.resolve_path(&p.path, generics);
2111                                 if let Some(aliased_type) = self.crate_types.type_aliases.get(&resolved_path) {
2112                                         return self.write_conversion_inline_intern(w, aliased_type, None, is_ref, is_mut, ptr_for_ref, tupleconv, prefix, sliceconv, path_lookup, decl_lookup);
2113                                 } else if self.is_primitive(&resolved_path) {
2114                                         if is_ref && prefix {
2115                                                 write!(w, "*").unwrap();
2116                                         }
2117                                 } else if let Some(c_type) = path_lookup(&resolved_path, is_ref, ptr_for_ref) {
2118                                         write!(w, "{}", c_type).unwrap();
2119                                 } else if let Some((_, generics)) = self.crate_types.opaques.get(&resolved_path) {
2120                                         decl_lookup(w, &DeclType::StructImported { generics: &generics }, &resolved_path, is_ref, is_mut);
2121                                 } else if self.crate_types.mirrored_enums.get(&resolved_path).is_some() {
2122                                         decl_lookup(w, &DeclType::MirroredEnum, &resolved_path, is_ref, is_mut);
2123                                 } else if let Some(t) = self.crate_types.traits.get(&resolved_path) {
2124                                         decl_lookup(w, &DeclType::Trait(t), &resolved_path, is_ref, is_mut);
2125                                 } else if let Some(ident) = single_ident_generic_path_to_ident(&p.path) {
2126                                         if let Some(decl_type) = self.types.maybe_resolve_declared(ident) {
2127                                                 decl_lookup(w, decl_type, &self.maybe_resolve_ident(ident).unwrap(), is_ref, is_mut);
2128                                         } else { unimplemented!(); }
2129                                 } else { unimplemented!(); }
2130                         },
2131                         syn::Type::Array(a) => {
2132                                 if let syn::Type::Path(p) = &*a.elem {
2133                                         let inner_ty = self.resolve_path(&p.path, generics);
2134                                         if let syn::Expr::Lit(l) = &a.len {
2135                                                 if let syn::Lit::Int(i) = &l.lit {
2136                                                         write!(w, "{}", path_lookup(&format!("[{}; {}]", inner_ty, i.base10_digits()), is_ref, ptr_for_ref).unwrap()).unwrap();
2137                                                 } else { unimplemented!(); }
2138                                         } else { unimplemented!(); }
2139                                 } else { unimplemented!(); }
2140                         },
2141                         syn::Type::Slice(s) => {
2142                                 // We assume all slices contain only literals or references.
2143                                 // This may result in some outputs not compiling.
2144                                 if let syn::Type::Path(p) = &*s.elem {
2145                                         let resolved = self.resolve_path(&p.path, generics);
2146                                         if self.is_primitive(&resolved) {
2147                                                 write!(w, "{}", path_lookup("[u8]", is_ref, ptr_for_ref).unwrap()).unwrap();
2148                                         } else {
2149                                                 write!(w, "{}", sliceconv(true, None)).unwrap();
2150                                         }
2151                                 } else if let syn::Type::Reference(r) = &*s.elem {
2152                                         if let syn::Type::Path(p) = &*r.elem {
2153                                                 write!(w, "{}", sliceconv(self.c_type_has_inner_from_path(&self.resolve_path(&p.path, generics)), None)).unwrap();
2154                                         } else if let syn::Type::Slice(_) = &*r.elem {
2155                                                 write!(w, "{}", sliceconv(false, None)).unwrap();
2156                                         } else { unimplemented!(); }
2157                                 } else if let syn::Type::Tuple(t) = &*s.elem {
2158                                         assert!(!t.elems.is_empty());
2159                                         if prefix {
2160                                                 write!(w, "{}", sliceconv(false, None)).unwrap();
2161                                         } else {
2162                                                 let mut needs_map = false;
2163                                                 for e in t.elems.iter() {
2164                                                         if let syn::Type::Reference(_) = e {
2165                                                                 needs_map = true;
2166                                                         }
2167                                                 }
2168                                                 if needs_map {
2169                                                         let mut map_str = Vec::new();
2170                                                         write!(&mut map_str, ".map(|(").unwrap();
2171                                                         for i in 0..t.elems.len() {
2172                                                                 write!(&mut map_str, "{}{}", if i != 0 { ", " } else { "" }, ('a' as u8 + i as u8) as char).unwrap();
2173                                                         }
2174                                                         write!(&mut map_str, ")| (").unwrap();
2175                                                         for (idx, e) in t.elems.iter().enumerate() {
2176                                                                 if let syn::Type::Reference(_) = e {
2177                                                                         write!(&mut map_str, "{}{}", if idx != 0 { ", " } else { "" }, (idx as u8 + 'a' as u8) as char).unwrap();
2178                                                                 } else if let syn::Type::Path(_) = e {
2179                                                                         write!(&mut map_str, "{}*{}", if idx != 0 { ", " } else { "" }, (idx as u8 + 'a' as u8) as char).unwrap();
2180                                                                 } else { unimplemented!(); }
2181                                                         }
2182                                                         write!(&mut map_str, "))").unwrap();
2183                                                         write!(w, "{}", sliceconv(false, Some(&String::from_utf8(map_str).unwrap()))).unwrap();
2184                                                 } else {
2185                                                         write!(w, "{}", sliceconv(false, None)).unwrap();
2186                                                 }
2187                                         }
2188                                 } else if let syn::Type::Array(_) = &*s.elem {
2189                                         write!(w, "{}", sliceconv(false, Some(".map(|a| *a)"))).unwrap();
2190                                 } else { unimplemented!(); }
2191                         },
2192                         syn::Type::Tuple(t) => {
2193                                 if t.elems.is_empty() {
2194                                         // cbindgen has poor support for (), see, eg https://github.com/eqrion/cbindgen/issues/527
2195                                         // so work around it by just pretending its a 0u8
2196                                         write!(w, "{}", tupleconv).unwrap();
2197                                 } else {
2198                                         if prefix { write!(w, "local_").unwrap(); }
2199                                 }
2200                         },
2201                         _ => unimplemented!(),
2202                 }
2203         }
2204
2205         fn write_to_c_conversion_inline_prefix_inner<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, is_ref: bool, ptr_for_ref: bool, from_ptr: bool) {
2206                 self.write_conversion_inline_intern(w, t, generics, is_ref, false, ptr_for_ref, "() /*", true, |_, _| "local_".to_owned(),
2207                                 |a, b, c| self.to_c_conversion_inline_prefix_from_path(a, b, c),
2208                                 |w, decl_type, decl_path, is_ref, _is_mut| {
2209                                         match decl_type {
2210                                                 DeclType::MirroredEnum if is_ref && ptr_for_ref => write!(w, "crate::{}::from_native(", decl_path).unwrap(),
2211                                                 DeclType::MirroredEnum if is_ref => write!(w, "&crate::{}::from_native(", decl_path).unwrap(),
2212                                                 DeclType::MirroredEnum => write!(w, "crate::{}::native_into(", decl_path).unwrap(),
2213                                                 DeclType::EnumIgnored {..}|DeclType::StructImported {..} if is_ref && from_ptr => {
2214                                                         if !ptr_for_ref { write!(w, "&").unwrap(); }
2215                                                         write!(w, "crate::{} {{ inner: unsafe {{ (", decl_path).unwrap()
2216                                                 },
2217                                                 DeclType::EnumIgnored {..}|DeclType::StructImported {..} if is_ref => {
2218                                                         if !ptr_for_ref { write!(w, "&").unwrap(); }
2219                                                         write!(w, "crate::{} {{ inner: unsafe {{ ObjOps::nonnull_ptr_to_inner((", decl_path).unwrap()
2220                                                 },
2221                                                 DeclType::EnumIgnored {..}|DeclType::StructImported {..} if !is_ref && from_ptr =>
2222                                                         write!(w, "crate::{} {{ inner: ", decl_path).unwrap(),
2223                                                 DeclType::EnumIgnored {..}|DeclType::StructImported {..} if !is_ref =>
2224                                                         write!(w, "crate::{} {{ inner: ObjOps::heap_alloc(", decl_path).unwrap(),
2225                                                 DeclType::Trait(_) if is_ref => write!(w, "").unwrap(),
2226                                                 DeclType::Trait(_) if !is_ref => write!(w, "Into::into(").unwrap(),
2227                                                 _ => panic!("{:?}", decl_path),
2228                                         }
2229                                 });
2230         }
2231         pub fn write_to_c_conversion_inline_prefix<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, ptr_for_ref: bool) {
2232                 self.write_to_c_conversion_inline_prefix_inner(w, t, generics, false, ptr_for_ref, false);
2233         }
2234         fn write_to_c_conversion_inline_suffix_inner<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, is_ref: bool, ptr_for_ref: bool, from_ptr: bool) {
2235                 self.write_conversion_inline_intern(w, t, generics, is_ref, false, ptr_for_ref, "*/", false, |_, _| ".into()".to_owned(),
2236                                 |a, b, c| self.to_c_conversion_inline_suffix_from_path(a, b, c),
2237                                 |w, decl_type, full_path, is_ref, _is_mut| match decl_type {
2238                                         DeclType::MirroredEnum => write!(w, ")").unwrap(),
2239                                         DeclType::EnumIgnored { generics }|DeclType::StructImported { generics } if is_ref => {
2240                                                 write!(w, " as *const {}<", full_path).unwrap();
2241                                                 for param in generics.params.iter() {
2242                                                         if let syn::GenericParam::Lifetime(_) = param {
2243                                                                 write!(w, "'_, ").unwrap();
2244                                                         } else {
2245                                                                 write!(w, "_, ").unwrap();
2246                                                         }
2247                                                 }
2248                                                 if from_ptr {
2249                                                         write!(w, ">) as *mut _ }}, is_owned: false }}").unwrap();
2250                                                 } else {
2251                                                         write!(w, ">) as *mut _) }}, is_owned: false }}").unwrap();
2252                                                 }
2253                                         },
2254                                         DeclType::EnumIgnored {..}|DeclType::StructImported {..} if !is_ref && from_ptr =>
2255                                                 write!(w, ", is_owned: true }}").unwrap(),
2256                                         DeclType::EnumIgnored {..}|DeclType::StructImported {..} if !is_ref => write!(w, "), is_owned: true }}").unwrap(),
2257                                         DeclType::Trait(_) if is_ref => {},
2258                                         DeclType::Trait(_) => {
2259                                                 // This is used when we're converting a concrete Rust type into a C trait
2260                                                 // for use when a Rust trait method returns an associated type.
2261                                                 // Because all of our C traits implement From<RustTypesImplementingTraits>
2262                                                 // we can just call .into() here and be done.
2263                                                 write!(w, ")").unwrap()
2264                                         },
2265                                         _ => unimplemented!(),
2266                                 });
2267         }
2268         pub fn write_to_c_conversion_inline_suffix<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, ptr_for_ref: bool) {
2269                 self.write_to_c_conversion_inline_suffix_inner(w, t, generics, false, ptr_for_ref, false);
2270         }
2271
2272         fn write_from_c_conversion_prefix_inner<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, is_ref: bool, _ptr_for_ref: bool) {
2273                 self.write_conversion_inline_intern(w, t, generics, is_ref, false, false, "() /*", true, |_, _| "&local_".to_owned(),
2274                                 |a, b, _c| self.from_c_conversion_prefix_from_path(a, b),
2275                                 |w, decl_type, _full_path, is_ref, _is_mut| match decl_type {
2276                                         DeclType::StructImported {..} if is_ref => write!(w, "").unwrap(),
2277                                         DeclType::StructImported {..} if !is_ref => write!(w, "*unsafe {{ Box::from_raw(").unwrap(),
2278                                         DeclType::MirroredEnum if is_ref => write!(w, "&").unwrap(),
2279                                         DeclType::MirroredEnum => {},
2280                                         DeclType::Trait(_) => {},
2281                                         _ => unimplemented!(),
2282                                 });
2283         }
2284         pub fn write_from_c_conversion_prefix<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>) {
2285                 self.write_from_c_conversion_prefix_inner(w, t, generics, false, false);
2286         }
2287         fn write_from_c_conversion_suffix_inner<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, is_ref: bool, ptr_for_ref: bool) {
2288                 self.write_conversion_inline_intern(w, t, generics, is_ref, false, false, "*/", false,
2289                                 |has_inner, map_str_opt| match (has_inner, map_str_opt) {
2290                                         (false, Some(map_str)) => format!(".iter(){}.collect::<Vec<_>>()[..]", map_str),
2291                                         (false, None) => ".iter().collect::<Vec<_>>()[..]".to_owned(),
2292                                         (true, None) => "[..]".to_owned(),
2293                                         (true, Some(_)) => unreachable!(),
2294                                 },
2295                                 |a, b, _c| self.from_c_conversion_suffix_from_path(a, b),
2296                                 |w, decl_type, _full_path, is_ref, is_mut| match decl_type {
2297                                         DeclType::StructImported {..} if is_ref && ptr_for_ref => write!(w, "XXX unimplemented").unwrap(),
2298                                         DeclType::StructImported {..} if is_mut && is_ref => write!(w, ".get_native_mut_ref()").unwrap(),
2299                                         DeclType::StructImported {..} if is_ref => write!(w, ".get_native_ref()").unwrap(),
2300                                         DeclType::StructImported {..} if !is_ref => write!(w, ".take_inner()) }}").unwrap(),
2301                                         DeclType::MirroredEnum if is_ref => write!(w, ".to_native()").unwrap(),
2302                                         DeclType::MirroredEnum => write!(w, ".into_native()").unwrap(),
2303                                         DeclType::Trait(_) => {},
2304                                         _ => unimplemented!(),
2305                                 });
2306         }
2307         pub fn write_from_c_conversion_suffix<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>) {
2308                 self.write_from_c_conversion_suffix_inner(w, t, generics, false, false);
2309         }
2310         // Note that compared to the above conversion functions, the following two are generally
2311         // significantly undertested:
2312         pub fn write_from_c_conversion_to_ref_prefix<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>) {
2313                 self.write_conversion_inline_intern(w, t, generics, false, false, false, "() /*", true, |_, _| "&local_".to_owned(),
2314                                 |a, b, _c| {
2315                                         if let Some(conv) = self.from_c_conversion_prefix_from_path(a, b) {
2316                                                 Some(format!("&{}", conv))
2317                                         } else { None }
2318                                 },
2319                                 |w, decl_type, _full_path, is_ref, _is_mut| match decl_type {
2320                                         DeclType::StructImported {..} if !is_ref => write!(w, "").unwrap(),
2321                                         _ => unimplemented!(),
2322                                 });
2323         }
2324         pub fn write_from_c_conversion_to_ref_suffix<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>) {
2325                 self.write_conversion_inline_intern(w, t, generics, false, false, false, "*/", false,
2326                                 |has_inner, map_str_opt| match (has_inner, map_str_opt) {
2327                                         (false, Some(map_str)) => format!(".iter(){}.collect::<Vec<_>>()[..]", map_str),
2328                                         (false, None) => ".iter().collect::<Vec<_>>()[..]".to_owned(),
2329                                         (true, None) => "[..]".to_owned(),
2330                                         (true, Some(_)) => unreachable!(),
2331                                 },
2332                                 |a, b, _c| self.from_c_conversion_suffix_from_path(a, b),
2333                                 |w, decl_type, _full_path, is_ref, _is_mut| match decl_type {
2334                                         DeclType::StructImported {..} if !is_ref => write!(w, ".get_native_ref()").unwrap(),
2335                                         _ => unimplemented!(),
2336                                 });
2337         }
2338
2339         fn write_conversion_new_var_intern<'b, W: std::io::Write,
2340                 LP: Fn(&str, bool) -> Option<(&str, &str)>,
2341                 LC: Fn(&str, bool, Option<&syn::Type>, &syn::Ident, &str) ->  Option<(&'b str, Vec<(String, String)>, &'b str, ContainerPrefixLocation)>,
2342                 VP: Fn(&mut W, &syn::Type, Option<&GenericTypes>, bool, bool, bool),
2343                 VS: Fn(&mut W, &syn::Type, Option<&GenericTypes>, bool, bool, bool)>
2344                         (&self, w: &mut W, ident: &syn::Ident, var: &str, t: &syn::Type, generics: Option<&GenericTypes>,
2345                          mut is_ref: bool, mut ptr_for_ref: bool, to_c: bool, from_ownable_ref: bool,
2346                          path_lookup: &LP, container_lookup: &LC, var_prefix: &VP, var_suffix: &VS) -> bool {
2347
2348                 macro_rules! convert_container {
2349                         ($container_type: expr, $args_len: expr, $args_iter: expr) => { {
2350                                 // For slices (and Options), we refuse to directly map them as is_ref when they
2351                                 // aren't opaque types containing an inner pointer. This is due to the fact that,
2352                                 // in both cases, the actual higher-level type is non-is_ref.
2353                                 let (ty_has_inner, ty_is_trait) = if $args_len == 1 {
2354                                         let ty = $args_iter().next().unwrap();
2355                                         if $container_type == "Slice" && to_c {
2356                                                 // "To C ptr_for_ref" means "return the regular object with is_owned
2357                                                 // set to false", which is totally what we want in a slice if we're about to
2358                                                 // set ty_has_inner.
2359                                                 ptr_for_ref = true;
2360                                         }
2361                                         if let syn::Type::Reference(t) = ty {
2362                                                 if let syn::Type::Path(p) = &*t.elem {
2363                                                         let resolved = self.resolve_path(&p.path, generics);
2364                                                         (self.c_type_has_inner_from_path(&resolved), self.crate_types.traits.get(&resolved).is_some())
2365                                                 } else { (false, false) }
2366                                         } else if let syn::Type::Path(p) = ty {
2367                                                 let resolved = self.resolve_path(&p.path, generics);
2368                                                 (self.c_type_has_inner_from_path(&resolved), self.crate_types.traits.get(&resolved).is_some())
2369                                         } else { (false, false) }
2370                                 } else { (true, false) };
2371
2372                                 // Options get a bunch of special handling, since in general we map Option<>al
2373                                 // types into the same C type as non-Option-wrapped types. This ends up being
2374                                 // pretty manual here and most of the below special-cases are for Options.
2375                                 let mut needs_ref_map = false;
2376                                 let mut only_contained_type = None;
2377                                 let mut only_contained_type_nonref = None;
2378                                 let mut only_contained_has_inner = false;
2379                                 let mut contains_slice = false;
2380                                 if $args_len == 1 {
2381                                         only_contained_has_inner = ty_has_inner;
2382                                         let arg = $args_iter().next().unwrap();
2383                                         if let syn::Type::Reference(t) = arg {
2384                                                 only_contained_type = Some(arg);
2385                                                 only_contained_type_nonref = Some(&*t.elem);
2386                                                 if let syn::Type::Path(_) = &*t.elem {
2387                                                         is_ref = true;
2388                                                 } else if let syn::Type::Slice(_) = &*t.elem {
2389                                                         contains_slice = true;
2390                                                 } else { return false; }
2391                                                 // If the inner element contains an inner pointer, we will just use that,
2392                                                 // avoiding the need to map elements to references. Otherwise we'll need to
2393                                                 // do an extra mapping step.
2394                                                 needs_ref_map = !only_contained_has_inner && !ty_is_trait && $container_type == "Option";
2395                                         } else {
2396                                                 only_contained_type = Some(arg);
2397                                                 only_contained_type_nonref = Some(arg);
2398                                         }
2399                                 }
2400
2401                                 if let Some((prefix, conversions, suffix, prefix_location)) = container_lookup(&$container_type, is_ref, only_contained_type, ident, var) {
2402                                         assert_eq!(conversions.len(), $args_len);
2403                                         write!(w, "let mut local_{}{} = ", ident,
2404                                                 if (!to_c && needs_ref_map) || (to_c && $container_type == "Option" && contains_slice) {"_base"} else { "" }).unwrap();
2405                                         if prefix_location == ContainerPrefixLocation::OutsideConv {
2406                                                 var_prefix(w, $args_iter().next().unwrap(), generics, is_ref, true, true);
2407                                         }
2408                                         write!(w, "{}{}", prefix, var).unwrap();
2409
2410                                         for ((pfx, var_name), (idx, ty)) in conversions.iter().zip($args_iter().enumerate()) {
2411                                                 let mut var = std::io::Cursor::new(Vec::new());
2412                                                 write!(&mut var, "{}", var_name).unwrap();
2413                                                 let var_access = String::from_utf8(var.into_inner()).unwrap();
2414
2415                                                 let conv_ty = if needs_ref_map { only_contained_type_nonref.as_ref().unwrap() } else { ty };
2416
2417                                                 write!(w, "{} {{ ", pfx).unwrap();
2418                                                 let new_var_name = format!("{}_{}", ident, idx);
2419                                                 let new_var = self.write_conversion_new_var_intern(w, &format_ident!("{}", new_var_name),
2420                                                                 &var_access, conv_ty, generics, contains_slice || (is_ref && ty_has_inner), ptr_for_ref,
2421                                                                 to_c, from_ownable_ref, path_lookup, container_lookup, var_prefix, var_suffix);
2422                                                 if new_var { write!(w, " ").unwrap(); }
2423
2424                                                 if prefix_location == ContainerPrefixLocation::PerConv {
2425                                                         var_prefix(w, conv_ty, generics, is_ref && ty_has_inner, ptr_for_ref, false);
2426                                                 } else if !is_ref && !needs_ref_map && to_c && only_contained_has_inner {
2427                                                         write!(w, "ObjOps::heap_alloc(").unwrap();
2428                                                 }
2429
2430                                                 write!(w, "{}{}", if contains_slice && !to_c { "local_" } else { "" }, if new_var { new_var_name } else { var_access }).unwrap();
2431                                                 if prefix_location == ContainerPrefixLocation::PerConv {
2432                                                         var_suffix(w, conv_ty, generics, is_ref && ty_has_inner, ptr_for_ref, false);
2433                                                 } else if !is_ref && !needs_ref_map && to_c && only_contained_has_inner {
2434                                                         write!(w, ")").unwrap();
2435                                                 }
2436                                                 write!(w, " }}").unwrap();
2437                                         }
2438                                         write!(w, "{}", suffix).unwrap();
2439                                         if prefix_location == ContainerPrefixLocation::OutsideConv {
2440                                                 var_suffix(w, $args_iter().next().unwrap(), generics, is_ref, ptr_for_ref, true);
2441                                         }
2442                                         write!(w, ";").unwrap();
2443                                         if !to_c && needs_ref_map {
2444                                                 write!(w, " let mut local_{} = local_{}_base.as_ref()", ident, ident).unwrap();
2445                                                 if contains_slice {
2446                                                         write!(w, ".map(|a| &a[..])").unwrap();
2447                                                 }
2448                                                 write!(w, ";").unwrap();
2449                                         } else if to_c && $container_type == "Option" && contains_slice {
2450                                                 write!(w, " let mut local_{} = *local_{}_base;", ident, ident).unwrap();
2451                                         }
2452                                         return true;
2453                                 }
2454                         } }
2455                 }
2456
2457                 match generics.resolve_type(t) {
2458                         syn::Type::Reference(r) => {
2459                                 if let syn::Type::Slice(_) = &*r.elem {
2460                                         self.write_conversion_new_var_intern(w, ident, var, &*r.elem, generics, is_ref, ptr_for_ref, to_c, from_ownable_ref, path_lookup, container_lookup, var_prefix, var_suffix)
2461                                 } else {
2462                                         self.write_conversion_new_var_intern(w, ident, var, &*r.elem, generics, true, ptr_for_ref, to_c, from_ownable_ref, path_lookup, container_lookup, var_prefix, var_suffix)
2463                                 }
2464                         },
2465                         syn::Type::Path(p) => {
2466                                 if p.qself.is_some() {
2467                                         unimplemented!();
2468                                 }
2469                                 let resolved_path = self.resolve_path(&p.path, generics);
2470                                 if let Some(aliased_type) = self.crate_types.type_aliases.get(&resolved_path) {
2471                                         return self.write_conversion_new_var_intern(w, ident, var, aliased_type, None, is_ref, ptr_for_ref, to_c, from_ownable_ref, path_lookup, container_lookup, var_prefix, var_suffix);
2472                                 }
2473                                 if self.is_known_container(&resolved_path, is_ref) || self.is_path_transparent_container(&p.path, generics, is_ref) {
2474                                         if let syn::PathArguments::AngleBracketed(args) = &p.path.segments.iter().next().unwrap().arguments {
2475                                                 convert_container!(resolved_path, args.args.len(), || args.args.iter().map(|arg| {
2476                                                         if let syn::GenericArgument::Type(ty) = arg {
2477                                                                 generics.resolve_type(ty)
2478                                                         } else { unimplemented!(); }
2479                                                 }));
2480                                         } else { unimplemented!(); }
2481                                 }
2482                                 if self.is_primitive(&resolved_path) {
2483                                         false
2484                                 } else if let Some(ty_ident) = single_ident_generic_path_to_ident(&p.path) {
2485                                         if let Some((prefix, suffix)) = path_lookup(&resolved_path, is_ref) {
2486                                                 write!(w, "let mut local_{} = {}{}{};", ident, prefix, var, suffix).unwrap();
2487                                                 true
2488                                         } else if self.types.maybe_resolve_declared(ty_ident).is_some() {
2489                                                 false
2490                                         } else { false }
2491                                 } else { false }
2492                         },
2493                         syn::Type::Array(_) => {
2494                                 // We assume all arrays contain only primitive types.
2495                                 // This may result in some outputs not compiling.
2496                                 false
2497                         },
2498                         syn::Type::Slice(s) => {
2499                                 if let syn::Type::Path(p) = &*s.elem {
2500                                         let resolved = self.resolve_path(&p.path, generics);
2501                                         if self.is_primitive(&resolved) {
2502                                                 let slice_path = format!("[{}]", resolved);
2503                                                 if let Some((prefix, suffix)) = path_lookup(&slice_path, true) {
2504                                                         write!(w, "let mut local_{} = {}{}{};", ident, prefix, var, suffix).unwrap();
2505                                                         true
2506                                                 } else { false }
2507                                         } else {
2508                                                 let tyref = [&*s.elem];
2509                                                 if to_c {
2510                                                         // If we're converting from a slice to a Vec, assume we can clone the
2511                                                         // elements and clone them into a new Vec first. Next we'll walk the
2512                                                         // new Vec here and convert them to C types.
2513                                                         write!(w, "let mut local_{}_clone = Vec::new(); local_{}_clone.extend_from_slice({}); let mut {} = local_{}_clone; ", ident, ident, ident, ident, ident).unwrap();
2514                                                 }
2515                                                 is_ref = false;
2516                                                 convert_container!("Vec", 1, || tyref.iter().map(|t| generics.resolve_type(*t)));
2517                                                 unimplemented!("convert_container should return true as container_lookup should succeed for slices");
2518                                         }
2519                                 } else if let syn::Type::Reference(ty) = &*s.elem {
2520                                         let tyref = if from_ownable_ref || !to_c { [&*ty.elem] } else { [&*s.elem] };
2521                                         is_ref = true;
2522                                         convert_container!("Slice", 1, || tyref.iter().map(|t| generics.resolve_type(*t)));
2523                                         unimplemented!("convert_container should return true as container_lookup should succeed for slices");
2524                                 } else if let syn::Type::Tuple(t) = &*s.elem {
2525                                         // When mapping into a temporary new var, we need to own all the underlying objects.
2526                                         // Thus, we drop any references inside the tuple and convert with non-reference types.
2527                                         let mut elems = syn::punctuated::Punctuated::new();
2528                                         for elem in t.elems.iter() {
2529                                                 if let syn::Type::Reference(r) = elem {
2530                                                         elems.push((*r.elem).clone());
2531                                                 } else {
2532                                                         elems.push(elem.clone());
2533                                                 }
2534                                         }
2535                                         let ty = [syn::Type::Tuple(syn::TypeTuple {
2536                                                 paren_token: t.paren_token, elems
2537                                         })];
2538                                         is_ref = false;
2539                                         ptr_for_ref = true;
2540                                         convert_container!("Slice", 1, || ty.iter());
2541                                         unimplemented!("convert_container should return true as container_lookup should succeed for slices");
2542                                 } else if let syn::Type::Array(_) = &*s.elem {
2543                                         is_ref = false;
2544                                         ptr_for_ref = true;
2545                                         let arr_elem = [(*s.elem).clone()];
2546                                         convert_container!("Slice", 1, || arr_elem.iter());
2547                                         unimplemented!("convert_container should return true as container_lookup should succeed for slices");
2548                                 } else { unimplemented!() }
2549                         },
2550                         syn::Type::Tuple(t) => {
2551                                 if !t.elems.is_empty() {
2552                                         // We don't (yet) support tuple elements which cannot be converted inline
2553                                         write!(w, "let (").unwrap();
2554                                         for idx in 0..t.elems.len() {
2555                                                 if idx != 0 { write!(w, ", ").unwrap(); }
2556                                                 write!(w, "{} orig_{}_{}", if is_ref { "ref" } else { "mut" }, ident, idx).unwrap();
2557                                         }
2558                                         write!(w, ") = {}{}; ", var, if !to_c { ".to_rust()" } else { "" }).unwrap();
2559                                         // Like other template types, tuples are always mapped as their non-ref
2560                                         // versions for types which have different ref mappings. Thus, we convert to
2561                                         // non-ref versions and handle opaque types with inner pointers manually.
2562                                         for (idx, elem) in t.elems.iter().enumerate() {
2563                                                 if let syn::Type::Path(p) = elem {
2564                                                         let v_name = format!("orig_{}_{}", ident, idx);
2565                                                         let tuple_elem_ident = format_ident!("{}", &v_name);
2566                                                         if self.write_conversion_new_var_intern(w, &tuple_elem_ident, &v_name, elem, generics,
2567                                                                         false, ptr_for_ref, to_c, from_ownable_ref,
2568                                                                         path_lookup, container_lookup, var_prefix, var_suffix) {
2569                                                                 write!(w, " ").unwrap();
2570                                                                 // Opaque types with inner pointers shouldn't ever create new stack
2571                                                                 // variables, so we don't handle it and just assert that it doesn't
2572                                                                 // here.
2573                                                                 assert!(!self.c_type_has_inner_from_path(&self.resolve_path(&p.path, generics)));
2574                                                         }
2575                                                 }
2576                                         }
2577                                         write!(w, "let mut local_{} = (", ident).unwrap();
2578                                         for (idx, elem) in t.elems.iter().enumerate() {
2579                                                 let real_elem = generics.resolve_type(&elem);
2580                                                 let ty_has_inner = {
2581                                                                 if to_c {
2582                                                                         // "To C ptr_for_ref" means "return the regular object with
2583                                                                         // is_owned set to false", which is totally what we want
2584                                                                         // if we're about to set ty_has_inner.
2585                                                                         ptr_for_ref = true;
2586                                                                 }
2587                                                                 if let syn::Type::Reference(t) = real_elem {
2588                                                                         if let syn::Type::Path(p) = &*t.elem {
2589                                                                                 self.c_type_has_inner_from_path(&self.resolve_path(&p.path, generics))
2590                                                                         } else { false }
2591                                                                 } else if let syn::Type::Path(p) = real_elem {
2592                                                                         self.c_type_has_inner_from_path(&self.resolve_path(&p.path, generics))
2593                                                                 } else { false }
2594                                                         };
2595                                                 if idx != 0 { write!(w, ", ").unwrap(); }
2596                                                 var_prefix(w, real_elem, generics, is_ref && ty_has_inner, ptr_for_ref, false);
2597                                                 if is_ref && ty_has_inner {
2598                                                         // For ty_has_inner, the regular var_prefix mapping will take a
2599                                                         // reference, so deref once here to make sure we keep the original ref.
2600                                                         write!(w, "*").unwrap();
2601                                                 }
2602                                                 write!(w, "orig_{}_{}", ident, idx).unwrap();
2603                                                 if is_ref && !ty_has_inner {
2604                                                         // If we don't have an inner variable's reference to maintain, just
2605                                                         // hope the type is Clonable and use that.
2606                                                         write!(w, ".clone()").unwrap();
2607                                                 }
2608                                                 var_suffix(w, real_elem, generics, is_ref && ty_has_inner, ptr_for_ref, false);
2609                                         }
2610                                         write!(w, "){};", if to_c { ".into()" } else { "" }).unwrap();
2611                                         true
2612                                 } else { false }
2613                         },
2614                         _ => unimplemented!(),
2615                 }
2616         }
2617
2618         pub fn write_to_c_conversion_new_var_inner<W: std::io::Write>(&self, w: &mut W, ident: &syn::Ident, var_access: &str, t: &syn::Type, generics: Option<&GenericTypes>, ptr_for_ref: bool, from_ownable_ref: bool) -> bool {
2619                 self.write_conversion_new_var_intern(w, ident, var_access, t, generics, from_ownable_ref, ptr_for_ref, true, from_ownable_ref,
2620                         &|a, b| self.to_c_conversion_new_var_from_path(a, b),
2621                         &|a, b, c, d, e| self.to_c_conversion_container_new_var(generics, a, b, c, d, e),
2622                         // We force ptr_for_ref here since we can't generate a ref on one line and use it later
2623                         &|a, b, c, d, e, f| self.write_to_c_conversion_inline_prefix_inner(a, b, c, d, e, f),
2624                         &|a, b, c, d, e, f| self.write_to_c_conversion_inline_suffix_inner(a, b, c, d, e, f))
2625         }
2626         pub fn write_to_c_conversion_new_var<W: std::io::Write>(&self, w: &mut W, ident: &syn::Ident, t: &syn::Type, generics: Option<&GenericTypes>, ptr_for_ref: bool) -> bool {
2627                 self.write_to_c_conversion_new_var_inner(w, ident, &format!("{}", ident), t, generics, ptr_for_ref, false)
2628         }
2629         /// Prints new-var conversion for an "ownable_ref" type, ie prints conversion for
2630         /// `create_ownable_reference(t)`, not `t` itself.
2631         pub fn write_to_c_conversion_from_ownable_ref_new_var<W: std::io::Write>(&self, w: &mut W, ident: &syn::Ident, t: &syn::Type, generics: Option<&GenericTypes>) -> bool {
2632                 self.write_to_c_conversion_new_var_inner(w, ident, &format!("{}", ident), t, generics, true, true)
2633         }
2634         pub fn write_from_c_conversion_new_var<W: std::io::Write>(&self, w: &mut W, ident: &syn::Ident, t: &syn::Type, generics: Option<&GenericTypes>) -> bool {
2635                 self.write_conversion_new_var_intern(w, ident, &format!("{}", ident), t, generics, false, false, false, false,
2636                         &|a, b| self.from_c_conversion_new_var_from_path(a, b),
2637                         &|a, b, c, d, e| self.from_c_conversion_container_new_var(generics, a, b, c, d, e),
2638                         // We force ptr_for_ref here since we can't generate a ref on one line and use it later
2639                         &|a, b, c, d, e, _f| self.write_from_c_conversion_prefix_inner(a, b, c, d, e),
2640                         &|a, b, c, d, e, _f| self.write_from_c_conversion_suffix_inner(a, b, c, d, e))
2641         }
2642
2643         // ******************************************************
2644         // *** C Container Type Equivalent and alias Printing ***
2645         // ******************************************************
2646
2647         fn write_template_generics<'b, W: std::io::Write>(&self, w: &mut W, args: &mut dyn Iterator<Item=&'b syn::Type>, generics: Option<&GenericTypes>, is_ref: bool) -> bool {
2648                 for (idx, orig_t) in args.enumerate() {
2649                         if idx != 0 {
2650                                 write!(w, ", ").unwrap();
2651                         }
2652                         let t = generics.resolve_type(orig_t);
2653                         if let syn::Type::Reference(r_arg) = t {
2654                                 assert!(!is_ref); // We don't currently support outer reference types for non-primitive inners
2655
2656                                 if !self.write_c_type_intern(w, &*r_arg.elem, generics, false, false, false, true, true) { return false; }
2657
2658                                 // While write_c_type_intern, above is correct, we don't want to blindly convert a
2659                                 // reference to something stupid, so check that the container is either opaque or a
2660                                 // predefined type (currently only Transaction).
2661                                 if let syn::Type::Path(p_arg) = &*r_arg.elem {
2662                                         let resolved = self.resolve_path(&p_arg.path, generics);
2663                                         assert!(self.crate_types.opaques.get(&resolved).is_some() ||
2664                                                         self.crate_types.traits.get(&resolved).is_some() ||
2665                                                         self.c_type_from_path(&resolved, true, true).is_some(), "Template generics should be opaque or have a predefined mapping");
2666                                 } else { unimplemented!(); }
2667                         } else if let syn::Type::Path(p_arg) = t {
2668                                 if let Some(resolved) = self.maybe_resolve_path(&p_arg.path, generics) {
2669                                         if !self.is_primitive(&resolved) {
2670                                                 if is_ref {
2671                                                         // We don't currently support outer reference types for non-primitive inners
2672                                                         return false;
2673                                                 }
2674                                         }
2675                                 } else {
2676                                         if is_ref {
2677                                                 // We don't currently support outer reference types for non-primitive inners
2678                                                 return false;
2679                                         }
2680                                 }
2681                                 if !self.write_c_type_intern(w, t, generics, false, false, false, true, true) { return false; }
2682                         } else {
2683                                 // We don't currently support outer reference types for non-primitive inners,
2684                                 // except for the empty tuple.
2685                                 if let syn::Type::Tuple(t_arg) = t {
2686                                         assert!(t_arg.elems.len() == 0 || !is_ref);
2687                                 } else {
2688                                         assert!(!is_ref);
2689                                 }
2690                                 if !self.write_c_type_intern(w, t, generics, false, false, false, true, true) { return false; }
2691                         }
2692                 }
2693                 true
2694         }
2695         fn check_create_container(&self, mangled_container: String, container_type: &str, args: Vec<&syn::Type>, generics: Option<&GenericTypes>, is_ref: bool) -> bool {
2696                 if !self.crate_types.templates_defined.borrow().get(&mangled_container).is_some() {
2697                         let mut created_container: Vec<u8> = Vec::new();
2698
2699                         if container_type == "Result" {
2700                                 let mut a_ty: Vec<u8> = Vec::new();
2701                                 if let syn::Type::Tuple(tup) = args.iter().next().unwrap() {
2702                                         if tup.elems.is_empty() {
2703                                                 write!(&mut a_ty, "()").unwrap();
2704                                         } else {
2705                                                 if !self.write_template_generics(&mut a_ty, &mut args.iter().map(|t| *t).take(1), generics, is_ref) { return false; }
2706                                         }
2707                                 } else {
2708                                         if !self.write_template_generics(&mut a_ty, &mut args.iter().map(|t| *t).take(1), generics, is_ref) { return false; }
2709                                 }
2710
2711                                 let mut b_ty: Vec<u8> = Vec::new();
2712                                 if let syn::Type::Tuple(tup) = args.iter().skip(1).next().unwrap() {
2713                                         if tup.elems.is_empty() {
2714                                                 write!(&mut b_ty, "()").unwrap();
2715                                         } else {
2716                                                 if !self.write_template_generics(&mut b_ty, &mut args.iter().map(|t| *t).skip(1), generics, is_ref) { return false; }
2717                                         }
2718                                 } else {
2719                                         if !self.write_template_generics(&mut b_ty, &mut args.iter().map(|t| *t).skip(1), generics, is_ref) { return false; }
2720                                 }
2721
2722                                 let ok_str = String::from_utf8(a_ty).unwrap();
2723                                 let err_str = String::from_utf8(b_ty).unwrap();
2724                                 let is_clonable = self.is_clonable(&ok_str) && self.is_clonable(&err_str);
2725                                 write_result_block(&mut created_container, &mangled_container, &ok_str, &err_str, is_clonable);
2726                                 if is_clonable {
2727                                         self.crate_types.set_clonable(Self::generated_container_path().to_owned() + "::" + &mangled_container);
2728                                 }
2729                         } else if container_type == "Vec" {
2730                                 let mut a_ty: Vec<u8> = Vec::new();
2731                                 if !self.write_template_generics(&mut a_ty, &mut args.iter().map(|t| *t), generics, is_ref) { return false; }
2732                                 let ty = String::from_utf8(a_ty).unwrap();
2733                                 let is_clonable = self.is_clonable(&ty);
2734                                 write_vec_block(&mut created_container, &mangled_container, &ty, is_clonable);
2735                                 if is_clonable {
2736                                         self.crate_types.set_clonable(Self::generated_container_path().to_owned() + "::" + &mangled_container);
2737                                 }
2738                         } else if container_type.ends_with("Tuple") {
2739                                 let mut tuple_args = Vec::new();
2740                                 let mut is_clonable = true;
2741                                 for arg in args.iter() {
2742                                         let mut ty: Vec<u8> = Vec::new();
2743                                         if !self.write_template_generics(&mut ty, &mut [arg].iter().map(|t| **t), generics, is_ref) { return false; }
2744                                         let ty_str = String::from_utf8(ty).unwrap();
2745                                         if !self.is_clonable(&ty_str) {
2746                                                 is_clonable = false;
2747                                         }
2748                                         tuple_args.push(ty_str);
2749                                 }
2750                                 write_tuple_block(&mut created_container, &mangled_container, &tuple_args, is_clonable);
2751                                 if is_clonable {
2752                                         self.crate_types.set_clonable(Self::generated_container_path().to_owned() + "::" + &mangled_container);
2753                                 }
2754                         } else if container_type == "Option" {
2755                                 let mut a_ty: Vec<u8> = Vec::new();
2756                                 if !self.write_template_generics(&mut a_ty, &mut args.iter().map(|t| *t), generics, is_ref) { return false; }
2757                                 let ty = String::from_utf8(a_ty).unwrap();
2758                                 let is_clonable = self.is_clonable(&ty);
2759                                 write_option_block(&mut created_container, &mangled_container, &ty, is_clonable);
2760                                 if is_clonable {
2761                                         self.crate_types.set_clonable(Self::generated_container_path().to_owned() + "::" + &mangled_container);
2762                                 }
2763                         } else {
2764                                 unreachable!();
2765                         }
2766                         self.crate_types.write_new_template(mangled_container.clone(), true, &created_container);
2767                 }
2768                 true
2769         }
2770         fn path_to_generic_args(path: &syn::Path) -> Vec<&syn::Type> {
2771                 if let syn::PathArguments::AngleBracketed(args) = &path.segments.iter().next().unwrap().arguments {
2772                         args.args.iter().map(|gen| if let syn::GenericArgument::Type(t) = gen { t } else { unimplemented!() }).collect()
2773                 } else { unimplemented!(); }
2774         }
2775         fn write_c_mangled_container_path_intern<W: std::io::Write>
2776                         (&self, w: &mut W, args: Vec<&syn::Type>, generics: Option<&GenericTypes>, ident: &str, is_ref: bool, is_mut: bool, ptr_for_ref: bool, in_type: bool) -> bool {
2777                 let mut mangled_type: Vec<u8> = Vec::new();
2778                 if !self.is_transparent_container(ident, is_ref, args.iter().map(|a| *a), generics) {
2779                         write!(w, "C{}_", ident).unwrap();
2780                         write!(mangled_type, "C{}_", ident).unwrap();
2781                 } else { assert_eq!(args.len(), 1); }
2782                 for arg in args.iter() {
2783                         macro_rules! write_path {
2784                                 ($p_arg: expr, $extra_write: expr) => {
2785                                         if let Some(subtype) = self.maybe_resolve_path(&$p_arg.path, generics) {
2786                                                 if self.is_transparent_container(ident, is_ref, args.iter().map(|a| *a), generics) {
2787                                                         if !in_type {
2788                                                                 if self.c_type_has_inner_from_path(&subtype) {
2789                                                                         if !self.write_c_path_intern(w, &$p_arg.path, generics, is_ref, is_mut, ptr_for_ref, false, true) { return false; }
2790                                                                 } else {
2791                                                                         // Option<T> needs to be converted to a *mut T, ie mut ptr-for-ref
2792                                                                         if !self.write_c_path_intern(w, &$p_arg.path, generics, true, true, true, false, true) { return false; }
2793                                                                 }
2794                                                         } else {
2795                                                                 write!(w, "{}", $p_arg.path.segments.last().unwrap().ident).unwrap();
2796                                                         }
2797                                                 } else if self.is_known_container(&subtype, is_ref) || self.is_path_transparent_container(&$p_arg.path, generics, is_ref) {
2798                                                         if !self.write_c_mangled_container_path_intern(w, Self::path_to_generic_args(&$p_arg.path), generics,
2799                                                                         &subtype, is_ref, is_mut, ptr_for_ref, true) {
2800                                                                 return false;
2801                                                         }
2802                                                         self.write_c_mangled_container_path_intern(&mut mangled_type, Self::path_to_generic_args(&$p_arg.path),
2803                                                                 generics, &subtype, is_ref, is_mut, ptr_for_ref, true);
2804                                                         if let Some(w2) = $extra_write as Option<&mut Vec<u8>> {
2805                                                                 self.write_c_mangled_container_path_intern(w2, Self::path_to_generic_args(&$p_arg.path),
2806                                                                         generics, &subtype, is_ref, is_mut, ptr_for_ref, true);
2807                                                         }
2808                                                 } else {
2809                                                         let id = subtype.rsplitn(2, ':').next().unwrap(); // Get the "Base" name of the resolved type
2810                                                         write!(w, "{}", id).unwrap();
2811                                                         write!(mangled_type, "{}", id).unwrap();
2812                                                         if let Some(w2) = $extra_write as Option<&mut Vec<u8>> {
2813                                                                 write!(w2, "{}", id).unwrap();
2814                                                         }
2815                                                 }
2816                                         } else { return false; }
2817                                 }
2818                         }
2819                         match generics.resolve_type(arg) {
2820                                 syn::Type::Tuple(tuple) => {
2821                                         if tuple.elems.len() == 0 {
2822                                                 write!(w, "None").unwrap();
2823                                                 write!(mangled_type, "None").unwrap();
2824                                         } else {
2825                                                 let mut mangled_tuple_type: Vec<u8> = Vec::new();
2826
2827                                                 // Figure out what the mangled type should look like. To disambiguate
2828                                                 // ((A, B), C) and (A, B, C) we prefix the generic args with a _ and suffix
2829                                                 // them with a Z. Ideally we wouldn't use Z, but not many special chars are
2830                                                 // available for use in type names.
2831                                                 write!(w, "C{}Tuple_", tuple.elems.len()).unwrap();
2832                                                 write!(mangled_type, "C{}Tuple_", tuple.elems.len()).unwrap();
2833                                                 write!(mangled_tuple_type, "C{}Tuple_", tuple.elems.len()).unwrap();
2834                                                 for elem in tuple.elems.iter() {
2835                                                         if let syn::Type::Path(p) = elem {
2836                                                                 write_path!(p, Some(&mut mangled_tuple_type));
2837                                                         } else if let syn::Type::Reference(refelem) = elem {
2838                                                                 if let syn::Type::Path(p) = &*refelem.elem {
2839                                                                         write_path!(p, Some(&mut mangled_tuple_type));
2840                                                                 } else { return false; }
2841                                                         } else if let syn::Type::Array(_) = elem {
2842                                                                 let mut resolved = Vec::new();
2843                                                                 if !self.write_c_type_intern(&mut resolved, &elem, generics, false, false, true, false, true) { return false; }
2844                                                                 let array_inner = String::from_utf8(resolved).unwrap();
2845                                                                 let arr_name = array_inner.split("::").last().unwrap();
2846                                                                 write!(w, "{}", arr_name).unwrap();
2847                                                                 write!(mangled_type, "{}", arr_name).unwrap();
2848                                                         } else { return false; }
2849                                                 }
2850                                                 write!(w, "Z").unwrap();
2851                                                 write!(mangled_type, "Z").unwrap();
2852                                                 write!(mangled_tuple_type, "Z").unwrap();
2853                                                 if !self.check_create_container(String::from_utf8(mangled_tuple_type).unwrap(),
2854                                                                 &format!("{}Tuple", tuple.elems.len()), tuple.elems.iter().collect(), generics, is_ref) {
2855                                                         return false;
2856                                                 }
2857                                         }
2858                                 },
2859                                 syn::Type::Path(p_arg) => {
2860                                         write_path!(p_arg, None);
2861                                 },
2862                                 syn::Type::Reference(refty) => {
2863                                         if let syn::Type::Path(p_arg) = &*refty.elem {
2864                                                 write_path!(p_arg, None);
2865                                         } else if let syn::Type::Slice(_) = &*refty.elem {
2866                                                 // write_c_type will actually do exactly what we want here, we just need to
2867                                                 // make it a pointer so that its an option. Note that we cannot always convert
2868                                                 // the Vec-as-slice (ie non-ref types) containers, so sometimes need to be able
2869                                                 // to edit it, hence we use *mut here instead of *const.
2870                                                 if args.len() != 1 { return false; }
2871                                                 write!(w, "*mut ").unwrap();
2872                                                 self.write_c_type(w, arg, None, true);
2873                                         } else { return false; }
2874                                 },
2875                                 syn::Type::Array(a) => {
2876                                         if let syn::Type::Path(p_arg) = &*a.elem {
2877                                                 let resolved = self.resolve_path(&p_arg.path, generics);
2878                                                 if !self.is_primitive(&resolved) { return false; }
2879                                                 if let syn::Expr::Lit(syn::ExprLit { lit: syn::Lit::Int(len), .. }) = &a.len {
2880                                                         if self.c_type_from_path(&format!("[{}; {}]", resolved, len.base10_digits()), is_ref, ptr_for_ref).is_none() { return false; }
2881                                                         if in_type || args.len() != 1 {
2882                                                                 write!(w, "_{}{}", resolved, len.base10_digits()).unwrap();
2883                                                                 write!(mangled_type, "_{}{}", resolved, len.base10_digits()).unwrap();
2884                                                         } else {
2885                                                                 let arrty = format!("[{}; {}]", resolved, len.base10_digits());
2886                                                                 let realty = self.c_type_from_path(&arrty, is_ref, ptr_for_ref).unwrap_or(&arrty);
2887                                                                 write!(w, "{}", realty).unwrap();
2888                                                                 write!(mangled_type, "{}", realty).unwrap();
2889                                                         }
2890                                                 } else { return false; }
2891                                         } else { return false; }
2892                                 },
2893                                 _ => { return false; },
2894                         }
2895                 }
2896                 if self.is_transparent_container(ident, is_ref, args.iter().map(|a| *a), generics) { return true; }
2897                 // Push the "end of type" Z
2898                 write!(w, "Z").unwrap();
2899                 write!(mangled_type, "Z").unwrap();
2900
2901                 // Make sure the type is actually defined:
2902                 self.check_create_container(String::from_utf8(mangled_type).unwrap(), ident, args, generics, is_ref)
2903         }
2904         fn write_c_mangled_container_path<W: std::io::Write>(&self, w: &mut W, args: Vec<&syn::Type>, generics: Option<&GenericTypes>, ident: &str, is_ref: bool, is_mut: bool, ptr_for_ref: bool) -> bool {
2905                 if !self.is_transparent_container(ident, is_ref, args.iter().map(|a| *a), generics) {
2906                         write!(w, "{}::", Self::generated_container_path()).unwrap();
2907                 }
2908                 self.write_c_mangled_container_path_intern(w, args, generics, ident, is_ref, is_mut, ptr_for_ref, false)
2909         }
2910         pub fn get_c_mangled_container_type(&self, args: Vec<&syn::Type>, generics: Option<&GenericTypes>, template_name: &str) -> Option<String> {
2911                 let mut out = Vec::new();
2912                 if !self.write_c_mangled_container_path(&mut out, args, generics, template_name, false, false, false) {
2913                         return None;
2914                 }
2915                 Some(String::from_utf8(out).unwrap())
2916         }
2917
2918         // **********************************
2919         // *** C Type Equivalent Printing ***
2920         // **********************************
2921
2922         fn write_c_path_intern<W: std::io::Write>(&self, w: &mut W, path: &syn::Path, generics: Option<&GenericTypes>, is_ref: bool, is_mut: bool, ptr_for_ref: bool, with_ref_lifetime: bool, c_ty: bool) -> bool {
2923                 let full_path = match self.maybe_resolve_path(&path, generics) {
2924                         Some(path) => path, None => return false };
2925                 if let Some(c_type) = self.c_type_from_path(&full_path, is_ref, ptr_for_ref) {
2926                         write!(w, "{}", c_type).unwrap();
2927                         true
2928                 } else if self.crate_types.traits.get(&full_path).is_some() {
2929                         // Note that we always use the crate:: prefix here as we are always referring to a
2930                         // concrete object which is of the generated type, it just implements the upstream
2931                         // type.
2932                         if is_ref && ptr_for_ref {
2933                                 write!(w, "*{} crate::{}", if is_mut { "mut" } else { "const" }, full_path).unwrap();
2934                         } else if is_ref {
2935                                 if with_ref_lifetime { unimplemented!(); }
2936                                 write!(w, "&{}crate::{}", if is_mut { "mut " } else { "" }, full_path).unwrap();
2937                         } else {
2938                                 write!(w, "crate::{}", full_path).unwrap();
2939                         }
2940                         true
2941                 } else if self.crate_types.opaques.get(&full_path).is_some() || self.crate_types.mirrored_enums.get(&full_path).is_some() {
2942                         let crate_pfx = if c_ty { "crate::" } else { "" };
2943                         if is_ref && ptr_for_ref {
2944                                 // ptr_for_ref implies we're returning the object, which we can't really do for
2945                                 // opaque or mirrored types without box'ing them, which is quite a waste, so return
2946                                 // the actual object itself (for opaque types we'll set the pointer to the actual
2947                                 // type and note that its a reference).
2948                                 write!(w, "{}{}", crate_pfx, full_path).unwrap();
2949                         } else if is_ref && with_ref_lifetime {
2950                                 assert!(!is_mut);
2951                                 // If we're concretizing something with a lifetime parameter, we have to pick a
2952                                 // lifetime, of which the only real available choice is `static`, obviously.
2953                                 write!(w, "&'static {}", crate_pfx).unwrap();
2954                                 if !c_ty {
2955                                         self.write_rust_path(w, generics, path, with_ref_lifetime, false);
2956                                 } else {
2957                                         // We shouldn't be mapping references in types, so panic here
2958                                         unimplemented!();
2959                                 }
2960                         } else if is_ref {
2961                                 write!(w, "&{}{}{}", if is_mut { "mut " } else { "" }, crate_pfx, full_path).unwrap();
2962                         } else {
2963                                 write!(w, "{}{}", crate_pfx, full_path).unwrap();
2964                         }
2965                         true
2966                 } else {
2967                         false
2968                 }
2969         }
2970         fn write_c_type_intern<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, is_ref: bool, is_mut: bool, ptr_for_ref: bool, with_ref_lifetime: bool, c_ty: bool) -> bool {
2971                 match generics.resolve_type(t) {
2972                         syn::Type::Path(p) => {
2973                                 if p.qself.is_some() {
2974                                         return false;
2975                                 }
2976                                 if let Some(full_path) = self.maybe_resolve_path(&p.path, generics) {
2977                                         if self.is_known_container(&full_path, is_ref) || self.is_path_transparent_container(&p.path, generics, is_ref) {
2978                                                 return self.write_c_mangled_container_path(w, Self::path_to_generic_args(&p.path), generics, &full_path, is_ref, is_mut, ptr_for_ref);
2979                                         }
2980                                         if let Some(aliased_type) = self.crate_types.type_aliases.get(&full_path).cloned() {
2981                                                 return self.write_c_type_intern(w, &aliased_type, None, is_ref, is_mut, ptr_for_ref, with_ref_lifetime, c_ty);
2982                                         }
2983                                 }
2984                                 self.write_c_path_intern(w, &p.path, generics, is_ref, is_mut, ptr_for_ref, with_ref_lifetime, c_ty)
2985                         },
2986                         syn::Type::Reference(r) => {
2987                                 self.write_c_type_intern(w, &*r.elem, generics, true, r.mutability.is_some(), ptr_for_ref, with_ref_lifetime, c_ty)
2988                         },
2989                         syn::Type::Array(a) => {
2990                                 if is_ref && is_mut {
2991                                         write!(w, "*mut [").unwrap();
2992                                         if !self.write_c_type_intern(w, &a.elem, generics, false, false, ptr_for_ref, with_ref_lifetime, c_ty) { return false; }
2993                                 } else if is_ref {
2994                                         write!(w, "*const [").unwrap();
2995                                         if !self.write_c_type_intern(w, &a.elem, generics, false, false, ptr_for_ref, with_ref_lifetime, c_ty) { return false; }
2996                                 }
2997                                 if let syn::Expr::Lit(l) = &a.len {
2998                                         if let syn::Lit::Int(i) = &l.lit {
2999                                                 let mut inner_ty = Vec::new();
3000                                                 if !self.write_c_type_intern(&mut inner_ty, &*a.elem, generics, false, false, ptr_for_ref, false, c_ty) { return false; }
3001                                                 let inner_ty_str = String::from_utf8(inner_ty).unwrap();
3002                                                 if !is_ref {
3003                                                         if let Some(ty) = self.c_type_from_path(&format!("[{}; {}]", inner_ty_str, i.base10_digits()), false, ptr_for_ref) {
3004                                                                 write!(w, "{}", ty).unwrap();
3005                                                                 true
3006                                                         } else { false }
3007                                                 } else {
3008                                                         write!(w, "; {}]", i).unwrap();
3009                                                         true
3010                                                 }
3011                                         } else { false }
3012                                 } else { false }
3013                         }
3014                         syn::Type::Slice(s) => {
3015                                 if !is_ref || is_mut { return false; }
3016                                 if let syn::Type::Path(p) = &*s.elem {
3017                                         let resolved = self.resolve_path(&p.path, generics);
3018                                         if self.is_primitive(&resolved) {
3019                                                 write!(w, "{}::{}slice", Self::container_templ_path(), resolved).unwrap();
3020                                                 true
3021                                         } else {
3022                                                 let mut inner_c_ty = Vec::new();
3023                                                 assert!(self.write_c_path_intern(&mut inner_c_ty, &p.path, generics, true, false, ptr_for_ref, with_ref_lifetime, c_ty));
3024                                                 let inner_ty_str = String::from_utf8(inner_c_ty).unwrap();
3025                                                 if self.is_clonable(&inner_ty_str) {
3026                                                         let inner_ty_ident = inner_ty_str.rsplitn(2, "::").next().unwrap();
3027                                                         let mangled_container = format!("CVec_{}Z", inner_ty_ident);
3028                                                         write!(w, "{}::{}", Self::generated_container_path(), mangled_container).unwrap();
3029                                                         self.check_create_container(mangled_container, "Vec", vec![&*s.elem], generics, false)
3030                                                 } else { false }
3031                                         }
3032                                 } else if let syn::Type::Reference(r) = &*s.elem {
3033                                         if let syn::Type::Path(p) = &*r.elem {
3034                                                 // Slices with "real types" inside are mapped as the equivalent non-ref Vec
3035                                                 let resolved = self.resolve_path(&p.path, generics);
3036                                                 let mangled_container = if let Some((ident, _)) = self.crate_types.opaques.get(&resolved) {
3037                                                         format!("CVec_{}Z", ident)
3038                                                 } else if let Some(en) = self.crate_types.mirrored_enums.get(&resolved) {
3039                                                         format!("CVec_{}Z", en.ident)
3040                                                 } else if let Some(id) = p.path.get_ident() {
3041                                                         format!("CVec_{}Z", id)
3042                                                 } else { return false; };
3043                                                 write!(w, "{}::{}", Self::generated_container_path(), mangled_container).unwrap();
3044                                                 self.check_create_container(mangled_container, "Vec", vec![&*r.elem], generics, false)
3045                                         } else if let syn::Type::Slice(sl2) = &*r.elem {
3046                                                 if let syn::Type::Reference(r2) = &*sl2.elem {
3047                                                         if let syn::Type::Path(p) = &*r2.elem {
3048                                                                 // Slices with slices with opaque types (with is_owned flags) are mapped as non-ref Vecs
3049                                                                 let resolved = self.resolve_path(&p.path, generics);
3050                                                                 let mangled_container = if let Some((ident, _)) = self.crate_types.opaques.get(&resolved) {
3051                                                                         format!("CVec_CVec_{}ZZ", ident)
3052                                                                 } else { return false; };
3053                                                                 write!(w, "{}::{}", Self::generated_container_path(), mangled_container).unwrap();
3054                                                                 let inner = &r2.elem;
3055                                                                 let vec_ty: syn::Type = syn::parse_quote!(Vec<#inner>);
3056                                                                 self.check_create_container(mangled_container, "Vec", vec![&vec_ty], generics, false)
3057                                                         } else { false }
3058                                                 } else { false }
3059                                         } else { false }
3060                                 } else if let syn::Type::Tuple(_) = &*s.elem {
3061                                         let mut args = syn::punctuated::Punctuated::<_, syn::token::Comma>::new();
3062                                         args.push(syn::GenericArgument::Type((*s.elem).clone()));
3063                                         let mut segments = syn::punctuated::Punctuated::new();
3064                                         segments.push(parse_quote!(Vec<#args>));
3065                                         self.write_c_type_intern(w, &syn::Type::Path(syn::TypePath { qself: None, path: syn::Path { leading_colon: None, segments } }), generics, false, is_mut, ptr_for_ref, with_ref_lifetime, c_ty)
3066                                 } else if let syn::Type::Array(a) = &*s.elem {
3067                                         if let syn::Expr::Lit(l) = &a.len {
3068                                                 if let syn::Lit::Int(i) = &l.lit {
3069                                                         let mut buf = Vec::new();
3070                                                         self.write_rust_type(&mut buf, generics, &*a.elem, false);
3071                                                         let arr_ty = String::from_utf8(buf).unwrap();
3072
3073                                                         let arr_str = format!("[{}; {}]", arr_ty, i.base10_digits());
3074                                                         let ty = self.c_type_from_path(&arr_str, false, ptr_for_ref).unwrap()
3075                                                                 .rsplitn(2, "::").next().unwrap();
3076
3077                                                         let mangled_container = format!("CVec_{}Z", ty);
3078                                                         write!(w, "{}::{}", Self::generated_container_path(), mangled_container).unwrap();
3079                                                         self.check_create_container(mangled_container, "Vec", vec![&*s.elem], generics, false)
3080                                                 } else { false }
3081                                         } else { false }
3082                                 } else { false }
3083                         },
3084                         syn::Type::Tuple(t) => {
3085                                 if t.elems.len() == 0 {
3086                                         true
3087                                 } else {
3088                                         self.write_c_mangled_container_path(w, t.elems.iter().collect(), generics,
3089                                                 &format!("{}Tuple", t.elems.len()), is_ref, is_mut, ptr_for_ref)
3090                                 }
3091                         },
3092                         _ => false,
3093                 }
3094         }
3095         pub fn write_c_type<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, ptr_for_ref: bool) {
3096                 assert!(self.write_c_type_intern(w, t, generics, false, false, ptr_for_ref, false, true));
3097         }
3098         pub fn write_c_type_in_generic_param<W: std::io::Write>(&self, w: &mut W, t: &syn::Type, generics: Option<&GenericTypes>, ptr_for_ref: bool) {
3099                 assert!(self.write_c_type_intern(w, t, generics, false, false, ptr_for_ref, true, false));
3100         }
3101         pub fn understood_c_path(&self, p: &syn::Path) -> bool {
3102                 self.write_c_path_intern(&mut std::io::sink(), p, None, false, false, false, false, true)
3103         }
3104         pub fn understood_c_type(&self, t: &syn::Type, generics: Option<&GenericTypes>) -> bool {
3105                 self.write_c_type_intern(&mut std::io::sink(), t, generics, false, false, false, false, true)
3106         }
3107 }