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
// Derive macros for lightning network peer protocol encodings
//
// Written in 2020-2022 by
//     Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
//
// To the extent possible under law, the author(s) have dedicated all
// copyright and related and neighboring rights to this software to
// the public domain worldwide. This software is distributed without
// any warranty.
//
// You should have received a copy of the Apache 2.0 License along with this
// software. If not, see <https://opensource.org/licenses/Apache-2.0>.

// Coding conventions
#![recursion_limit = "256"]
#![deny(dead_code, missing_docs, warnings)]

//! Derivation macros for lightning encoding. To learn more about the lightning
//! encoding please check [`lightning_encoding`] crate.
//!
//! # Derivation macros
//!
//! Library exports derivation macros `#[derive(`[`LightningEncode`]`)]` and
//! `#[derive(`[`LightningDecode`]`)]`, which can be added on top of any
//! structure you'd like to support lightning-network specific encoding (see
//! Example section below).
//!
//! Encoding/decoding implemented by both of these macros may be configured at
//! type and individual field level using `#[lightning_encoding(...)]` attribute
//!
//! # Attribute
//!
//! [`LightningEncode`] and [`LightningDecode`] behavior can be customed with
//! `#[lightning_encoding(...)]` attribute, which accepts different arguments
//! depending to which part of the data type it is applied.
//!
//! ## Attribute arguments at type declaration level
//!
//! Derivation macros accept `#[lightning_encoding()]` attribute with the
//! following arguments:
//!
//! ### `crate = ::path::to::lightning_encoding_crate`
//!
//! Allows to specify custom path to `lightning_encoding` crate
//!
//! ### `use_tlv`
//!
//! Applies TLV extension to the data type and allows use of `tlv` and
//! `unknown_tlvs` arguments on struct fields.
//!
//! NB: TLVs work only with structures and not enums.
//!
//! ### `repr = <uint>`
//!
//! Can be used with enum types only.
//!
//! Specifies which unsigned integer type must represent enum variants during
//! the encoding. Possible values are `biging`, `u8`, `u16`, `u32` and `u64`.
//!
//! NB: This argument is not equal to the rust `#[repr(...)]` attribute, which
//! defines C FFI representation of the enum type. For their combined usage
//! pls check examples below
//!
//! ### `bu_order`/`by_velue`
//!
//! Can be used with enum types only, where they define which encoding strategy
//! should be used for representation of enum variants:
//! - `by_value` - encodes enum variants using their value representation (see
//!   `repr` above)
//! - `by_order` - encodes enum variants by their ordinal position starting from
//!   zero. Can't be combined with `by_value`.
//!
//! If neither of these two arguments is provided, the macro defaults to
//! `by_order` encoding.
//!
//!
//! ## Attribute arguments at field and enum variant level
//!
//! Derivation macros accept `#[lightning_encoding()]` attribute with the
//! following arguments
//!
//! ### `skip`
//!
//! Skips field during serialization and initialize field value with
//! `Default::default()` on type deserialization.
//!
//! Allowed only for named and unnamed (tuple) structure fields and enum variant
//! associated value fields.
//!
//! ### `tlv = <unsigned 16-bit int>`
//!
//! Sets the TLV type id for the field. The field type MUST be `Option` and
//! it must implement `Default`.
//!
//! ### `unknown_tlvs`
//!
//! Specifies structure field which will be "capture all" for unknown odd TLV
//! ids. The argument can be used only for a single field within a structure and
//! the field type must be `BTreeMap<usize, Box<[u8]>]`.
//!
//! NB: if an unknown even TLV type id is met, error is raised and the value
//! does not get into the field.
//!
//! ### `value = <unsigned integer>`
//!
//! Allowed only for enum variants.
//!
//! Assigns custom value for a given enum variant, overriding `by_value` and
//! `by_order` directives defined at type level and the actual variant value, if
//! any.
//!
//! NB: If the value conflicts with the values of other enum variants, taken
//! from either their assigned value (for `by_value`-encoded enums), order
//! index (for `by_order`-encoded enums) or other variant's value from with
//! explicit `value` argument the compiler will error.
//!
//!
//! # Examples
//!
//! ```
//! # #[macro_use] extern crate lightning_encoding_derive;
//! use lightning_encoding::LightningEncode;
//!
//! // All variants have custom values apart from the first one, which should has
//! // value = 1
//! #[derive(LightningEncode, LightningDecode)]
//! #[lightning_encoding(by_value, repr = u32)]
//! #[repr(u8)]
//! enum CustomValues {
//!     Bit8 = 1,
//!
//!     #[lightning_encoding(value = 0x10)]
//!     Bit16 = 2,
//!
//!     #[lightning_encoding(value = 0x1000)]
//!     Bit32 = 4,
//!
//!     #[lightning_encoding(value = 0x100000)]
//!     Bit64 = 8,
//! }
//!
//! assert_eq!(CustomValues::Bit8.lightning_serialize(), Ok(vec![0x00, 0x00, 0x00, 0x01]));
//! assert_eq!(CustomValues::Bit16.lightning_serialize(), Ok(vec![0x00, 0x00, 0x00, 0x10]));
//! assert_eq!(CustomValues::Bit32.lightning_serialize(), Ok(vec![0x00, 0x00, 0x10, 0x00]));
//! assert_eq!(CustomValues::Bit64.lightning_serialize(), Ok(vec![0x00, 0x10, 0x00, 0x00]));
//! ```
//!
//! ```
//! # #[macro_use] extern crate lightning_encoding_derive;
//! use lightning_encoding::LightningEncode;
//!
//! #[derive(LightningEncode, LightningDecode)]
//! #[lightning_encoding(by_order)]
//! enum U16 {
//!     Bit8 = 1, // this will be encoded as 0x0000, since we use `by_order` here
//!     Bit16 = 2,
//!     Bit32 = 4,
//!     Bit64 = 8,
//! }
//!
//! assert_eq!(U16::Bit8.lightning_serialize(), Ok(vec![0x00]));
//! assert_eq!(U16::Bit16.lightning_serialize(), Ok(vec![0x01]));
//! assert_eq!(U16::Bit32.lightning_serialize(), Ok(vec![0x02]));
//! assert_eq!(U16::Bit64.lightning_serialize(), Ok(vec![0x03]));
//! ```
//!
//! ```
//! # #[macro_use] extern crate lightning_encoding_derive;
//! use lightning_encoding::{LightningDecode, LightningEncode};
//!
//! #[derive(LightningEncode, LightningDecode)]
//! struct Skipping {
//!     pub data: Vec<u8>,
//!
//!     // This will initialize the field upon decoding with Option::default()
//!     // value (i.e. `None`)
//!     #[lightning_encoding(skip)]
//!     pub ephemeral: Option<bool>,
//! }
//!
//! let obj = Skipping {
//!     data: b"abc".to_vec(),
//!     ephemeral: Some(true),
//! };
//! let ser = obj.lightning_serialize().unwrap();
//!
//! assert_eq!(ser, vec![0x00, 0x03, b'a', b'b', b'c']);
//! let de = Skipping::lightning_deserialize(&ser).unwrap();
//! assert_eq!(de.ephemeral, None);
//! assert_eq!(obj.data, de.data);
//! ```
//!
//! [`lightning_encoding`]: https://docs.rs/lightning_encoding

extern crate proc_macro;
#[macro_use]
extern crate syn;
#[macro_use]
extern crate amplify_syn;

use encoding_derive_helpers::{decode_derive, encode_derive};
use proc_macro::TokenStream;
use syn::DeriveInput;

/// Derives [`LightningEncode`] implementation for the type.
#[proc_macro_derive(LightningEncode, attributes(lightning_encoding))]
pub fn derive_lightning_encode(input: TokenStream) -> TokenStream {
    let derive_input = parse_macro_input!(input as DeriveInput);
    encode_derive(
        "lightning_encoding",
        ident!(lightning_encoding),
        ident!(LightningEncode),
        ident!(lightning_encode),
        ident!(lightning_serialize),
        derive_input,
        true,
    )
    .unwrap_or_else(|e| e.to_compile_error())
    .into()
}

/// Derives [`LightningDecode`] implementation for the type.
#[proc_macro_derive(LightningDecode, attributes(lightning_encoding))]
pub fn derive_lightning_decode(input: TokenStream) -> TokenStream {
    let derive_input = parse_macro_input!(input as DeriveInput);
    let tokens = decode_derive(
        "lightning_encoding",
        ident!(lightning_encoding),
        ident!(LightningDecode),
        ident!(lightning_decode),
        ident!(lightning_deserialize),
        derive_input,
        true,
    )
    .unwrap_or_else(|e| e.to_compile_error());
    eprintln!("{tokens}");
    tokens.into()
}