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
// Copyright 2016 Indoc Developers
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

extern crate proc_macro;

#[cfg(not(feature = "unstable"))]
use proc_macro_hack::proc_macro_hack;

use proc_macro2::TokenStream;
use quote::quote;
use syn::{Lit, LitByteStr, LitStr};
use unindent::*;

#[cfg_attr(feature = "unstable", proc_macro)]
#[cfg_attr(not(feature = "unstable"), proc_macro_hack)]
pub fn indoc(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let source = TokenStream::from(input);

    let len = source.clone().into_iter().count();
    if len != 1 {
        panic!(
            "argument must be a single string literal, but got {} tokens",
            len
        );
    }

    let lit = match syn::parse2::<Lit>(source) {
        Ok(lit) => lit,
        Err(_) => {
            panic!("argument must be a single string literal");
        }
    };

    let lit = match lit {
        Lit::Str(lit) => {
            let v = unindent(&lit.value());
            Lit::Str(LitStr::new(&v, lit.span()))
        }
        Lit::ByteStr(lit) => {
            let v = unindent_bytes(&lit.value());
            Lit::ByteStr(LitByteStr::new(&v, lit.span()))
        }
        _ => {
            panic!("argument must be a single string literal");
        }
    };

    proc_macro::TokenStream::from(quote!(#lit))
}