forked from dotnet/ClangSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharpOutputBuilder.Visit.cs
More file actions
133 lines (109 loc) · 4.2 KB
/
CSharpOutputBuilder.Visit.cs
File metadata and controls
133 lines (109 loc) · 4.2 KB
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
// Copyright (c) Microsoft and Contributors. All rights reserved. Licensed under the University of Illinois/NCSA Open Source License. See LICENSE.txt in the project root for license information.
using System;
using System.Runtime.CompilerServices;
namespace ClangSharp.CSharp
{
internal partial class CSharpOutputBuilder
{
private bool _customAttrIsForParameter = false;
public void WriteCustomAttribute(string attribute, Action callback = null)
{
if (attribute.Equals("Flags") || attribute.Equals("Obsolete"))
{
AddUsingDirective("System");
}
else if (attribute.Equals("EditorBrowsable") || attribute.StartsWith("EditorBrowsable("))
{
AddUsingDirective("System.ComponentModel");
}
else if (attribute.StartsWith("Guid(") || attribute.StartsWith("Optional, DefaultParameterValue("))
{
AddUsingDirective("System.Runtime.InteropServices");
}
if (!_customAttrIsForParameter)
{
WriteIndentation();
}
Write('[');
Write(attribute);
callback?.Invoke();
Write(']');
if (!_customAttrIsForParameter)
{
WriteNewline();
}
else
{
Write(' ');
}
}
public void WriteDivider(bool force = false)
{
if (force)
{
WriteNewline();
}
else
{
NeedsNewline = true;
}
}
public void SuppressDivider() => NeedsNewline = false;
public void WriteIid(string name, Guid value)
{
if (_config.GenerateUnmanagedConstants)
{
AddUsingDirective("System");
AddUsingDirective("System.Diagnostics");
AddUsingDirective("System.Runtime.CompilerServices");
AddUsingDirective("System.Runtime.InteropServices");
WriteIndented("public static ref readonly Guid ");
WriteLine(name);
WriteBlockStart();
WriteIndentedLine("get");
WriteBlockStart();
WriteIndentedLine("ReadOnlySpan<byte> data = new byte[] {");
IncreaseIndentation();
WriteIndentation();
WriteValueAsBytes(Unsafe.As<Guid, uint>(ref value), 4);
WriteLine(',');
WriteIndentation();
WriteValueAsBytes(Unsafe.As<Guid, ushort>(ref Unsafe.AddByteOffset(ref value, (nint)4)), 2);
WriteLine(',');
WriteIndentation();
WriteValueAsBytes(Unsafe.As<Guid, ushort>(ref Unsafe.AddByteOffset(ref value, (nint)6)), 2);
for (var i = 8; i < 16; i++)
{
WriteLine(',');
WriteIndentation();
WriteValueAsBytes(Unsafe.As<Guid, ushort>(ref Unsafe.AddByteOffset(ref value, (nint)i)), 1);
}
WriteNewline();
DecreaseIndentation();
WriteIndentedLine("};");
NeedsNewline = true;
WriteIndentedLine("Debug.Assert(data.Length == Unsafe.SizeOf<Guid>());");
WriteIndentedLine("return ref Unsafe.As<byte, Guid>(ref MemoryMarshal.GetReference(data));");
WriteBlockEnd();
WriteBlockEnd();
}
else
{
var valueString = value.ToString("X").ToUpperInvariant().Replace("{", "").Replace("}", "").Replace('X', 'x').Replace(",", ", ");
WriteIid(name, valueString);
}
}
public void WriteIid(string name, string value)
{
AddUsingDirective("System");
WriteIndented("public static readonly Guid ");
Write(name);
Write(" = new Guid(");
Write(value);
Write(")");
WriteSemicolon();
WriteNewline();
}
public void EmitUsingDirective(string directive) => AddUsingDirective(directive);
}
}