oxyroot_derive 0.1.25

Derive macro for oxyroot
Documentation
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
use darling::{ast, FromDeriveInput, FromField};
use proc_macro2::{Ident, TokenStream};
use std::collections::HashMap;

use quote::{format_ident, quote, quote_spanned};

// use oxyroot;

use syn::spanned::Spanned;
use syn::Expr;
use syn::{parse_macro_input, parse_quote, Fields, GenericParam, Generics};
use syn::{Data, DeriveInput};

#[derive(FromDeriveInput, Debug)]
#[darling(attributes(oxyroot))]
struct GOpts {
    // The struct ident.
    // ident: syn::Ident,
    // rename: Option<String>,
    branch_prefix: Option<String>,
    slicable: Option<bool>,

    // Receives the body of the struct or enum. We don't care about
    // struct fields because we previously told darling we only accept structs.
    data: ast::Data<(), FOpts>,
    // The type's generics. You'll need these any time your trait is expected
    // to work with types that declare generics.
    // generics: syn::Generics,
}

#[derive(FromField, Default, Debug)]
#[darling(default, attributes(oxyroot))]
struct FOpts {
    rename: Option<String>,
    branch_prefix: Option<String>,
    absolute_name: Option<String>,
    slicable: Option<String>,

    /// Get the ident of the field. For fields in tuple or newtype structs or
    /// enum bodies, this can be `None`.
    ident: Option<syn::Ident>,
}

#[derive(Default, Debug)]
struct OptionByField {
    renames: HashMap<Ident, String>,
    local_branch_prefix: HashMap<Ident, String>,
    global_branch_prefix: HashMap<Ident, String>,
    absolute_names: HashMap<Ident, String>,
    slicables: HashMap<Ident, String>,
}

///
/// Derive macro in order to read struct data from TTree. Branch names and types  are deduced from fields.
/// ## Basic usage
/// ```no_run
/// use oxyroot::{ReadFromTree, RootFile};
///
/// #[derive(ReadFromTree)]
/// struct MyStruct {
///     a: i32,     // will be read from branch "a" as 32 bits integer
///     s: String,  // will be read from branch "s" as String
/// }
/// let tree = RootFile::open("in.root").unwrap().get_tree("tree").unwrap();
/// MyStruct::from_tree(&tree).unwrap().map(|m: MyStruct | {  /* do something with m */ });
/// ```
///
/// ## Nested structures
/// ```no_run
/// use oxyroot::{ReadFromTree, RootFile};
///
/// #[derive(ReadFromTree)]
/// struct NestedStruct {
///     a: i32,     // will be read from branch "s.a" as 32 bits integer
///     s: String,  // will be read from branch "s.s" as String
/// }
///
/// #[derive(ReadFromTree)]
/// struct MyStruct {
///     s: NestedStruct,  // will be constructed from branch "s.a" and "s.s"
///     i: i32,           // will be read from branch "i" as 32 bits integer
/// }
/// let tree = RootFile::open("in.root").unwrap().get_tree("tree").unwrap();
/// MyStruct::from_tree(&tree).unwrap().map(|m: MyStruct | {  /* do something with m */ });
/// ```
///
///
///
///
/// ## Customisation
/// This macro can be customized with the following attributes:
/// - By using attribute `#[oxyroot(rename = "...")]`, it is possible to use different branch name:
/// ```no_run
/// use oxyroot::ReadFromTree;
///
/// #[derive(ReadFromTree)]
///  struct MyStruct {
///      #[oxyroot(rename = "b")]
///      a: i32,     // will be read from branch *"b"* as 32 bits integer
///      s: String,  // will be read from branch "s" as String
///  }
/// ```
///
/// - By using attribute `#[oxyroot(branch_prefix = "...")]` directly on the struct, it is possible to
/// globally (i.e. for all fields) prefix all branch names:
/// ```no_run
/// use oxyroot::ReadFromTree;
///
/// #[derive(ReadFromTree)]
/// #[oxyroot(branch_prefix = "branch_")]
///  struct MyStruct {
///      a: i32,     // will be read from branch *"branch_a"* as 32 bits integer
///      s: String,  // will be read from branch *"branch_s"* as String
///  }
/// ```
///
/// - By using attribute `#[oxyroot(branch_prefix = "...")]` on a field, it is possible to
/// locally prefix branch name:
/// ```no_run
/// use oxyroot::ReadFromTree;
///
/// #[derive(ReadFromTree)]
///  struct MyStruct {
///      a: i32,     // will be read from branch *"a"* as 32 bits integer
///     #[oxyroot(branch_prefix = "branch_")]
///      s: String,  // will be read from branch *"branch_s"* as String
///  }
/// ```
///
/// - By using attribute `#[oxyroot(absolute_name = "...")]` on a field, it is possible to
/// precisely set the branch name, even in a nested struct:
/// ```no_run
/// use oxyroot::ReadFromTree;
///
/// #[derive(ReadFromTree)]
///  struct MyStruct {
///      a: i32,     // will be read from branch *"a"* as 32 bits integer
///     #[oxyroot(absolute_name = "branch_s")]
///      s: String,  // will be read from branch *"branch_s"* as String
///  }
/// ```
/// - In combination with `#[oxyroot(branch_prefix = "...")]`:
/// ```no_run
/// use oxyroot::ReadFromTree;
///
/// #[derive(ReadFromTree)]
/// #[oxyroot(branch_prefix = "branch_")]
/// struct MyStruct {
///    a: i32,     // will be read from branch *"branch_a"* as 32 bits integer
///    c: f64,     // will be read from branch *"branch_c"* as 64 bits float
///   #[oxyroot(absolute_name = "zweig_s")]
///   s: String,  // will be read from branch *"zweig_s"* as String
/// }
/// ```
///
/// - Use `#[oxyroot(slicable)]` if the C++ class has a `std::vector` as a member.  
/// ```no_run
/// use oxyroot::ReadFromTree;
///
/// #[derive(ReadFromTree)]
/// #[oxyroot(slicable)]
/// struct Point {
///     x: i32, // will be read from branch "points.x" as 32 bits integer
///     y: i32, // will be read from branch "points.y" as 32 bits integer
/// }
///
/// #[derive(ReadFromTree)]
/// struct SeveralPoints {
///     #[oxyroot(slicable = "Point")]
///     points: Vec<Point>, // will be read from branches "points.x" and "points.y" as a vector of
///                         // Point
/// }
/// ```
/// This combinaison can be used to read `TTree` created from C++ classes like:
/// ```c++
/// class Point {
///     public:
///         int x = 0;
///         int y = 0;
/// };
/// class SeveralPoints {
///     public:
///         std::vector<Point> points;
/// };
///
/// TTree *myTree = new TTree("myTree", "");
/// SeveralPoints tp;
/// for (int i = 0; i < 10; ++i)
/// {
///     Point p;
///     p.x = i;
///     p.y = i*i;
///     tp.points.push_back(p);
///     myTree->Fill();
/// }
/// ```
///
#[proc_macro_derive(ReadFromTree, attributes(oxyroot))]
pub fn derive_ead_from_tree(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input = parse_macro_input!(input as DeriveInput);
    // eprintln!("ast: {:#?}", input);

    let opts = GOpts::from_derive_input(&input).expect("Wrong options");
    // eprintln!("ropts: {:#?}", opts);
    let mut opts_by_fiels = OptionByField::default();

    let data = opts
        .data
        .as_ref()
        .take_struct()
        .expect("should be struct")
        .fields;
    for f in data.iter() {
        let original_name = f.ident.as_ref().expect("de");
        let final_name = match &f.rename {
            None => original_name.to_string(),

            Some(i) => i.to_string(),
        };
        opts_by_fiels
            .renames
            .insert(original_name.clone(), final_name);

        if let Some(l) = &f.branch_prefix {
            opts_by_fiels
                .local_branch_prefix
                .insert(original_name.clone(), l.to_string());
        }

        if let Some(g) = &opts.branch_prefix {
            opts_by_fiels
                .global_branch_prefix
                .insert(original_name.clone(), g.to_string());
        }

        if let Some(a) = &f.absolute_name {
            opts_by_fiels
                .absolute_names
                .insert(original_name.clone(), a.to_string());
        }

        if let Some(a) = &f.slicable {
            opts_by_fiels
                .slicables
                .insert(original_name.clone(), a.to_string());
        }
    }

    // eprintln!("opts_by_fiels: {:#?}", opts_by_fiels);

    // Used in the quasi-quotation below as `#name`.
    let name = input.ident;
    let slicable = opts.slicable.unwrap_or(false);
    let generics = add_trait_bounds(input.generics);
    let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();

    let func = write_func_for_readtotree(&input.data, &opts_by_fiels);
    let func_sliced = write_func_for_readtotree_sliced(&input.data, &opts_by_fiels);
    let stru = write_struct_for_readtotree(&input.data, &opts_by_fiels);
    let stru_sliced = write_struct_for_readtotree_sliced(&input.data, &opts_by_fiels);

    let next = write_next_for_readtotree(&input.data, &opts_by_fiels);
    let next_sliced = write_next_for_readtotree_sliced(name.clone(), &input.data);

    let iterator_name = format_ident!("{name}Iterator");
    let iterator_name_sliced = format_ident!("{name}IteratorSliced");

    let iterator = if slicable {
        quote!(
                    use oxyroot::Slice;
                    struct #iterator_name_sliced<'a>  {
                       #stru_sliced
                    }

                    impl<'a> #iterator_name_sliced<'a> {
                        fn new(tree: &'a oxyroot::ReaderTree, branch_name: oxyroot::BranchName) -> oxyroot::Result<Self> {
                            use oxyroot::ReadFromTree;
                            #func_sliced
                        }
                    }

                    impl Iterator for #iterator_name_sliced<'_> {
                        type Item = oxyroot::ReadFromTreeResult<#name>;
                        fn next(&mut self) -> Option<Self::Item> {
                            #next_sliced
                        }
                    }
        )
    } else {
        quote!()
    };

    let ok = if slicable {
        quote!(
            Ok(#iterator_name_sliced::new(tree, branch_name)?)
        )
    } else {
        quote!(Ok(#iterator_name::new(tree, branch_name)?))
    };

    let expanded = quote!(

            impl<'a> #impl_generics  #ty_generics #where_clause oxyroot::ReadFromTree<'a> for #name{
                fn from_branch_tree(tree: &'a oxyroot::ReaderTree,
                                    branch_name: oxyroot::BranchName)
                -> oxyroot::Result<impl Iterator<Item = oxyroot::ReadFromTreeResult<#name>> +'a >{
                    use oxyroot::ReadFromTreeResult;
                    struct #iterator_name<'a>  {
                       #stru
                    }

                    impl<'a> #iterator_name<'a> {
                        fn new(tree: &'a oxyroot::ReaderTree, branch_name: oxyroot::BranchName) -> oxyroot::Result<Self> {
                            use oxyroot::ReadFromTree;
                            #func
                        }
                    }

                    impl Iterator for #iterator_name<'_> {
                        type Item = oxyroot::ReadFromTreeResult<#name>;
                        fn next(&mut self) -> Option<Self::Item> {
                            Some(oxyroot::ReadFromTreeResult::OneValue(#name { #next }))
                        }
                    }


                   Ok(#iterator_name::new(tree, branch_name)?)
                }


            fn from_branch_tree_sliced(tree: &'a oxyroot::ReaderTree,
                                    branch_name: oxyroot::BranchName)
                -> oxyroot::Result<impl Iterator<Item = oxyroot::ReadFromTreeResult<#name>> +'a >{
                    use oxyroot::ReadFromTreeResult;
                    struct #iterator_name<'a>  {
                       #stru
                    }

                    impl<'a> #iterator_name<'a> {
                        fn new(tree: &'a oxyroot::ReaderTree, branch_name: oxyroot::BranchName) -> oxyroot::Result<Self> {
                            use oxyroot::ReadFromTree;
                            #func
                        }
                    }

                    impl Iterator for #iterator_name<'_> {
                        type Item = oxyroot::ReadFromTreeResult<#name>;
                        fn next(&mut self) -> Option<Self::Item> {
                            Some(oxyroot::ReadFromTreeResult::OneValue(#name { #next }))
                        }
                    }

                    #iterator

                    #ok
                }
    }
        );

    expanded.into()
}

// Add a bound `T: Marshaler` to every type parameter T.
fn add_trait_bounds(mut generics: Generics) -> Generics {
    for param in &mut generics.params {
        if let GenericParam::Type(ref mut type_param) = *param {
            type_param.bounds.push(parse_quote!(oxyroot::ReadFromTree));
        }
    }
    generics
}

fn write_struct_for_readtotree(data: &Data, opts_by_fiels: &OptionByField) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let field_type = &f.ty;

                    match  opts_by_fiels.slicables.get(f.ident.as_ref().unwrap()) {
                        None => {
                                quote_spanned! {
                                    f.span() => #field_name: Box<dyn Iterator<Item=oxyroot::ReadFromTreeResult<#field_type>> + 'a>,
                                }
                        }
                        Some(s) => {
                            let ty = syn::parse_str::<Expr>(s).unwrap();
                            quote_spanned! {
                                f.span() => #field_name: Box<dyn Iterator<Item=oxyroot::ReadFromTreeResult<#ty>> + 'a>,
                            }
                        }
                    }


                });
                quote!(#(#recurse)*)
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

fn write_struct_for_readtotree_sliced(data: &Data, _opts_by_fiels: &OptionByField) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let field_type = &f.ty;



                    quote_spanned! {
                                f.span() =>  #field_name: Box<dyn Iterator<Item=oxyroot::ReadFromTreeResult<Slice<#field_type>>> + 'a>,
                            }



                });
                quote!(#(#recurse)*)
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

fn write_func_for_readtotree(data: &Data, opts_by_fiels: &OptionByField) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let branch_names = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let branch_name_ident = format_ident!("bn_{field_name}");
                    let branch_name = match opts_by_fiels.renames.get(f.ident.as_ref().unwrap()) {
                        None => field_name.to_string(),
                        Some(s) => s.to_string(),
                    };

                    let mut let_b =
                        quote_spanned!(f.span() => let b = branch_name.make_child(#branch_name));

                    let global_prefix = opts_by_fiels
                        .global_branch_prefix
                        .get(f.ident.as_ref().unwrap());

                    if let Some(l) = global_prefix {
                        let_b = quote_spanned!(f.span() => #let_b.with_prefix(#l));
                    }

                    let absolute_name = opts_by_fiels.absolute_names.get(f.ident.as_ref().unwrap());

                    if let Some(a) = absolute_name {
                        let_b = quote_spanned!(f.span() => #let_b.make_absolute(#a));
                    }

                    let local_prefix = opts_by_fiels
                        .local_branch_prefix
                        .get(f.ident.as_ref().unwrap());

                    if let Some(l) = local_prefix {
                        let_b = quote_spanned!(f.span() => #let_b.with_prefix(#l));
                    }

                    quote_spanned!(f.span() => let #branch_name_ident =
                        {
                            #let_b;
                            b
                        };
                    )
                });

                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let _branch_name = match  opts_by_fiels.renames.get(f.ident.as_ref().unwrap()) {
                        None => {  field_name.to_string()}
                        Some(s) => {s.to_string()}
                    };
                    let field_type = &f.ty;
                    let branch_name_ident = format_ident!("bn_{field_name}");


                    match  opts_by_fiels.slicables.get(f.ident.as_ref().unwrap()) {
                        None => {
                            quote_spanned! {
                                f.span() =>  #field_name:Box::new(<#field_type>::from_branch_tree(tree, #branch_name_ident.into())?)     ,
                            }
                        }
                        Some(s) => {
                            let ty = syn::parse_str::<Expr>(s).unwrap();
                            quote_spanned! {
                                f.span() =>  #field_name:Box::new(<#ty>::from_branch_tree_sliced(tree, #branch_name_ident.into())?)     ,
                            }
                        }
                    }


                });
                quote!(  #(#branch_names)*   Ok(Self{  #(#recurse)* }))
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

fn write_func_for_readtotree_sliced(data: &Data, opts_by_fiels: &OptionByField) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let branch_names = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let branch_name_ident = format_ident!("bn_{field_name}");
                    let branch_name = match opts_by_fiels.renames.get(f.ident.as_ref().unwrap()) {
                        None => field_name.to_string(),
                        Some(s) => s.to_string(),
                    };

                    let mut let_b =
                        quote_spanned!(f.span() => let b = branch_name.make_child(#branch_name));

                    let global_prefix = opts_by_fiels
                        .global_branch_prefix
                        .get(f.ident.as_ref().unwrap());

                    if let Some(l) = global_prefix {
                        let_b = quote_spanned!(f.span() => #let_b.with_prefix(#l));
                    }

                    let absolute_name = opts_by_fiels.absolute_names.get(f.ident.as_ref().unwrap());

                    if let Some(a) = absolute_name {
                        let_b = quote_spanned!(f.span() => #let_b.make_absolute(#a));
                    }

                    let local_prefix = opts_by_fiels
                        .local_branch_prefix
                        .get(f.ident.as_ref().unwrap());

                    if let Some(l) = local_prefix {
                        let_b = quote_spanned!(f.span() => #let_b.with_prefix(#l));
                    }

                    quote_spanned!(f.span() => let #branch_name_ident =
                        {
                            #let_b;
                            b
                        };
                    )
                });

                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let _branch_name = match  opts_by_fiels.renames.get(f.ident.as_ref().unwrap()) {
                        None => {  field_name.to_string()}
                        Some(s) => {s.to_string()}
                    };
                    let field_type = &f.ty;


                    let branch_name_ident = format_ident!("bn_{field_name}");


                    quote_spanned! {
                        f.span() =>  #field_name:Box::new(<Slice<#field_type>>::from_branch_tree(tree, #branch_name_ident.into())?)     ,
                    }
                });
                quote!(  #(#branch_names)*   Ok(Self{  #(#recurse)* }))
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

fn write_next_for_readtotree(data: &Data, opts_by_fiels: &OptionByField) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();

                    match opts_by_fiels.slicables.get(f.ident.as_ref().unwrap()) {
                        None => {
                            quote_spanned! {
                                f.span() => #field_name: self.#field_name.next()?.unwrap(),
                            }
                        }
                        Some(_) => {
                            quote_spanned! {
                                f.span() => #field_name: self.#field_name.next()?.unwrap_slice().into(),
                            }
                        }
                    }

                    // quote_spanned! {
                    //     f.span() => #field_name: self.#field_name.next()?.unwrap(),
                    // }
                });
                quote!(  #(#recurse)* )
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

fn write_next_for_readtotree_sliced(name: Ident, data: &Data) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let get_sliced = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    quote_spanned! {
                        f.span() =>
                            let #field_name = self.#field_name.next()?.unwrap();
                            let _size_slice = #field_name.inner().len();
                    }
                });
                let get_sliced = quote!(  #(#get_sliced)* );

                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let field_namei = format_ident!("{field_name}i");
                    quote_spanned! {
                        f.span() => let #field_namei = #field_name.inner()[i];
                    }
                });
                let get_slice_i = quote!(  #(#recurse)* );

                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let field_namei = format_ident!("{field_name}i");
                    quote_spanned! {
                        f.span() => #field_name: #field_namei,
                    }
                });
                let ret = quote!(  #(#recurse)* );

                quote!(
                    #get_sliced
                    let mut v = Vec::new();
                    for i in 0.._size_slice {
                        #get_slice_i
                        let  p = #name {
                            #ret
                        };
                        v.push(p);
                    }
                    Some(oxyroot::ReadFromTreeResult::Slice(Slice::new(v)))
                )
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

///
/// Derive macro in order to write struct data into a TTree. Branch names and types are deduced from fields.
/// ```no_run
/// use oxyroot::{WriteToTree, RootFile};
/// #[derive(WriteToTree)]
/// struct MyStruct {
///     a: i32,     // will be read from branch "a" as 32 bits integer
///     s: String,  // will be read from branch "s" String
/// }
/// let mut f = RootFile::create("out.root").unwrap();
/// let mut tree = oxyroot::WriterTree::new("tree");
/// let it = vec![MyStruct {a: 0,s: "a".to_string()}, MyStruct {a: 1,s: "b".to_string()}].into_iter();
/// MyStruct::to_tree(it, &mut tree).unwrap();
/// tree.write(&mut f).unwrap();
/// f.close().unwrap();
/// ```
///
#[proc_macro_derive(WriteToTree)]
pub fn derive_write_to_tree(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input = parse_macro_input!(input as DeriveInput);
    // eprintln!("ast: {:#?}", input);

    //let opts = GOpts::from_derive_input(&input).expect("Wrong options");
    // eprintln!("opts: {:#?}", opts);
    // Used in the quasi-quotation below as `#name`.
    let name = input.ident;
    let generics = add_trait_bounds(input.generics);
    let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();

    let send_recv = write_send_recv_for_write_to_tree(&input.data);
    let match_it_some = write_match_it_some_for_write_to_tree(&input.data);
    let match_it_none = write_match_it_none_for_write_to_tree(&input.data);
    let new_branch = write_new_branch_for_write_to_tree(&input.data);

    let expanded = quote!(
        impl #impl_generics  #ty_generics #where_clause oxyroot::WriteToTree for #name{
            fn to_branch_tree(
                mut it: impl Iterator<Item = #name> + 'static,
                tree: &mut oxyroot::WriterTree, branch_name: Option<&str>
            ) -> oxyroot::Result<()> {

                use std::cell::RefCell;
                use std::rc::Rc;

                struct Channel<T> {
                    current: Rc<RefCell<Option<T>>>,
                }

                struct Sender<T> {
                    channel: Channel<T>,
                }

                impl<T> Sender<T> {
                    fn send(&self, value: Option<T>) {
                        let mut current = self.channel.current.borrow_mut();
                        *current = value;
                    }
                }

                struct Receiver<T> {
                    channel: Channel<T>,
                }

                pub fn make_channel<T>() -> (Sender<T>, Receiver<T>) {
                    let current = Rc::new(RefCell::new(None));
                    let channel = Channel {
                        current: current.clone(),
                    };

                    let sender = Sender { channel: channel };
                    let receiver = Receiver {
                        channel: Channel {
                            current: current.clone(),
                        },
                    };
                    (sender, receiver)
                }

                impl<T> Iterator for Receiver<T> {
                    type Item = T;

                    fn next(&mut self) -> Option<Self::Item> {
                        let mut current = self.channel.current.borrow_mut();
                        let ret = current.take();
                        ret
                    }
                }

                #send_recv

                let func = move |s: oxyroot::StateCallBack| {


                    match s {
                        oxyroot::StateCallBack::Before => {
                            match it.next() {
                                None => {
                                    #match_it_none
                                }
                                Some(struct_instance) => {
                                    #match_it_some
                                }
                            };
                        }
                        oxyroot::StateCallBack::Branch(_) => {}
                        oxyroot::StateCallBack::After => {}
                    }
                };

                #new_branch
                tree.add_callback(Box::new(func));

                Ok(())

            }

        }

    );

    expanded.into()
}

fn write_send_recv_for_write_to_tree(data: &Data) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let _field_type = &f.ty;

                    let sender_name = format_ident!("sender_{field_name}");
                    let recv_name = format_ident!("recv_{field_name}");

                    quote_spanned! {
                        f.span() => let (#sender_name, #recv_name) = make_channel();
                    }
                });
                quote!(#(#recurse)*)
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

fn write_match_it_some_for_write_to_tree(data: &Data) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let _field_type = &f.ty;

                    let sender_name = format_ident!("sender_{field_name}");
                    let _recv_name = format_ident!("recv_{field_name}");

                    quote_spanned! {
                        f.span() => #sender_name.send(Some(struct_instance.#field_name));
                    }
                });
                quote!(#(#recurse)*)
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

fn write_match_it_none_for_write_to_tree(data: &Data) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let _field_type = &f.ty;

                    let sender_name = format_ident!("sender_{field_name}");
                    let _recv_name = format_ident!("recv_{field_name}");

                    quote_spanned! {
                        f.span() => #sender_name.send(None);
                    }
                });
                quote!(#(#recurse)*)
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}

fn write_new_branch_for_write_to_tree(data: &Data) -> TokenStream {
    match &data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => {
                let recurse = fields.named.iter().map(|f| {
                    let field_name = f.ident.as_ref().unwrap();
                    let field_type = &f.ty;

                    let _sender_name = format_ident!("sender_{field_name}");
                    let recv_name = format_ident!("recv_{field_name}");

                    quote_spanned! {
                        f.span() => <#field_type>::to_branch_tree(#recv_name.into_iter(), tree, stringify!(#field_name).into())?;
                    }
                });
                quote!(#(#recurse)*)
            }
            Fields::Unnamed(_) => {
                unimplemented!("Unnamed")
            }
            Fields::Unit => {
                unimplemented!("Unit")
            }
        },
        Data::Enum(_) => {
            unimplemented!("Enum")
        }
        Data::Union(_) => {
            unimplemented!("Union")
        }
    }
}