Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CppFullMemberFormatter.cs « CppFormatters « Formatters « Updater « Mono.Documentation « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 516c9a93a96f74413be2c73453941e000425754a (plain)
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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using Mono.Cecil;
using Mono.Collections.Generic;
using Mono.Documentation.Util;

namespace Mono.Documentation.Updater.Formatters.CppFormatters
{
    public class CppFullMemberFormatter : MemberFormatter
    {
        protected virtual bool AppendHatOnReturn => true;

        public override string Language => Consts.CppCli;

        protected override string RefTypeModifier => " %";

        protected virtual string HatModifier => " ^";

        protected override string NestedTypeSeparator => "::";

        protected override bool ShouldStripModFromTypeName => false;

        public CppFullMemberFormatter() : this(null) {}
        public CppFullMemberFormatter(TypeMap map) : base(map) { }

        protected virtual IEnumerable<string> NoHatTypes => new List<string>()
        {
            "System.Void",
            "Mono.Cecil.GenericParameter"
        };

        protected override StringBuilder AppendNamespace (StringBuilder buf, TypeReference type)
        {
            string ns = DocUtils.GetNamespace(type, NestedTypeSeparator);
            if (GetCppType(type.FullName) == null && !string.IsNullOrEmpty(ns) && ns != "System")
                buf.Append(ns).Append(NestedTypeSeparator);
            return buf;
        }
        
        protected virtual string GetCppType (string t)
        {
            // make sure there are no modifiers in the type string (add them back before returning)
            string typeToCompare = t;
            string[] splitType = null;
            if (t.Contains (' '))
            {
                splitType = t.Split (' ');
                typeToCompare = splitType[0];
                //for (int i = 1; i < splitType.Length; i++)
                //{
                //    var str = splitType[i];
                //    if (str == "modopt(System.Runtime.CompilerServices.IsLong)" && typeToCompare == "System.Int32")
                //        return "long";
                //    if (str == "modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte)" && typeToCompare == "System.SByte")
                //        return "char";
                //    //if (typeToCompare == "System.Byte")
                //    //    return "unsigned char";
                //    //if (typeToCompare == "System.SByte")
                //    //    return "signed char";
                //}

                foreach (var str in splitType)
                {
                    if (str == "modopt(System.Runtime.CompilerServices.IsLong)" && typeToCompare == "System.Int32")
                        return "long";
                    if (str == "modopt(System.Runtime.CompilerServices.IsSignUnspecifiedByte)" && typeToCompare == "System.SByte")
                        return "char";
                    //if (typeToCompare == "System.Byte")
                    //    return "unsigned char";
                    //if (typeToCompare == "System.SByte")
                    //    return "signed char";
                }

            }
            
            switch (typeToCompare)
            {
                case "System.Byte": typeToCompare = "System::Byte"; break;
                case "System.SByte": typeToCompare = "System::SByte"; break;
                case "System.Int16": typeToCompare = "short"; break;
                case "System.Int32": typeToCompare = "int"; break;
                case "System.Int64": typeToCompare = "long"; break;

                case "System.UInt16": typeToCompare = "System::UInt16"; break;
                case "System.UInt32": typeToCompare = "System::UInt32"; break;
                case "System.UInt64": typeToCompare = "System::UInt64"; break;

                case "System.Single": typeToCompare = "float"; break;
                case "System.Double": typeToCompare = "double"; break;
                case "System.Decimal": typeToCompare = "System::Decimal"; break;
                case "System.Boolean": typeToCompare = "bool"; break;
                case "System.Char": typeToCompare = "char"; break;
                case "System.Void": typeToCompare = "void"; break;
                case "System.String": typeToCompare = "System::String"; break;
                case "System.Object": typeToCompare = "System::Object"; break;
            }

            if (splitType != null)
            {
                // re-add modreq/modopt if it was there
                splitType[0] = typeToCompare;
                typeToCompare = string.Join (" ", splitType);
            }
            return typeToCompare == t ? null : typeToCompare;
        }

        protected override StringBuilder AppendTypeName (StringBuilder buf, TypeReference type, IAttributeParserContext context)
        {
            string typeFullName = type.FullName;
            if (string.IsNullOrWhiteSpace (typeFullName))
                return buf;

            string cppType = GetCppType(typeFullName);
            if (cppType != null)
            {
                return buf.Append(cppType);
            }

            return base.AppendTypeName(buf, type, context);
        }
       
        public override string GetDeclaration(TypeReference tref)
        {
             if (!IsSupported(tref))
                return null;
             
            TypeDefinition def = tref.Resolve();
            return def != null 
                ? GetTypeDeclaration(def) 
                : GetTypeNameWithOptions(tref, !AppendHatOnReturn, false);
        }

        protected override string GetTypeDeclaration (TypeDefinition type)
        {
            string visibility = GetTypeVisibility (type.Attributes);
            if (visibility == null)
                return null;

            StringBuilder buf = new StringBuilder ();
            
            var genericParamList = GetTypeSpecifiGenericParameters(type);

            if (!visibility.Contains(":"))
            {
                AppendGenericItem(buf, genericParamList);
                AppendGenericTypeConstraints(buf, type);

            }

            buf.Append(visibility);
            buf.Append(" ");

            if (visibility.Contains(":"))
            {
                AppendGenericItem(buf, genericParamList);
                AppendGenericTypeConstraints(buf, type);
            }

            CppFullMemberFormatter full = new CppFullMemberFormatter (this.TypeMap);

            if (DocUtils.IsDelegate (type))
            {
                buf.Append("delegate ");
                MethodDefinition invoke = type.GetMethod ("Invoke");
                buf.Append(full.GetNameWithOptions(invoke.ReturnType));
                buf.Append(" ");
                buf.Append(GetNameWithOptions(type, false, false));
                AppendParameters (buf, invoke, invoke.Parameters);
                buf.Append(";");

                return buf.ToString ();
            }
            
            buf.Append(GetTypeKind (type));
            buf.Append(" ");
            var cppType = GetCppType(type.FullName);
            buf.Append(cppType == null
                    ? GetNameWithOptions(type, false, false)
                    : cppType);

            if (type.IsAbstract && !type.IsInterface)
                buf.Append(" abstract");
            if (type.IsSealed && !DocUtils.IsDelegate(type) && !type.IsValueType)
                buf.Append(" sealed");

            if (!type.IsEnum)
            {
                TypeReference basetype = type.BaseType;
                if (basetype != null && basetype.FullName == "System.Object" || type.IsValueType)   // FIXME
                    basetype = null;

                List<string> interfaceNames = DocUtils.GetUserImplementedInterfaces (type)
                        .Select (iface => full.GetNameWithOptions(iface, true, false))
                        .OrderBy (s => s)
                        .ToList ();

                if (basetype != null || interfaceNames.Count > 0)
                    buf.Append(" : ");

                if (basetype != null)
                {
                    buf.Append(full.GetNameWithOptions(basetype, true, false));
                    if (interfaceNames.Count > 0)
                        buf.Append(", ");
                }

                for (int i = 0; i < interfaceNames.Count; i++)
                {
                    if (i != 0)
                        buf.Append(", ");
                    buf.Append(interfaceNames[i]);
                }
            }

            return buf.ToString ();
        }

        protected virtual IList<GenericParameter> GetTypeSpecifiGenericParameters(TypeDefinition type)
        {
            var returnItems = new Collection<GenericParameter>();

            List<TypeReference> decls = DocUtils.GetDeclaringTypes(type);
            List<TypeReference> genArgs = GetGenericArguments(type);
            int argIndex = 0;
            int previouslyAppliedCount = 0;
            
            var lastItem = decls.Last();

            foreach (var decl in decls)
            {
                TypeReference declDef = decl.Resolve() ?? decl;

                int argumentCount = DocUtils.GetGenericArgumentCount(declDef);
                int countLeftUnupplied = argumentCount - previouslyAppliedCount;
                previouslyAppliedCount = argumentCount;

                if (decl != lastItem)
                {
                    argIndex = argIndex + argumentCount;
                }

                if (countLeftUnupplied > 0 && decl==lastItem)
                {

                    for (int i = 0; i < countLeftUnupplied; ++i)
                    {
                        returnItems.Add((GenericParameter)genArgs[argIndex++]);
                    }
                }
            }

            return returnItems;
        }

        protected virtual string GetTypeKind (TypeDefinition t)
        {
            if (t.IsEnum)
                return "enum class";
            if (t.IsValueType)
                //pure struct is unmanaged so cannot be used in managed context
                return "value class";
            if (t.IsClass || t.FullName == "System.Enum")
                return "ref class";
            if (t.IsInterface)
                return "interface class";
            throw new ArgumentException (t.FullName);
        }

        protected virtual string GetTypeNameWithOptions(TypeReference type, bool appendHat, bool appendGeneric = true)
        {
            var typeName = GetTypeName(type, EmptyAttributeParserContext.Empty(), appendGeneric);
            var hatTypeName =
                !type.IsByReference && !type.IsPointer
                    ? AppendHat(typeName, type, appendHat)
                    : typeName;

            return hatTypeName;
        }

        protected virtual string AppendHat(string stringToApply, TypeReference type, bool appendHat = true)
        {
            var buffer = new StringBuilder(stringToApply);
            AppendHat(buffer, type, appendHat);

            return buffer.ToString();
        }

        protected virtual StringBuilder AppendHat(StringBuilder buffer, TypeReference type, bool appendHat = true)
        {
            //no hat for value type with modopt (like short, which is represented as Int32 with modopt value )
            if (!type.IsArray && type.GetElementType().IsValueType && type.FullName.Contains("modopt"))
                return buffer;

            if (type is PointerType || type is ByReferenceType)
            {
                var typeToCheck = type is TypeSpecification
                    ? ((TypeSpecification)type).ElementType
                    :type.GetElementType();
                if (!typeToCheck.IsValueType
                    && !typeToCheck.IsPointer
                    && !NoHatTypes.Contains(typeToCheck.FullName)
                    //check for generic type
                    && !NoHatTypes.Contains(typeToCheck.GetType().FullName)
                )
                {
                    buffer.Append(HatModifier);
                }
                return buffer;
            }
            
            if ( !type.IsValueType 
                //is checked to skip hat for type declaration
                && appendHat
                //check for standart types
                && !NoHatTypes.Contains(type.FullName) 
                //check for generic type
                && !NoHatTypes.Contains(type.GetType().FullName)
                
                )
            {
               //add handler for reference types to have managed context
               buffer.Append(HatModifier);
            }

            return buffer;
        }

        protected virtual string GetTypeVisibility (TypeAttributes ta)
        {
            switch (ta & TypeAttributes.VisibilityMask)
            {
                case TypeAttributes.Public:
                    return "public";
                case TypeAttributes.NestedPublic:
                    return "public:";

                case TypeAttributes.NestedFamORAssem:
                    return "public protected";
                case TypeAttributes.NestedFamily:
                    return "protected:";

                default:
                    return null;
            }
        }

        protected override StringBuilder AppendGenericTypeConstraints (StringBuilder buf, TypeReference type)
        {
            if (type.GenericParameters.Count == 0)
                return buf;
            return AppendConstraints (buf, type.GenericParameters);
        }
        
        private StringBuilder AppendConstraints (StringBuilder buf, IList<GenericParameter> genArgs)
        {
            foreach (GenericParameter genArg in genArgs)
            {
                GenericParameterAttributes attrs = genArg.Attributes;
#if NEW_CECIL
                Mono.Collections.Generic.Collection<GenericParameterConstraint> constraints = genArg.Constraints;
#else
                IList<TypeReference> constraints = genArg.Constraints;
#endif
                if (attrs == GenericParameterAttributes.NonVariant && constraints.Count == 0)
                    continue;

                bool isref = (attrs & GenericParameterAttributes.ReferenceTypeConstraint) != 0;
                bool isvt = (attrs & GenericParameterAttributes.NotNullableValueTypeConstraint) != 0;
                bool isnew = (attrs & GenericParameterAttributes.DefaultConstructorConstraint) != 0;
                bool comma = false;

                if (!isref && !isvt && !isnew && constraints.Count == 0)
                    continue;
                buf.Append(" where ").Append(genArg.Name).Append(" : ");
                if (isref)
                {
                    buf.Append("class");
                    comma = true;
                }
                else if (isvt)
                {
                    buf.Append("value class");
                    comma = true;
                }
                if (constraints.Count > 0 && !isvt)
                {
                    if (comma)
                        buf.Append(", ");

#if NEW_CECIL
                    buf.Append(GetTypeName (constraints[0].ConstraintType));
                    for (int i = 1; i < constraints.Count; ++i)
                        buf.Append(", ").Append(GetTypeName (constraints[i].ConstraintType));
#else
                    buf.Append(GetTypeName (constraints[0]));
                    for (int i = 1; i < constraints.Count; ++i)
                        buf.Append(", ").Append(GetTypeName (constraints[i]));
#endif
                }
                if (isnew && !isvt)
                {
                    if (comma)
                        buf.Append(", ");
                    buf.Append("gcnew()");
                }
            }
            return buf;
        }

        protected override string GetConstructorDeclaration (MethodDefinition constructor)
        {
            StringBuilder buf = new StringBuilder ();
            AppendVisibility (buf, constructor);
            

            buf.Append(' ');

            if (constructor.IsStatic)
                buf.Append("static ");

            base.AppendTypeName(buf, constructor.DeclaringType.Name);
            AppendParameters(buf, constructor, constructor.Parameters);
            buf.Append(';');

            return buf.ToString ();
        }

        protected override string GetMethodDeclaration (MethodDefinition method)
        {
            if (method.HasCustomAttributes && method.CustomAttributes.Any(
                    ca => ca.GetDeclaringType() == "System.Diagnostics.Contracts.ContractInvariantMethodAttribute"))
                return null;

            // Special signature for destructors.
            if (method.Name == "Finalize" && method.Parameters.Count == 0)
                return GetFinalizerName(method);

            StringBuilder buf = new StringBuilder();

            AppendVisibility(buf, method);
            AppendGenericMethod(buf, method);
            AppendGenericMethodConstraints(buf, method);

            if (DocUtils.IsExtensionMethod(method))
            {
                //no notion of Extension method; needs to mark with attribute and call as standard static method
                buf.Append("[System::Runtime::CompilerServices::Extension]").Append(GetLineEnding());
            }

            AppendModifiers(buf, method);

            if (buf.Length != 0)
                buf.Append(" ");

            buf.Append(GetTypeNameWithOptions(method.ReturnType, AppendHatOnReturn)).Append(" ");

            AppendMethodName(buf, method);
            AppendParameters(buf, method, method.Parameters);
            AppendExplisitImplementationMethod(buf, method);

            return buf.Append(";").ToString();
        }

        protected virtual StringBuilder AppendExplisitImplementationMethod(StringBuilder buf, MethodDefinition method)
        {
            if (method.HasOverrides)
            {
                //apply logic for explicit implementation om interface methods
                var interfaceMethodReference = method.Overrides.FirstOrDefault();
                buf.Append(" = ");
                buf.Append(GetTypeNameWithOptions(interfaceMethodReference?.DeclaringType, !AppendHatOnReturn))
                    .Append(NestedTypeSeparator);
                buf.Append(interfaceMethodReference?.Name);
            }
            return buf;
        }

        protected override StringBuilder AppendMethodName(StringBuilder buf, MethodDefinition method)
        {
            if (!method.Name.StartsWith("op_", StringComparison.Ordinal))
                return base.AppendMethodName(buf, method);

            // this is an operator
            switch (method.Name)
            {
                case "op_Implicit":
                case "op_Explicit":
                    buf.Length--; // remove the last space, which assumes a member name is coming
                    return buf;
                case "op_Addition":
                case "op_UnaryPlus":
                    return buf.Append("operator +");
                case "op_Subtraction":
                case "op_UnaryNegation":
                    return buf.Append("operator -");
                case "op_Division":
                    return buf.Append("operator /");
                case "op_Multiply":
                    return buf.Append("operator *");
                case "op_Modulus":
                    return buf.Append("operator %");
                case "op_BitwiseAnd":
                    return buf.Append("operator &");
                case "op_BitwiseOr":
                    return buf.Append("operator |");
                case "op_ExclusiveOr":
                    return buf.Append("operator ^");
                case "op_LeftShift":
                    return buf.Append("operator <<");
                case "op_RightShift":
                    return buf.Append("operator >>");
                case "op_LogicalNot":
                    return buf.Append("operator !");
                case "op_OnesComplement":
                    return buf.Append("operator ~");
                case "op_Decrement":
                    return buf.Append("operator --");
                case "op_Increment":
                    return buf.Append("operator ++");
                case "op_True":
                    return buf.Append("operator true");
                case "op_False":
                    return buf.Append("operator false");
                case "op_Equality":
                    return buf.Append("operator ==");
                case "op_Inequality":
                    return buf.Append("operator !=");
                case "op_LessThan":
                    return buf.Append("operator <");
                case "op_LessThanOrEqual":
                    return buf.Append("operator <=");
                case "op_GreaterThan":
                    return buf.Append("operator >");
                case "op_GreaterThanOrEqual":
                    return buf.Append("operator >=");
                default:
                    return base.AppendMethodName(buf, method);
            }

        }

        protected override StringBuilder AppendGenericMethodConstraints (StringBuilder buf, MethodDefinition method)
        {
            if (method.GenericParameters.Count == 0)
                return buf;
            return AppendConstraints (buf, method.GenericParameters);
        }

        protected override StringBuilder AppendGenericType(StringBuilder buf, TypeReference type, IAttributeParserContext context, bool appendGeneric = true, bool useTypeProjection = false, bool isTypeofOperator = false)
        {
            List<TypeReference> decls = DocUtils.GetDeclaringTypes(
                type is GenericInstanceType ? type.GetElementType() : type);
            List<TypeReference> genArgs = GetGenericArguments(type);
            int argIndex = 0;
            int previouslyAppliedCount = 0;
            bool insertNested = false;
            foreach (var decl in decls)
            {
                TypeReference declDef;
                try
                {
                    declDef = decl.Resolve() ?? decl; 
                }
                catch
                {
                    //Resolve() can fail as sometimes Cecil understands types as .net 
                    //needs to ignore those errors
                    declDef = decl;
                }

                if (insertNested)
                {
                    buf.Append(NestedTypeSeparator);
                }
                insertNested = true;
                AppendTypeName(buf, declDef, context);
                int argumentCount = DocUtils.GetGenericArgumentCount(declDef);
                int countLeftUnapplied = argumentCount - previouslyAppliedCount;
                previouslyAppliedCount = argumentCount;
                var lastItem = decls.Last();
                if (countLeftUnapplied > 0 
                    && (appendGeneric
                    //this is to add generic syntax for parent classes in declaration of nested class
                    //eg, ref class MyList<T>::Helper -> needs to add <T> to MyList class
                    || decls.Count>=2 && decl != lastItem)
                    )
                {
                    buf.Append(GenericTypeContainer[0]);
                    var origState = MemberFormatterState;
                    MemberFormatterState = MemberFormatterState.WithinGenericTypeParameters;

                    var item = genArgs[argIndex++];
                    _AppendTypeName(buf, item, context, useTypeProjection: useTypeProjection);
                    if (declDef.GenericParameters.All(x => x.FullName != item.FullName))
                    {
                        AppendHat(buf, item, AppendHatOnReturn);
                    }

                    for (int i = 1; i < countLeftUnapplied; ++i)
                    {
                        var newItem = genArgs[argIndex++];
                        _AppendTypeName(buf.Append(", "), newItem, context);
                        if (declDef.GenericParameters.All(x => x.FullName != newItem.FullName))
                        {
                            //add hat only for non-generic types
                            AppendHat(buf, newItem);
                        }
                    }
                    MemberFormatterState = origState;
                    buf.Append(GenericTypeContainer[1]);
                }
            }
            return buf;
        }

        protected override string GetFinalizerName (MethodDefinition method)
        {
            //~classname() { }   // destructor
            //!classname() { }   // finalizer
            return "!" + method.DeclaringType.Name + " ()";
        }

        protected override StringBuilder AppendVisibility (StringBuilder buf, MethodDefinition method)
        {
            if (method == null)
                return buf;
            if (method.IsPublic)
                return buf.Append ("public:").Append(GetLineEnding());
            if (method.IsFamily )
                return buf.Append ("protected:").Append(GetLineEnding());
            if(method.IsFamilyOrAssembly)
                return buf.Append("protected public:").Append(GetLineEnding());
            return buf;
        }

        protected override StringBuilder AppendModifiers (StringBuilder buf, MethodDefinition method)
        {
            string modifiers = String.Empty;
            if (method.IsStatic) modifiers += " static";
            if (method.IsVirtual && !method.IsAbstract)
            {
                if ((method.Attributes & MethodAttributes.NewSlot) != 0) modifiers += " virtual";
                else modifiers += " override";
            }
            TypeDefinition declType = method.DeclaringType;
            if (method.IsAbstract && !declType.IsInterface) modifiers += " abstract";

            modifiers = AppendSealedModifiers(modifiers, method);
            
            switch (method.Name)
            {
                case "op_Implicit":
                    modifiers += " operator";
                    break;
                case "op_Explicit":
                    modifiers += " explicit operator";
                    break;
            }

            return buf.Append (modifiers);
        }

        protected virtual string AppendSealedModifiers(string modifiersString, MethodDefinition method)
        {
            //no need to apply sealed here as virtual keyword is used for interface implementation even for sealed classes
            return modifiersString;
        }

        protected override StringBuilder AppendGenericMethod (StringBuilder buf, MethodDefinition method)
        {
            if (method.IsGenericMethod ())
            {
                IList<GenericParameter> args = method.GenericParameters;
                AppendGenericItem(buf, args);
            }
            return buf;
        }

        protected virtual StringBuilder AppendGenericItem(StringBuilder buf, IList<GenericParameter> args)
        {
            if (args!=null && args.Any())
            {
                buf.Append("generic <typename ");
                buf.Append(args[0].Name);
                for (int i = 1; i < args.Count; ++i)
                    buf.Append(", typename ").Append(args[i].Name);
                buf.Append(">");
                buf.Append(GetLineEnding());
            }
            return buf;
        }

        protected override StringBuilder AppendParameters (StringBuilder buf, MethodDefinition method, IList<ParameterDefinition> parameters)
        {
            return AppendParameters (buf, parameters, '(', ')');
        }

        private StringBuilder AppendParameters (StringBuilder buf,IList<ParameterDefinition> parameters, char? begin, char? end)
        {
            buf.Append (begin);

            if (parameters.Count > 0)
            {
                AppendParameter (buf, parameters[0]);
                for (int i = 1; i < parameters.Count; ++i)
                {
                    buf.Append (", ");
                    AppendParameter (buf, parameters[i]);
                }
            }

            return buf.Append (end);
        }

        protected virtual StringBuilder AppendParameter (StringBuilder buf, ParameterDefinition parameter)
        {
           if (parameter.ParameterType is ByReferenceType)
            {
                if (parameter.IsOut)
                {
                    //no notion of out -> mark with attribute to distinguish in other languages 
                    buf.Append("[Runtime::InteropServices::Out] ");
                }
            }

            if (IsParamsParameter(parameter))
                buf.AppendFormat ("... ");
            
            buf.Append(GetTypeNameWithOptions(parameter.ParameterType, AppendHatOnReturn));
            if (!buf.ToString().EndsWith(" "))
                buf.Append(" ");

            buf.Append(parameter.Name);
            
            return buf;
        }

        protected bool IsParamsParameter(ParameterDefinition parameter)
        {
            if (parameter.HasCustomAttributes)
            {
                var isParams = parameter.CustomAttributes.Any(ca => ca.AttributeType.Name == "ParamArrayAttribute");
                if (isParams)
                    return true;
            }
            return false;
        }

        protected override StringBuilder AppendArrayModifiers(StringBuilder buf, ArrayType array)
        {
            return buf;
        }

        protected override StringBuilder AppendArrayTypeName(StringBuilder buf, TypeReference type, IAttributeParserContext context)
        {
            buf.Append("cli::array <");

            var item = type is TypeSpecification spec ? spec.ElementType : type.GetElementType();
            _AppendTypeName(buf, item, context);
            AppendHat(buf, item);

            if (type is ArrayType arrayType)
            {
                int rank = arrayType.Rank;
                if (rank > 1)
                {
                    buf.AppendFormat(", {0}", rank);
                }
            }
            
            buf.Append(">");

            return buf;
        }

        protected override StringBuilder AppendRefTypeName(StringBuilder buf, ByReferenceType type, IAttributeParserContext context)
        {
            _AppendTypeName(buf, type.ElementType, context);
            AppendHat(buf, type);
            buf.Append(RefTypeModifier);

            return buf;
        }

        protected override StringBuilder AppendPointerTypeName(StringBuilder buf, TypeReference type, IAttributeParserContext context)
        {
            TypeSpecification spec = type as TypeSpecification;
             _AppendTypeName(buf, spec != null ? spec.ElementType : type.GetElementType(), context);
            AppendHat(buf, type);
            buf.Append(PointerModifier);
            return buf;
        }

        protected override string GetPropertyDeclaration (PropertyDefinition property)
        {
            var propVisib = GetPropertyVisibility(property, out var getVisible, out var setVisible);

            var buf=new StringBuilder();
            buf.Append(propVisib);
            
            // Pick an accessor to use for static/virtual/override/etc. checks.
            var method = property.SetMethod ?? property.GetMethod;

            string modifiers = String.Empty;
            if (method.IsStatic) modifiers += " static";
            if (method.IsVirtual && !method.IsAbstract)
            {
                if (((method.Attributes & MethodAttributes.SpecialName) != 0))
                    modifiers += " virtual";
                else
                    modifiers += " override";
            }
            TypeDefinition declDef = (TypeDefinition)method.DeclaringType;
            if (method.IsAbstract && !declDef.IsInterface)
                modifiers += " abstract";
            if (method.IsFinal)
                modifiers += " sealed";
            if (modifiers == " virtual sealed")
                modifiers = "";
            buf.Append(modifiers).Append(' ').Append("property ");

            var typeName = GetTypeNameWithOptions(property.PropertyType, AppendHatOnReturn);

            buf.Append(typeName).Append(' ');

            IEnumerable<MemberReference> defs = property.DeclaringType.GetDefaultMembers();
            string propertyName = property.Name;
            foreach (MemberReference mi in defs)
            {
                if (mi == property)
                {
                    propertyName = "default";
                    break;
                }
            }
            buf.Append(propertyName == "default" ? propertyName : DocUtils.GetPropertyName(property, NestedTypeSeparator));

            bool hasParams=false;
            if (property.Parameters.Count != 0)
            {
                hasParams = true;
                buf.Append('[');
                    buf.Append(GetTypeNameWithOptions(property.Parameters[0].ParameterType, AppendHatOnReturn));
                    for (int i = 1; i < property.Parameters.Count; ++i)
                    {
                        buf.Append(", ");
                        buf.Append(GetTypeNameWithOptions(property.Parameters[i].ParameterType, AppendHatOnReturn));
                    }
                buf.Append(']');
            }

            buf.Append(" { ");
            if (getVisible != null)
            {
                if (getVisible != propVisib)
                    buf.Append(' ').Append(getVisible);
                buf.AppendFormat("{0} get", typeName);

                if (hasParams) AppendParameters(buf, property.Parameters, '(', ')');
                else buf.Append("()");

                buf.Append(";");
            }
            if (setVisible != null)
            {
                if (setVisible != propVisib)
                    buf.Append(' ').Append(setVisible);
                buf.Append(' ').AppendFormat("void set(");

                if (hasParams)
                {//no need for braces since they are added in other place
                    AppendParameters(buf, property.Parameters, null, null);
                    buf.Append(", ");
                }
                buf.AppendFormat("{0} value)", typeName);
                buf.Append(";");
            }
            buf.Append(" };");

            return buf[0] != ' ' ? buf.ToString () : buf.ToString (1, buf.Length - 1);
        }

        protected virtual string GetPropertyVisibility(PropertyDefinition property, out string getVisible, out string setVisible )
        {
            getVisible = null;
            setVisible = null;

            if (DocUtils.IsAvailablePropertyMethod(property.GetMethod))
                getVisible = AppendVisibility(new StringBuilder(), property.GetMethod).ToString();
            if (DocUtils.IsAvailablePropertyMethod(property.SetMethod))
                setVisible = AppendVisibility(new StringBuilder(), property.SetMethod).ToString();

            if (setVisible == null && getVisible == null)
                return null;
            
            StringBuilder buf = new StringBuilder();
            if (getVisible != null && (setVisible == null || getVisible == setVisible))
                buf.Append(getVisible);
            else if (setVisible != null && getVisible == null)
                buf.Append(setVisible);
            else
                buf.Append("public: ");

            return buf.ToString();
        }

        protected override string GetFieldDeclaration (FieldDefinition field)
        {
            TypeDefinition declType = field.DeclaringType;
            if (declType.IsEnum && field.Name == "value__")
                return null; // This member of enums aren't documented.

            StringBuilder buf = new StringBuilder ();
            AppendFieldVisibility (buf, field);
            
            if (declType.IsEnum)
                return field.Name;

            if (field.IsStatic && !field.IsLiteral)
                buf.Append("static ");
            if (field.IsInitOnly)
                buf.Append("initonly ");

            string fieldFullName = field.FullName;
            if (fieldFullName.Contains(' '))
            {
                var splitType = fieldFullName.Split(' ');

                if (splitType.Any(str => str == "modopt(System.Runtime.CompilerServices.IsConst)"))
                {
                    buf.Append("const ");
                }
            }
            
            buf.Append(GetTypeNameWithOptions(field.FieldType, AppendHatOnReturn)).Append(' ');
            buf.Append(field.Name);
            AppendFieldValue (buf, field);
            buf.Append(';');

            return buf.ToString ();
        }

        protected virtual StringBuilder AppendFieldVisibility (StringBuilder buf, FieldDefinition field)
        {
            if (field.IsPublic)
                return buf.Append("public: ");
            if (field.IsFamily)
                return buf.Append("protected: ");
            if(field.IsFamilyOrAssembly)
                return buf.Append("protected public: ");
            return buf;
        }

        protected static StringBuilder AppendFieldValue (StringBuilder buf, FieldDefinition field)
        {
            // enums have a value__ field, which we ignore
            if (field.DeclaringType.IsEnum ||
                    field.DeclaringType.IsGenericType ())
                return buf;
            if (field.HasConstant && field.IsLiteral)
            {
                object val = null;
                try
                {
                    val = field.Constant;
                }
                catch
                {
                    return buf;
                }
                if (val == null)
                    buf.Append(" = ").Append("nullptr");
                else if (val is Enum)
                    buf.Append(" = ").Append(val);
                else if (val is IFormattable)
                {
                    string value = null;
                    switch (field.FieldType.FullName)
                    {
                        case "System.Double":
                        case "System.Single":
                            value = ((IFormattable)val).ToString("R", CultureInfo.InvariantCulture);
                            break;
                        default:
                            value = ((IFormattable)val).ToString(null, CultureInfo.InvariantCulture);
                            break;
                    }
                    buf.Append(" = ").Append(value);
                }
            }
            return buf;
        }

        protected override string GetEventDeclaration (EventDefinition e)
        {
            StringBuilder buf = new StringBuilder ();
            if (AppendVisibility (buf, e.AddMethod).Length == 0)
            {
                return null;
            }

            AppendModifiers(buf, e.AddMethod);

            buf.Append(" event ");

            var typeName = GetTypeNameWithOptions(e.EventType, AppendHatOnReturn);

            buf.Append(typeName).Append(' ');
            buf.Append(e.Name).Append(';');
            
            return buf.ToString ();
        }
        
        public virtual string GetNameWithOptions(MemberReference member, bool appendGeneric = true, bool appendHat = true)
        {
            if (member is TypeReference type)
                return GetTypeNameWithOptions(type, appendHat, appendGeneric);
            var method = member as MethodReference;
            if (method != null && method.Name == ".ctor") // method.IsConstructor
                return GetConstructorName(method);
            if (method != null)
                return GetMethodName(method);
            if (member is PropertyReference prop)
                return GetPropertyName(prop);
            if (member is FieldReference field)
                return GetFieldName(field);
            if (member is EventReference e)
                return GetEventName(e);
            throw new NotSupportedException("Can't handle: " +
                                            (member?.GetType().ToString() ?? "null"));
        }
        
        public override bool IsSupported(MemberReference mref)
        {
            if (mref.IsDefinition == false)
                mref = mref.Resolve() as MemberReference;
            
            if (mref is FieldDefinition)
                return IsSupportedField((FieldDefinition)mref);
            else if (mref is MethodDefinition)
                return IsSupportedMethod((MethodDefinition)mref);
            else if (mref is PropertyDefinition)
                return IsSupportedProperty((PropertyDefinition)mref);
            else if (mref is EventDefinition)
                return IsSupportedEvent((EventDefinition)mref);
            else if (mref is AttachedPropertyDefinition || mref is AttachedEventDefinition)
                return false;

            throw new NotSupportedException("Unsupported member type: " + mref?.GetType().FullName);
        }
        
        public virtual bool IsSupportedMethod(MethodDefinition mdef)
        {
            return
                IsSupported(mdef.ReturnType)
                && mdef.Parameters.All(i => IsSupported(i.ParameterType))
                //no possibility for default parameters
                && mdef.Parameters.All(i => !i.HasDefault && !i.IsOptional && !i.HasConstant)
                ;
        }
        public virtual bool IsSupportedField(FieldDefinition fdef)
        {
            return IsSupported(fdef.FieldType);
        }
        public virtual bool IsSupportedProperty(PropertyDefinition pdef)
        {
            return IsSupported(pdef.PropertyType);
        }

        public virtual bool IsSupportedEvent(EventDefinition edef)
        {
            return IsSupported(edef.EventType);
        }

        public bool HasNestedClassesDuplicateNames(TypeReference tref)
        {
            string inputName = DocUtils.GetFormattedTypeName(tref.Name);
            TypeDefinition parentType;
            try
            {
                 parentType = tref.DeclaringType?.Resolve();
            }
            catch
            {
                //Resolve() can fail as sometimes Cecil understands types as .net 
                //needs to ignore those errors
                 parentType = null;
            }

            if (parentType != null && parentType.HasNestedTypes)
            {
                var listOfNested = parentType.NestedTypes;
                int count = listOfNested.Select(x => DocUtils.GetFormattedTypeName(x.Name)).Count(y => y == inputName);
                if (count > 1)
                    return true;
            }
            return false;
        }

        public override bool IsSupported(TypeReference tref)
        {
          
            return !HasNestedClassesDuplicateNames(tref) 
                && IsSupportedGenericParameter(tref) 
                && base.IsSupported(tref)
                ;
        }

        protected bool IsSupportedGenericParameter(TypeReference tref)
        {
            if (tref is GenericParameter parameter)
            {
                //no support for parameter covariance/contrvariance
                GenericParameterAttributes attrs = parameter.Attributes;
                bool isout = (attrs & GenericParameterAttributes.Covariant) != 0;
                bool isin = (attrs & GenericParameterAttributes.Contravariant) != 0;
                if (isin || isout)
                    return false;
            }

            return true;
        }
    }
}