dotscope 0.6.0

A high-performance, cross-platform framework for analyzing and reverse engineering .NET PE executables
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
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
//! High-level method builder for creating complete method definitions.
//!
//! This module provides [`MethodBuilder`] for creating complete method definitions
//! including metadata, signatures, parameters, and implementations. It orchestrates
//! the existing low-level builders to provide a fluent, high-level API.

use crate::{
    cilassembly::{ChangeRefRc, CilAssembly},
    metadata::{
        method::{MethodAccessFlags, MethodImplCodeType, MethodModifiers},
        signatures::{encode_method_signature, SignatureMethod, SignatureParameter, TypeSignature},
        tables::{MethodDefBuilder, ParamAttributes, ParamBuilder, TableId},
        token::Token,
    },
    Result,
};

use super::method_body::MethodBodyBuilder;

/// High-level builder for creating complete method definitions.
///
/// `MethodBuilder` provides a fluent API for creating methods with metadata,
/// signatures, parameters, and implementations. It composes the existing
/// low-level builders ([`crate::metadata::tables::MethodDefBuilder`],
/// [`crate::cilassembly::builders::MethodBodyBuilder`], etc.) to provide
/// a convenient high-level interface.
///
/// # Design
///
/// The builder follows a composition approach:
/// - Uses existing `MethodDefBuilder` for metadata table creation
/// - Uses `MethodBodyBuilder` for CIL implementation
/// - Uses existing signature builders for method signatures
/// - Orchestrates all components through `CilAssembly`
///
/// # Examples
///
/// ## Simple Static Method
///
/// ```rust,no_run
/// use dotscope::prelude::*;
/// use dotscope::MethodBuilder;
///
/// # fn example() -> dotscope::Result<()> {
/// # let view = CilAssemblyView::from_path("test.dll")?;
/// # let mut assembly = CilAssembly::new(view);
/// let method_token = MethodBuilder::new("Add")
///     .public()
///     .static_method()
///     .parameter("a", TypeSignature::I4)
///     .parameter("b", TypeSignature::I4)
///     .returns(TypeSignature::I4)
///     .implementation(|body| {
///         body.implementation(|asm| {
///             asm.ldarg_0()?
///                .ldarg_1()?
///                .add()?
///                .ret()?;
///             Ok(())
///         })
///     })
///     .build(&mut assembly)?;
/// # Ok(())
/// # }
/// ```
///
/// ## Instance Constructor
///
/// ```rust,no_run
/// use dotscope::MethodBuilder;
/// use dotscope::metadata::signatures::TypeSignature;
/// use dotscope::metadata::token::Token;
///
/// # fn example() -> dotscope::Result<()> {
/// # let view = dotscope::metadata::cilassemblyview::CilAssemblyView::from_path("test.dll")?;
/// # let mut assembly = dotscope::CilAssembly::new(view);
/// let ctor_token = MethodBuilder::constructor()
///     .parameter("name", TypeSignature::String)
///     .parameter("age", TypeSignature::I4)
///     .implementation(|body| {
///         body.implementation(|asm| {
///             // Call base constructor
///             asm.ldarg_0()?  // this
///                .call(Token::new(0x0A000001))? // base ctor token
///                // Initialize fields...
///                .ret()?;
///             Ok(())
///         })
///     })
///     .build(&mut assembly)?;
/// # Ok(())
/// # }
/// ```
///
/// ## Property Getter
///
/// ```rust,no_run
/// use dotscope::MethodBuilder;
/// use dotscope::metadata::signatures::TypeSignature;
/// use dotscope::metadata::token::Token;
///
/// # fn example() -> dotscope::Result<()> {
/// # let view = dotscope::metadata::cilassemblyview::CilAssemblyView::from_path("test.dll")?;
/// # let mut assembly = dotscope::CilAssembly::new(view);
/// let getter_token = MethodBuilder::property_getter("Name", TypeSignature::String)
///     .implementation(|body| {
///         body.implementation(|asm| {
///             asm.ldarg_0()?  // this
///                .ldfld(Token::new(0x04000001))? // field token
///                .ret()?;
///             Ok(())
///         })
///     })
///     .build(&mut assembly)?;
/// # Ok(())
/// # }
/// ```
///
/// ## P/Invoke Method with Custom Calling Convention
///
/// ```rust,no_run
/// use dotscope::MethodBuilder;
/// use dotscope::metadata::signatures::TypeSignature;
/// use dotscope::metadata::token::Token;
///
/// # fn example() -> dotscope::Result<()> {
/// # let view = dotscope::metadata::cilassemblyview::CilAssemblyView::from_path("test.dll")?;
/// # let mut assembly = dotscope::CilAssembly::new(view);
/// let pinvoke_token = MethodBuilder::new("GetLastError")
///     .public()
///     .static_method()
///     .calling_convention_stdcall() // Windows API calling convention
///     .returns(TypeSignature::I4)
///     .extern_method() // No IL implementation - native code
///     .build(&mut assembly)?;
/// # Ok(())
/// # }
/// ```
///
/// ## Variable Argument Method
///
/// ```rust,no_run
/// use dotscope::MethodBuilder;
/// use dotscope::metadata::signatures::TypeSignature;
/// use dotscope::metadata::token::Token;
///
/// # fn example() -> dotscope::Result<()> {
/// # let view = dotscope::metadata::cilassemblyview::CilAssemblyView::from_path("test.dll")?;
/// # let mut assembly = dotscope::CilAssembly::new(view);
/// let printf_token = MethodBuilder::new("printf")
///     .public()
///     .static_method()
///     .calling_convention_vararg() // Supports variable arguments
///     .parameter("format", TypeSignature::String)
///     .returns(TypeSignature::I4)
///     .extern_method()
///     .build(&mut assembly)?;
/// # Ok(())
/// # }
/// ```
pub struct MethodBuilder {
    /// Method name
    name: String,

    /// Access flags (public, private, etc.)
    access_flags: MethodAccessFlags,

    /// Method modifiers (static, virtual, etc.)
    modifiers: MethodModifiers,

    /// Implementation flags (IL, native, etc.)
    impl_flags: MethodImplCodeType,

    /// Return type
    return_type: TypeSignature,

    /// Parameters
    parameters: Vec<(String, TypeSignature)>,

    /// Method body builder
    body_builder: Option<MethodBodyBuilder>,

    /// Whether this method has a 'this' parameter
    has_this: bool,

    /// Calling convention: explicit 'this'
    explicit_this: bool,

    /// Calling convention: default managed
    default_calling_convention: bool,

    /// Calling convention: variable arguments
    vararg: bool,

    /// Calling convention: C declaration (cdecl)
    cdecl: bool,

    /// Calling convention: standard call (stdcall)
    stdcall: bool,

    /// Calling convention: this call (thiscall)
    thiscall: bool,

    /// Calling convention: fast call (fastcall)
    fastcall: bool,
}

impl MethodBuilder {
    /// Create a new method builder with the given name.
    ///
    /// # Arguments
    ///
    /// * `name` - Method name
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("MyMethod");
    /// ```
    #[must_use]
    pub fn new(name: &str) -> Self {
        Self {
            name: name.to_string(),
            access_flags: MethodAccessFlags::PRIVATE, // Default to private
            modifiers: MethodModifiers::empty(),
            impl_flags: MethodImplCodeType::IL,
            return_type: TypeSignature::Void,
            parameters: Vec::new(),
            body_builder: None,
            has_this: true, // Default to instance method
            explicit_this: false,
            default_calling_convention: true, // Default to managed calling convention
            vararg: false,
            cdecl: false,
            stdcall: false,
            thiscall: false,
            fastcall: false,
        }
    }

    /// Create a constructor method builder.
    ///
    /// This sets up the method with the appropriate name (".ctor"), flags,
    /// and return type for an instance constructor.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let ctor = MethodBuilder::constructor();
    /// ```
    #[must_use]
    pub fn constructor() -> Self {
        Self::new(".ctor").public().special_name().rtspecial_name()
    }

    /// Create a static constructor method builder.
    ///
    /// This sets up the method with the appropriate name (".cctor"), flags,
    /// and return type for a static constructor (type initializer).
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let static_ctor = MethodBuilder::static_constructor();
    /// ```
    #[must_use]
    pub fn static_constructor() -> Self {
        Self::new(".cctor")
            .private()
            .static_method()
            .special_name()
            .rtspecial_name()
    }

    /// Create a property getter method builder.
    ///
    /// This sets up the method with the appropriate name pattern ("get_PropertyName"),
    /// flags, and return type for a property getter.
    ///
    /// # Arguments
    ///
    /// * `property_name` - Name of the property
    /// * `return_type` - Type that the property returns
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    /// use dotscope::metadata::signatures::TypeSignature;
    ///
    /// let getter = MethodBuilder::property_getter("Name", TypeSignature::String);
    /// ```
    #[must_use]
    pub fn property_getter(property_name: &str, return_type: TypeSignature) -> Self {
        Self::new(&format!("get_{property_name}"))
            .public()
            .special_name()
            .returns(return_type)
    }

    /// Create a property setter method builder.
    ///
    /// This sets up the method with the appropriate name pattern ("set_PropertyName"),
    /// flags, and a value parameter for a property setter.
    ///
    /// # Arguments
    ///
    /// * `property_name` - Name of the property
    /// * `value_type` - Type of the property value
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    /// use dotscope::metadata::signatures::TypeSignature;
    ///
    /// let setter = MethodBuilder::property_setter("Name", TypeSignature::String);
    /// ```
    #[must_use]
    pub fn property_setter(property_name: &str, value_type: TypeSignature) -> Self {
        Self::new(&format!("set_{property_name}"))
            .public()
            .special_name()
            .parameter("value", value_type)
    }

    /// Create an event add method builder.
    ///
    /// This sets up the method with the appropriate name pattern ("add_EventName"),
    /// flags, and a delegate parameter for an event add accessor.
    ///
    /// # Arguments
    ///
    /// * `event_name` - The name of the event
    /// * `delegate_type` - The type of the event delegate
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    /// use dotscope::metadata::signatures::TypeSignature;
    ///
    /// let add_method = MethodBuilder::event_add("OnClick", TypeSignature::Object);
    /// ```
    #[must_use]
    pub fn event_add(event_name: &str, delegate_type: TypeSignature) -> Self {
        Self::new(&format!("add_{event_name}"))
            .public()
            .special_name()
            .parameter("value", delegate_type)
    }

    /// Create an event remove method builder.
    ///
    /// This sets up the method with the appropriate name pattern ("remove_EventName"),
    /// flags, and a delegate parameter for an event remove accessor.
    ///
    /// # Arguments
    ///
    /// * `event_name` - The name of the event
    /// * `delegate_type` - The type of the event delegate
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    /// use dotscope::metadata::signatures::TypeSignature;
    ///
    /// let remove_method = MethodBuilder::event_remove("OnClick", TypeSignature::Object);
    /// ```
    #[must_use]
    pub fn event_remove(event_name: &str, delegate_type: TypeSignature) -> Self {
        Self::new(&format!("remove_{event_name}"))
            .public()
            .special_name()
            .parameter("value", delegate_type)
    }

    /// Set the method as public.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").public();
    /// ```
    #[must_use]
    pub fn public(mut self) -> Self {
        self.access_flags = MethodAccessFlags::PUBLIC;
        self
    }

    /// Set the method as private.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").private();
    /// ```
    #[must_use]
    pub fn private(mut self) -> Self {
        self.access_flags = MethodAccessFlags::PRIVATE;
        self
    }

    /// Set the method as protected.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").protected();
    /// ```
    #[must_use]
    pub fn protected(mut self) -> Self {
        self.access_flags = MethodAccessFlags::FAMILY;
        self
    }

    /// Set the method as internal (assembly-level access).
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").internal();
    /// ```
    #[must_use]
    pub fn internal(mut self) -> Self {
        self.access_flags = MethodAccessFlags::ASSEMBLY;
        self
    }

    /// Set the method as static.
    ///
    /// Static methods do not have a 'this' parameter and belong to the type
    /// rather than an instance.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").static_method();
    /// ```
    #[must_use]
    pub fn static_method(mut self) -> Self {
        self.modifiers |= MethodModifiers::STATIC;
        self.has_this = false;
        self
    }

    /// Set the method as virtual.
    ///
    /// Virtual methods can be overridden in derived classes.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").virtual_method();
    /// ```
    #[must_use]
    pub fn virtual_method(mut self) -> Self {
        self.modifiers |= MethodModifiers::VIRTUAL;
        self
    }

    /// Set the method as abstract.
    ///
    /// Abstract methods have no implementation and must be overridden.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").abstract_method();
    /// ```
    #[must_use]
    pub fn abstract_method(mut self) -> Self {
        self.modifiers |= MethodModifiers::ABSTRACT;
        self
    }

    /// Set the method as sealed (final).
    ///
    /// Sealed methods cannot be overridden further.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").sealed();
    /// ```
    #[must_use]
    pub fn sealed(mut self) -> Self {
        self.modifiers |= MethodModifiers::FINAL;
        self
    }

    /// Mark the method as having a special name.
    ///
    /// This is typically used for constructors, property accessors, etc.
    #[must_use]
    pub fn special_name(mut self) -> Self {
        self.modifiers |= MethodModifiers::SPECIAL_NAME;
        self
    }

    /// Mark the method as having a runtime special name.  
    ///
    /// This is typically used for constructors and other runtime-special methods.
    #[must_use]
    pub fn rtspecial_name(mut self) -> Self {
        self.modifiers |= MethodModifiers::RTSPECIAL_NAME;
        self
    }

    /// Set the method to use the default managed calling convention.
    ///
    /// This is the standard calling convention for .NET methods and is enabled by default.
    /// Most managed methods should use this calling convention.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Test").calling_convention_default();
    /// ```
    #[must_use]
    pub fn calling_convention_default(mut self) -> Self {
        self.clear_calling_conventions();
        self.default_calling_convention = true;
        self
    }

    /// Set the method to use the variable argument calling convention.
    ///
    /// Methods using this calling convention can accept additional arguments
    /// beyond those declared in the signature (similar to C's variadic functions).
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("Printf").calling_convention_vararg();
    /// ```
    #[must_use]
    pub fn calling_convention_vararg(mut self) -> Self {
        self.clear_calling_conventions();
        self.vararg = true;
        self
    }

    /// Set the method to use the C declaration calling convention (cdecl).
    ///
    /// This calling convention is used for interoperability with native C functions.
    /// Arguments are pushed right-to-left and the caller cleans up the stack.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("CFunction").calling_convention_cdecl();
    /// ```
    #[must_use]
    pub fn calling_convention_cdecl(mut self) -> Self {
        self.clear_calling_conventions();
        self.cdecl = true;
        self
    }

    /// Set the method to use the standard call calling convention (stdcall).
    ///
    /// This calling convention is commonly used for Windows API functions.
    /// Arguments are pushed right-to-left and the callee cleans up the stack.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("WinAPI").calling_convention_stdcall();
    /// ```
    #[must_use]
    pub fn calling_convention_stdcall(mut self) -> Self {
        self.clear_calling_conventions();
        self.stdcall = true;
        self
    }

    /// Set the method to use the this call calling convention (thiscall).
    ///
    /// This calling convention is used for C++ member functions.
    /// The 'this' pointer is passed in a register (typically ECX on x86).
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("CppMethod").calling_convention_thiscall();
    /// ```
    #[must_use]
    pub fn calling_convention_thiscall(mut self) -> Self {
        self.clear_calling_conventions();
        self.thiscall = true;
        self
    }

    /// Set the method to use the fast call calling convention (fastcall).
    ///
    /// This calling convention uses registers for parameter passing where possible,
    /// providing better performance for frequently called methods.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("FastMethod").calling_convention_fastcall();
    /// ```
    #[must_use]
    pub fn calling_convention_fastcall(mut self) -> Self {
        self.clear_calling_conventions();
        self.fastcall = true;
        self
    }

    /// Set the method to use explicit 'this' parameter.
    ///
    /// When enabled, the 'this' parameter is explicitly declared in the method signature
    /// rather than being implicit. This is rarely used in managed code.
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("ExplicitThis").explicit_this();
    /// ```
    #[must_use]
    pub fn explicit_this(mut self) -> Self {
        self.explicit_this = true;
        self
    }

    /// Set the return type of the method.
    ///
    /// # Arguments
    ///
    /// * `return_type` - Type signature for the return value
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    /// use dotscope::metadata::signatures::TypeSignature;
    ///
    /// let builder = MethodBuilder::new("GetValue").returns(TypeSignature::I4);
    /// ```
    #[must_use]
    pub fn returns(mut self, return_type: TypeSignature) -> Self {
        self.return_type = return_type;
        self
    }

    /// Add a parameter to the method.
    ///
    /// Parameters are added in order and will be accessible via ldarg instructions
    /// starting from index 0 (or 1 for instance methods, where 0 is 'this').
    ///
    /// # Arguments
    ///
    /// * `name` - Parameter name
    /// * `param_type` - Parameter type signature
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    /// use dotscope::metadata::signatures::TypeSignature;
    ///
    /// let builder = MethodBuilder::new("Add")
    ///     .parameter("a", TypeSignature::I4)
    ///     .parameter("b", TypeSignature::I4);
    /// ```
    #[must_use]
    pub fn parameter(mut self, name: &str, param_type: TypeSignature) -> Self {
        self.parameters.push((name.to_string(), param_type));
        self
    }

    /// Set the method implementation using a method body builder.
    ///
    /// This defines what the method actually does. The closure receives a
    /// `MethodBodyBuilder` that can be configured with locals and implementation.
    ///
    /// # Arguments
    ///
    /// * `f` - Closure that configures the method body
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// # fn example() -> dotscope::Result<()> {
    /// # let view = dotscope::metadata::cilassemblyview::CilAssemblyView::from_path("test.dll")?;
    /// # let mut assembly = dotscope::CilAssembly::new(view);
    /// let method = MethodBuilder::new("Test")
    ///     .implementation(|body| {
    ///         body.local("temp", dotscope::metadata::signatures::TypeSignature::I4)
    ///             .implementation(|asm| {
    ///                 asm.ldc_i4_const(42)?
    ///                    .stloc_0()?
    ///                    .ldloc_0()?
    ///                    .ret()?;
    ///                 Ok(())
    ///             })
    ///     })
    ///     .build(&mut assembly)?;
    /// # Ok(())
    /// # }
    /// ```
    #[must_use]
    pub fn implementation<F>(mut self, f: F) -> Self
    where
        F: FnOnce(MethodBodyBuilder) -> MethodBodyBuilder,
    {
        let body_builder = f(MethodBodyBuilder::new());
        self.body_builder = Some(body_builder);
        self
    }

    /// Mark this method as extern (no implementation).
    ///
    /// Extern methods are implemented outside of IL (e.g., native code,
    /// runtime-provided, etc.).
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use dotscope::MethodBuilder;
    ///
    /// let builder = MethodBuilder::new("ExternalMethod").extern_method();
    /// ```
    #[must_use]
    pub fn extern_method(mut self) -> Self {
        self.body_builder = None; // No IL implementation
        self
    }

    /// Build the complete method and add it to the assembly.
    ///
    /// This method orchestrates the creation of:
    /// 1. Method signature from return type and parameters
    /// 2. Method body from the body builder (if present)
    /// 3. Parameter table entries
    /// 4. Method definition table entry
    ///
    /// # Arguments
    ///
    /// * `assembly` - CIL assembly for managing the metadata
    ///
    /// # Returns
    ///
    /// A token representing the newly created method definition.
    ///
    /// # Errors
    ///
    /// Returns an error if method creation fails at any step.
    pub fn build(self, assembly: &mut CilAssembly) -> Result<ChangeRefRc> {
        // Extract values needed for both signature and parameter creation
        let return_type = self.return_type.clone();
        let parameters = self.parameters.clone();
        let has_this = self.has_this;

        // Create method signature
        let signature = SignatureMethod {
            has_this,
            explicit_this: self.explicit_this,
            default: self.default_calling_convention,
            vararg: self.vararg,
            cdecl: self.cdecl,
            stdcall: self.stdcall,
            thiscall: self.thiscall,
            fastcall: self.fastcall,
            param_count_generic: 0,
            param_count: u32::try_from(parameters.len())
                .map_err(|_| malformed_error!("Method parameter count exceeds u32 range"))?,
            return_type: SignatureParameter {
                modifiers: Vec::new(),
                by_ref: false,
                base: return_type.clone(),
            },
            params: parameters
                .iter()
                .map(|(_, param_type)| SignatureParameter {
                    modifiers: Vec::new(),
                    by_ref: false,
                    base: param_type.clone(),
                })
                .collect(),
            varargs: Vec::new(),
        };

        let signature_bytes = encode_method_signature(&signature)?;

        // Create method body if we have an implementation
        let (rva, _local_sig_token) = if let Some(body_builder) = self.body_builder {
            let (body_bytes, local_sig_token) = body_builder.build(assembly)?;

            // Store method body through CilAssembly and get a placeholder RVA.
            // This placeholder will be resolved to the actual RVA during PE writing
            // when the real code section layout is determined.
            let placeholder_rva = assembly.store_method_body(body_bytes);

            (placeholder_rva, local_sig_token)
        } else {
            // Abstract or extern method - no implementation
            (0u32, Token::new(0))
        };

        // Combine all flags for the method definition
        let combined_flags = self.access_flags.bits() | self.modifiers.bits();

        // Get the next parameter table index (where our parameters will start)
        let param_start_index = assembly.next_rid(TableId::Param)?;

        for (sequence, (name, _param_type)) in parameters.iter().enumerate() {
            let param_sequence = u32::try_from(sequence + 1)
                .map_err(|_| malformed_error!("Parameter sequence exceeds u32 range"))?; // Parameters start at sequence 1

            ParamBuilder::new()
                .name(name)
                .flags(ParamAttributes::IN) // Default to IN parameter
                .sequence(param_sequence)
                .build(assembly)?;
        }

        // Create the method definition with the correct parameter list index
        let method_token = MethodDefBuilder::new()
            .name(&self.name)
            .flags(combined_flags)
            .impl_flags(self.impl_flags.bits())
            .signature(&signature_bytes)
            .rva(rva)
            .param_list(param_start_index) // Point to our parameter table entries
            .build(assembly)?;

        Ok(method_token)
    }

    /// Helper method to clear all calling convention flags.
    ///
    /// This ensures only one calling convention is active at a time.
    fn clear_calling_conventions(&mut self) {
        self.default_calling_convention = false;
        self.vararg = false;
        self.cdecl = false;
        self.stdcall = false;
        self.thiscall = false;
        self.fastcall = false;
    }
}

impl Default for MethodBuilder {
    fn default() -> Self {
        Self::new("DefaultMethod")
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{
        cilassembly::{ChangeRefKind, CilAssembly},
        metadata::{cilassemblyview::CilAssemblyView, signatures::TypeSignature, tables::TableId},
    };
    use std::path::PathBuf;

    fn get_test_assembly() -> Result<CilAssembly> {
        let path = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/samples/WindowsBase.dll");
        let view = CilAssemblyView::from_path(&path)?;
        Ok(CilAssembly::new(view))
    }

    #[test]
    fn test_method_builder_basic() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let method_ref = MethodBuilder::new("TestMethod")
            .public()
            .static_method()
            .returns(TypeSignature::Void)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.nop()?;
                    asm.ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        // Should create a valid method reference
        assert_eq!(
            method_ref.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_method_builder_with_parameters() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let method_ref = MethodBuilder::new("Add")
            .public()
            .static_method()
            .parameter("a", TypeSignature::I4)
            .parameter("b", TypeSignature::I4)
            .returns(TypeSignature::I4)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.ldarg_0()?.ldarg_1()?.add()?.ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(
            method_ref.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_constructor_builder() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let ctor_ref = MethodBuilder::constructor()
            .parameter("name", TypeSignature::String)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.ldarg_0()? // this
                        .call(Token::new(0x0A000001))? // base ctor
                        .ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(ctor_ref.kind(), ChangeRefKind::TableRow(TableId::MethodDef));

        Ok(())
    }

    #[test]
    fn test_property_getter() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let getter_ref = MethodBuilder::property_getter("Name", TypeSignature::String)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.ldarg_0()?.ldfld(Token::new(0x04000001))?.ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(
            getter_ref.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_property_setter() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let setter_ref = MethodBuilder::property_setter("Name", TypeSignature::String)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.ldarg_0()? // this
                        .ldarg_1()? // value
                        .stfld(Token::new(0x04000001))?
                        .ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(
            setter_ref.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_abstract_method() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let method_ref = MethodBuilder::new("AbstractMethod")
            .public()
            .abstract_method()
            .virtual_method()
            .returns(TypeSignature::I4)
            .extern_method() // No implementation
            .build(&mut assembly)?;

        assert_eq!(
            method_ref.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_static_constructor() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let static_ctor_ref = MethodBuilder::static_constructor()
            .implementation(|body| {
                body.implementation(|asm| {
                    // Initialize static fields
                    asm.ldc_i4_const(42)?
                        .stsfld(Token::new(0x04000001))?
                        .ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(
            static_ctor_ref.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_method_with_locals() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let method_ref = MethodBuilder::new("ComplexMethod")
            .public()
            .static_method()
            .parameter("input", TypeSignature::I4)
            .returns(TypeSignature::I4)
            .implementation(|body| {
                body.local("temp", TypeSignature::I4)
                    .local("result", TypeSignature::I4)
                    .implementation(|asm| {
                        asm.ldarg_0()? // Load input
                            .stloc_0()? // Store to temp
                            .ldloc_0()? // Load temp
                            .ldc_i4_1()? // Load 1
                            .add()? // Add 1
                            .stloc_1()? // Store to result
                            .ldloc_1()? // Load result
                            .ret()?; // Return result
                        Ok(())
                    })
            })
            .build(&mut assembly)?;

        assert_eq!(
            method_ref.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_method_builder_calling_conventions() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        // Test cdecl calling convention
        let cdecl_method = MethodBuilder::new("CdeclMethod")
            .public()
            .static_method()
            .calling_convention_cdecl()
            .parameter("x", TypeSignature::I4)
            .returns(TypeSignature::I4)
            .extern_method() // No implementation for P/Invoke
            .build(&mut assembly)?;

        assert_eq!(
            cdecl_method.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        // Test stdcall calling convention
        let stdcall_method = MethodBuilder::new("StdcallMethod")
            .public()
            .static_method()
            .calling_convention_stdcall()
            .parameter("x", TypeSignature::I4)
            .returns(TypeSignature::I4)
            .extern_method()
            .build(&mut assembly)?;

        assert_eq!(
            stdcall_method.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        // Test default calling convention (should work for managed methods)
        let default_method = MethodBuilder::new("DefaultMethod")
            .public()
            .static_method()
            .calling_convention_default()
            .parameter("x", TypeSignature::I4)
            .returns(TypeSignature::I4)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.ldarg_0()?.ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(
            default_method.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_method_builder_vararg_calling_convention() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let vararg_method = MethodBuilder::new("VarargMethod")
            .public()
            .static_method()
            .calling_convention_vararg()
            .parameter("format", TypeSignature::String)
            .returns(TypeSignature::Void)
            .extern_method() // Vararg methods are typically extern
            .build(&mut assembly)?;

        assert_eq!(
            vararg_method.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_method_builder_explicit_this() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let explicit_this_method = MethodBuilder::new("ExplicitThisMethod")
            .public()
            .explicit_this()
            .parameter("value", TypeSignature::I4)
            .returns(TypeSignature::Void)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.ldarg_0()? // Load explicit 'this'
                        .ldarg_1()? // Load value parameter
                        .stfld(Token::new(0x04000001))? // Store to field
                        .ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(
            explicit_this_method.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        );

        Ok(())
    }

    #[test]
    fn test_method_builder_calling_convention_switching() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        // Test that setting a new calling convention clears the previous one
        let method = MethodBuilder::new("SwitchingMethod")
            .public()
            .static_method()
            .calling_convention_cdecl() // Set cdecl first
            .calling_convention_stdcall() // Switch to stdcall (should clear cdecl)
            .parameter("x", TypeSignature::I4)
            .returns(TypeSignature::I4)
            .extern_method()
            .build(&mut assembly)?;

        assert_eq!(method.kind(), ChangeRefKind::TableRow(TableId::MethodDef));

        Ok(())
    }

    #[test]
    fn test_event_add_method() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let add_method = MethodBuilder::event_add("OnClick", TypeSignature::Object)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.ldarg_0()? // Load 'this'
                        .ldfld(Token::new(0x04000001))? // Load current delegate
                        .ldarg_1()? // Load new delegate
                        .call(Token::new(0x0A000001))? // Call Delegate.Combine
                        .stfld(Token::new(0x04000001))? // Store combined delegate
                        .ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(
            add_method.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        ); // MethodDef table

        Ok(())
    }

    #[test]
    fn test_event_remove_method() -> Result<()> {
        let mut assembly = get_test_assembly()?;

        let remove_method = MethodBuilder::event_remove("OnClick", TypeSignature::Object)
            .implementation(|body| {
                body.implementation(|asm| {
                    asm.ldarg_0()? // Load 'this'
                        .ldfld(Token::new(0x04000001))? // Load current delegate
                        .ldarg_1()? // Load delegate to remove
                        .call(Token::new(0x0A000002))? // Call Delegate.Remove
                        .stfld(Token::new(0x04000001))? // Store updated delegate
                        .ret()?;
                    Ok(())
                })
            })
            .build(&mut assembly)?;

        assert_eq!(
            remove_method.kind(),
            ChangeRefKind::TableRow(TableId::MethodDef)
        ); // MethodDef table

        Ok(())
    }
}