aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialSubstitution.cs
blob: 8d45e180b753465e1837958a2f3a250bbd56e706 (plain) (blame)
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
using System.IO;

namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
    public class SpecialSubstitution : BaseNode
    {
        public enum SpecialType
        {
            Allocator,
            BasicString,
            String,
            IStream,
            OStream,
            IOStream
        }

        private SpecialType _specialSubstitutionKey;

        public SpecialSubstitution(SpecialType specialSubstitutionKey) : base(NodeType.SpecialSubstitution)
        {
            _specialSubstitutionKey = specialSubstitutionKey;
        }

        public void SetExtended()
        {
            Type = NodeType.ExpandedSpecialSubstitution;
        }

        public override string GetName()
        {
            switch (_specialSubstitutionKey)
            {
                case SpecialType.Allocator:
                    return "allocator";
                case SpecialType.BasicString:
                    return "basic_string";
                case SpecialType.String:
                    if (Type == NodeType.ExpandedSpecialSubstitution)
                    {
                        return "basic_string";
                    }

                    return "string";
                case SpecialType.IStream:
                    return "istream";
                case SpecialType.OStream:
                    return "ostream";
                case SpecialType.IOStream:
                    return "iostream";
            }

            return null;
        }

        private string GetExtendedName()
        {
            switch (_specialSubstitutionKey)
            {
                case SpecialType.Allocator:
                    return "std::allocator";
                case SpecialType.BasicString:
                    return "std::basic_string";
                case SpecialType.String:
                    return "std::basic_string<char, std::char_traits<char>, std::allocator<char> >";
                case SpecialType.IStream:
                    return "std::basic_istream<char, std::char_traits<char> >";
                case SpecialType.OStream:
                    return "std::basic_ostream<char, std::char_traits<char> >";
                case SpecialType.IOStream:
                    return "std::basic_iostream<char, std::char_traits<char> >";
            }

            return null;
        }

        public override void PrintLeft(TextWriter writer)
        {
            if (Type == NodeType.ExpandedSpecialSubstitution)
            {
                writer.Write(GetExtendedName());
            }
            else
            {
                writer.Write("std::");
                writer.Write(GetName());
            }
        }
    }
}