1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
//! # shrinkwraprs
//!
//! Making wrapper types allows us to give more compile-time
//! guarantees about our code being correct:
//!
//! ```ignore
//! // Now we can't mix up widths and heights; the compiler will yell at us!
//! struct Width(u64);
//! struct Height(u64);
//! ```
//!
//! But... they're kind of a pain to work with. If you ever need to get at
//! that wrapped `u64`, you need to constantly pattern-match back and forth
//! to wrap and unwrap the values.
//!
//! `shrinkwraprs` aims to alleviate this pain by allowing you to derive
//! implementations of various conversion traits by deriving
//! `Shrinkwrap`.
//!
//! ## Functionality implemented
//!
//! Currently, using `#[derive(Shrinkwrap)]` will derive the following traits
//! for all structs:
//!
//! * `AsRef<InnerType>`
//! * `Borrow<InnerType>`
//! * `Deref<Target=InnerType>`
//!
//! Additionally, using `#[shrinkwrap(mutable)]` will also
//! derive the following traits:
//!
//! * `AsMut<InnerType>`
//! * `BorrowMut<InnerType>`
//! * `DerefMut<Target=InnerType>`
//!
//! Finally, one more option is `#[shrinkwrap(transformers)]`, which will derive
//! some useful inherent functions for transforming the wrapped data:
//!
//! * `fn transform<F>(&mut self, mut f: F) -> &mut Self where F: FnMut(&mut InnerType)`
//! * `fn siphon<F, T>(self, mut f: F) -> T where F: FnMut(InnerType) -> T`
//!
//! ...where `transform` makes it easy to chain updates on the inner value, and
//! `siphon` allows you to easily move out the inner value to produce a value
//! of a different type.
//!
//! `transform` will have the same visibility as the inner field, which ensures that
//! `transform` doesn't leak the possibility of changing the inner value
//! (potentially in invariant-violating ways). `siphon` has the same visibility as
//! the struct itself, since it *doesn't* provide a direct way for callers to break
//! your data.
//!
//! ## Cool, how do I use it?
//!
//! ```ignore
//! #[macro_use] extern crate shrinkwraprs;
//!
//! #[derive(Shrinkwrap)]
//! struct Email(String);
//!
//! fn main() {
//!     let email = Email("chiya+snacks@natsumeya.jp".into());
//!
//!     let is_discriminated_email =
//!         email.contains("+");  // Woohoo, we can use the email like a string!
//!
//!     /* ... */
//! }
//! ```
//!
//! If you have multiple fields, but there's only one field you want to be able
//! to deref/borrow as, mark it with `#[shrinkwrap(main_field)]`:
//!
//! ```ignore
//! #[derive(Shrinkwrap)]
//! struct Email {
//!     spamminess: f64,
//!     #[shrinkwrap(main_field)] addr: String
//! }
//!
//! #[derive(Shrinkwrap)]
//! struct CodeSpan(u32, u32, #[shrinkwrap(main_field)] Token);
//! ```
//!
//! If you also want to be able to modify the wrapped value directly,
//! add the attribute `#[shrinkwrap(mutable)]` as well:
//!
//! ```ignore
//! #[derive(Shrinkwrap)]
//! #[shrinkwrap(mutable)]
//! struct InputBuffer {
//!     buffer: String
//! }
//!
//! ...
//! let mut input_buffer = /* ... */;
//! input_buffer.push_str("some values");
//! ...
//! ```

// Additionally, perhaps subsume some functionality from
// [`from_variants`](https://crates.io/crates/from_variants)?

#![cfg_attr(feature = "strict", deny(warnings))]
#![recursion_limit="128"]

extern crate proc_macro;
extern crate proc_macro2;
extern crate syn;
#[macro_use] extern crate quote;
extern crate itertools;
#[macro_use] extern crate bitflags;

use proc_macro2::{TokenStream, Span};
use quote::ToTokens;
use syn::spanned::Spanned;

mod ast;
mod visibility;

#[proc_macro_derive(Shrinkwrap, attributes(shrinkwrap))]
pub fn shrinkwrap(tokens: proc_macro::TokenStream) -> proc_macro::TokenStream {
  use ast::{ShrinkwrapFlags, validate_derive_input};
  use visibility::field_visibility;
  use visibility::FieldVisibility::*;

  let input: syn::DeriveInput = syn::parse(tokens)
    .unwrap();
  let validate_result = validate_derive_input(input);

  let mut tokens = TokenStream::new();

  match validate_result {
    Err(error) => error.to_tokens(&mut tokens),
    Ok((details, input)) => {
      impl_immut_borrows(&details, &input)
        .to_tokens(&mut tokens);

      if details.flags.contains(ShrinkwrapFlags::SW_TRANSFORMERS) {
        impl_transformers(&details, &input)
          .to_tokens(&mut tokens);
      }

      if details.flags.contains(ShrinkwrapFlags::SW_MUT) {
        // Make sure that the inner field isn't less visible than the outer struct.
        if !details.flags.contains(ast::ShrinkwrapFlags::SW_IGNORE_VIS) {
          match field_visibility(&details.visibility, &input.inner_field.vis) {
            Restricted => {
              let outer_vis = show_visibility(&details.visibility);
              let inner_vis = show_visibility(&input.inner_field.vis);

              let msg = format!(
"Encountered an error while mutably Shrinkwrapping this field.
This field is less visible than its containing struct; the containing
struct

    `{}'

has visibility

    `{}'

while this field has visibility

    `{}'

Implementing mutable shrinkwraps could allow outside code to modify the
inner value, even when visibility modifiers say that they can't.

Some ways to solve this problem:

1) Change the visibility of the inner field to be the same as its
   containing struct: `{}'
2) Turn off mutable shrinkwraps if you don't need them
3) Override this check and implement mutable shrinkwraps anyways by using
   #[shrinkwrap(unsafe_ignore_visibility)] on your struct",
                &details.ident,
                outer_vis,
                inner_vis,
                outer_vis
              );

              quote_spanned!(input.inner_field.span()=> compile_error!(#msg);)
                .to_tokens(&mut tokens);
            },
            CantDetermine => {
              let outer_vis = show_visibility(&details.visibility);
              let inner_vis = show_visibility(&input.inner_field.vis);

              let msg = format!(
"Encountered an error while mutably Shrinkwrapping this field.
I can't determine whether the inner field is at least as visible as its
containing struct; the containing struct

    `{}'

has visibility

    `{}'

while this field has visibility

    `{}'

If the inner field is less visible than its containing struct, implementing
mutable shrinkwraps could allow outside code to modify the inner value,
even when visibility modifiers say that they can't.

Some ways to solve this problem:

1) Change the visibility of the inner field to be the same as its
   containing struct: `{}'
2) Turn off mutable shrinkwraps if you don't need them
3) Override this check and implement mutable shrinkwraps anyways by using
   #[shrinkwrap(unsafe_ignore_visibility)] on your struct",
                &details.ident,
                outer_vis,
                inner_vis,
                outer_vis
              );

              quote_spanned!(input.inner_field.span()=> compile_error!(#msg);)
                .to_tokens(&mut tokens);
            },
            _ => ()
          }
        }

        impl_mut_borrows(&details, &input)
          .to_tokens(&mut tokens);
      }
    }
  }

  tokens.into()
}

// When generating our code, we need to be careful not to leak things into the
// surrounding code. For example, we don't use imports unless they're inside a
// scope, because otherwise we'd be inserting invisible imports whenever a user
// used #[derive(Shrinkwrap)].

fn impl_immut_borrows(details: &ast::StructDetails, input: &ast::Struct) -> TokenStream {
  let &ast::StructDetails { ref ident, ref generics, .. } = details;
  let &ast::Struct { ref inner_field, ref inner_field_name, .. } = input;

  let inner_type = &inner_field.ty;

  let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();
  let rust = syn::Ident::new(RUST, Span::call_site());

  quote! {
    impl #impl_generics ::#rust::ops::Deref for #ident #ty_generics #where_clause {
      type Target = #inner_type;
      fn deref(&self) -> &Self::Target {
        &self.#inner_field_name
      }
    }

    impl #impl_generics ::#rust::borrow::Borrow<#inner_type> for #ident #ty_generics #where_clause {
      fn borrow(&self) -> &#inner_type {
        &self.#inner_field_name
      }
    }

    impl #impl_generics ::#rust::convert::AsRef<#inner_type> for #ident #ty_generics #where_clause {
      fn as_ref(&self) -> &#inner_type {
        &self.#inner_field_name
      }
    }
  }
}

fn impl_mut_borrows(details: &ast::StructDetails, input: &ast::Struct) -> TokenStream {
  let &ast::StructDetails { ref ident, ref generics, .. } = details;
  let &ast::Struct { ref inner_field, ref inner_field_name, .. } = input;

  let inner_type = &inner_field.ty;

  let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();
  let rust = syn::Ident::new(RUST, Span::call_site());

  quote! {
    impl #impl_generics ::#rust::ops::DerefMut for #ident #ty_generics #where_clause {
      fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.#inner_field_name
      }
    }

    impl #impl_generics ::#rust::borrow::BorrowMut<#inner_type> for #ident #ty_generics #where_clause {
      fn borrow_mut(&mut self) -> &mut #inner_type {
        &mut self.#inner_field_name
      }
    }

    impl #impl_generics ::#rust::convert::AsMut<#inner_type> for #ident #ty_generics #where_clause {
      fn as_mut(&mut self) -> &mut #inner_type {
        &mut self.#inner_field_name
      }
    }
  }
}

fn impl_transformers(details: &ast::StructDetails, input: &ast::Struct) -> TokenStream {
  let &ast::StructDetails { ref ident, ref generics, .. } = details;
  let &ast::Struct { ref inner_field, ref inner_field_name, .. } = input;

  let inner_type = &inner_field.ty;
  let inner_visibility = &inner_field.vis;

  let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();

  // This is a *massive* hack to avoid variable capture, but I can't figure out
  // how to get `quote` to enforce hygiene or generate a gensym.
  let f = quote!( __SHRINKWRAP_F );
  let t = quote!( __SHRINKWRAP_T );

  quote! {
    #[allow(dead_code, non_camel_case_types)]
    impl #impl_generics #ident #ty_generics #where_clause {
      /// Create a new value by calling a function over the wrapped value,
      /// consuming the outer value in the process.
      pub fn siphon<#t, #f: FnMut(#inner_type) -> #t>(self, mut f: #f) -> #t {
        f(self.#inner_field_name)
      }

      /// Update the outer value by calling a function on the wrapped value, which
      /// might update the wrapped value in place. Returns a mutable ref to the
      /// original outer value for easy chaining.
      #inner_visibility fn transform<#f>(&mut self, mut f: #f) -> &mut Self
        where #f: FnMut(&mut #inner_type)
      {
        f(&mut self.#inner_field_name);
        self
      }
    }
  }
}

/// Turn the visibility AST into what you might see in source code.
fn show_visibility(vis: &syn::Visibility) -> String {
  match vis {
    syn::Visibility::Inherited => "<private>".into(),
    _ => {
      let mut tokens = TokenStream::new();
      vis.to_tokens(&mut tokens);

      format!("{}", tokens)
    }
  }
}

#[cfg(feature = "std")]
const RUST: &str = "std";
#[cfg(not(feature = "std"))]
const RUST: &str = "core";