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