forked from madrang/MFDebugger-Mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCLRCapabilities.cs
302 lines (265 loc) · 9.12 KB
/
CLRCapabilities.cs
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
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) Microsoft Corporation. All rights reserved.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
using System;
using System.Diagnostics;
namespace Microsoft.SPOT
{
[Serializable]
public class CLRCapabilities
{
[Flags]
public enum Capability : ulong
{
None = 0x00000000,
FloatingPoint = 0x00000001,
SourceLevelDebugging = 0x00000002,
AppDomains = 0x00000004,
ExceptionFilters = 0x00000008,
IncrementalDeployment = 0x00000010,
SoftReboot = 0x00000020,
Profiling = 0x00000040,
Profiling_Allocations = 0x00000080,
Profiling_Calls = 0x00000100,
ThreadCreateEx = 0x00000400,
}
[Serializable]
public struct LCDCapabilities
{
public readonly uint Width;
public readonly uint Height;
public readonly uint BitsPerPixel;
public LCDCapabilities( uint width, uint height, uint bitsPerPixel )
{
this.Width = width;
this.Height = height;
this.BitsPerPixel = bitsPerPixel;
}
}
[Serializable]
public struct SoftwareVersionProperties
{
public readonly string BuildDate;
public readonly uint CompilerVersion;
public SoftwareVersionProperties( byte[] buildDate, uint compVersion )
{
char[] chars = new char[buildDate.Length];
int i = 0;
for(i = 0; i <chars.Length && buildDate[i] != 0; i++)
{
chars[i] = (char)buildDate[i];
}
this.BuildDate = new string(chars, 0, i);
this.CompilerVersion = compVersion;
}
}
[Serializable]
public struct HalSystemInfoProperties
{
public readonly Version halVersion;
public readonly string halVendorInfo;
public readonly byte oemCode;
public readonly byte modelCode;
public readonly ushort skuCode;
public readonly string moduleSerialNumber;
public readonly string systemSerialNumber;
public HalSystemInfoProperties(
Version hv, string hvi,
byte oc, byte mc, ushort sc,
byte[] mSerNumBytes, byte[] sSerNumBytes
)
{
halVersion = hv; halVendorInfo = hvi;
oemCode = oc; modelCode = mc; skuCode = sc;
moduleSerialNumber = BytesToHexString(mSerNumBytes);
systemSerialNumber = BytesToHexString(sSerNumBytes);
}
private static string BytesToHexString(byte[] bytes)
{
System.Text.StringBuilder builder = new System.Text.StringBuilder();
foreach (byte b in bytes)
{
builder.Append ( String.Format("{0:X}", b));
}
return builder.ToString();
}
}
[Serializable]
public struct ClrInfoProperties
{
public readonly Version clrVersion;
public readonly string clrVendorInfo;
public readonly Version targetFrameworkVersion;
public ClrInfoProperties(Version cv, string cvi, Version tfv)
{
this.clrVersion = cv;
this.clrVendorInfo = cvi;
this.targetFrameworkVersion = tfv;
}
}
[Serializable]
public struct SolutionInfoProperties
{
public readonly Version solutionVersion;
public readonly string solutionVendorInfo;
public SolutionInfoProperties(Version v, string i)
{
this.solutionVersion = v;
this.solutionVendorInfo = i;
}
}
private Capability m_capabilities;
private LCDCapabilities m_lcd;
private SoftwareVersionProperties m_swVersion;
private HalSystemInfoProperties m_halSystemInfo;
private ClrInfoProperties m_clrInfo;
private SolutionInfoProperties m_solutionReleaseInfo;
private bool m_fUnknown;
public CLRCapabilities()
: this(Capability.None, new LCDCapabilities(), new SoftwareVersionProperties(),
new HalSystemInfoProperties(), new ClrInfoProperties(), new SolutionInfoProperties())
{
}
public CLRCapabilities(
Capability capability,
LCDCapabilities lcd,
SoftwareVersionProperties ver,
HalSystemInfoProperties halSystemInfo,
ClrInfoProperties clrInfo,
SolutionInfoProperties solutionReleaseInfo
)
{
m_fUnknown = (capability == Capability.None);
m_capabilities = capability;
m_lcd = lcd;
m_swVersion = ver;
m_halSystemInfo = halSystemInfo;
m_clrInfo = clrInfo;
m_solutionReleaseInfo = solutionReleaseInfo;
}
public HalSystemInfoProperties HalSystemInfo
{
get
{
Debug.Assert(!m_fUnknown);
return m_halSystemInfo;
}
}
public ClrInfoProperties ClrInfo
{
get
{
Debug.Assert(!m_fUnknown);
return m_clrInfo;
}
}
public SolutionInfoProperties SolutionReleaseInfo
{
get
{
Debug.Assert(!m_fUnknown);
return m_solutionReleaseInfo;
}
}
public SoftwareVersionProperties SoftwareVersion
{
get
{
Debug.Assert( !m_fUnknown );
return m_swVersion;
}
}
public bool FloatingPoint
{
get
{
Debug.Assert( !m_fUnknown );
return (m_capabilities & Capability.FloatingPoint) != 0;
}
}
public bool SourceLevelDebugging
{
get
{
Debug.Assert( !m_fUnknown );
return (m_capabilities & Capability.SourceLevelDebugging) != 0;
}
}
public bool ThreadCreateEx
{
get
{
Debug.Assert(!m_fUnknown);
return (m_capabilities & Capability.ThreadCreateEx) != 0;
}
}
public LCDCapabilities LCD
{
get
{
Debug.Assert( !m_fUnknown );
return m_lcd;
}
}
public bool AppDomains
{
get
{
Debug.Assert( !m_fUnknown );
return (m_capabilities & Capability.AppDomains) != 0;
}
}
public bool ExceptionFilters
{
get
{
Debug.Assert(!m_fUnknown);
return (m_capabilities & Capability.ExceptionFilters) != 0;
}
}
public bool IncrementalDeployment
{
get
{
Debug.Assert(!m_fUnknown);
return (m_capabilities & Capability.IncrementalDeployment) != 0;
}
}
public bool SoftReboot
{
get
{
Debug.Assert(!m_fUnknown);
return (m_capabilities & Capability.SoftReboot) != 0;
}
}
public bool Profiling
{
get
{
Debug.Assert(!m_fUnknown);
return (m_capabilities & Capability.Profiling) != 0;
}
}
public bool ProfilingAllocations
{
get
{
Debug.Assert(!m_fUnknown);
return (m_capabilities & Capability.Profiling_Allocations) != 0;
}
}
public bool ProfilingCalls
{
get
{
Debug.Assert(!m_fUnknown);
return (m_capabilities & Capability.Profiling_Calls) != 0;
}
}
public bool IsUnknown
{
get { return m_fUnknown; }
}
}
}