This repository was archived by the owner on Nov 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathMessages.cs
More file actions
416 lines (363 loc) · 11 KB
/
Messages.cs
File metadata and controls
416 lines (363 loc) · 11 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
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
//
// OpenCover - S. Wilde
//
// This source code is released under the MIT License; see the accompanying license file.
//
using System.Runtime.InteropServices;
namespace OpenCover.Framework.Communication
{
/// <summary>
/// The command supportd by the host
/// </summary>
// ReSharper disable InconsistentNaming
// ReSharper disable once EnumUnderlyingTypeIsInt
public enum MSG_Type : int
{
/// <summary>
/// Does this assembly have any code that can be covered
/// </summary>
MSG_TrackAssembly = 1,
/// <summary>
/// Get the sequence point for a method
/// </summary>
MSG_GetSequencePoints = 2,
/// <summary>
/// Get the branch points for a method
/// </summary>
MSG_GetBranchPoints = 3,
/// <summary>
/// Do we track this method (test methods only)
/// </summary>
MSG_TrackMethod = 4,
/// <summary>
/// allocate a provate memory buffer for profiler/host communications
/// </summary>
MSG_AllocateMemoryBuffer = 5,
/// <summary>
/// Close a channel between host and profiler
/// </summary>
MSG_CloseChannel = 6,
/// <summary>
/// Do we track this process
/// </summary>
MSG_TrackProcess = 7,
}
/// <summary>
/// The type of results
/// </summary>
public enum MSG_IdType : uint
{
/// <summary>
/// a basic coverage vist point
/// </summary>
IT_VisitPoint = 0x00000000,
/// <summary>
/// A test method enter
/// </summary>
IT_MethodEnter = 0x40000000,
/// <summary>
/// A test method exit
/// </summary>
IT_MethodLeave = 0x80000000,
/// <summary>
/// A test method tail call
/// </summary>
IT_MethodTailcall = 0xC0000000,
/// <summary>
/// A mask of the above
/// </summary>
IT_Mask = 0x3FFFFFFF,
}
/// <summary>
/// Track an assembly
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
public struct MSG_TrackAssembly_Request
{
/// <summary>
/// The message type
/// </summary>
public MSG_Type type;
/// <summary>
/// The path to the process
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string processName;
/// <summary>
/// The path to the module/assembly
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string modulePath;
/// <summary>
/// The name of the module/assembly
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string assemblyName;
}
/// <summary>
/// The response to a <see cref="MSG_TrackAssembly_Request"/>
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_TrackAssembly_Response
{
/// <summary>
/// True - if the assembly has instrumentable code
/// </summary>
[MarshalAs(UnmanagedType.Bool)]
public bool track;
}
/// <summary>
/// Get the sequence points for a method
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
public struct MSG_GetSequencePoints_Request
{
/// <summary>
/// The type of message
/// </summary>
public MSG_Type type;
/// <summary>
/// The token of the method
/// </summary>
public int functionToken;
/// <summary>
/// The path to the process
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string processName;
/// <summary>
/// The path to the module hosting the emthod
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string modulePath;
/// <summary>
/// The name of the module/assembly hosting the method
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string assemblyName;
}
/// <summary>
/// Defines a seqence point
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_SequencePoint
{
/// <summary>
/// The identifier of the sequence point
/// </summary>
public uint uniqueId;
/// <summary>
/// The original IL offset of where the sequence pont should be placed
/// </summary>
public int offset;
}
/// <summary>
/// The response to a <see cref="MSG_GetSequencePoints_Request"/>
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_GetSequencePoints_Response
{
/// <summary>
/// Do we have more data
/// </summary>
[MarshalAs(UnmanagedType.Bool)]
public bool more;
/// <summary>
/// The number of sequence points that follow
/// </summary>
public int count;
}
/// <summary>
/// Get the branch points of a method
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
public struct MSG_GetBranchPoints_Request
{
/// <summary>
/// The type of message
/// </summary>
public MSG_Type type;
/// <summary>
/// The token of the method
/// </summary>
public int functionToken;
/// <summary>
/// The path to the process
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string processName;
/// <summary>
/// The path to the module hosting the emthod
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string modulePath;
/// <summary>
/// The name of the module/assembly hosting the method
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string assemblyName;
}
/// <summary>
/// Defines a branch point
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_BranchPoint
{
/// <summary>
/// The uniqueid of the branch point
/// </summary>
public uint uniqueId;
/// <summary>
/// The original IL offset of the branch instruction to be instrumented
/// </summary>
public int offset;
/// <summary>
/// Which of the paths T/F or switch that the point is intending to cover.
/// </summary>
public int path;
}
/// <summary>
/// The response to a <see cref="MSG_GetBranchPoints_Request"/>
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_GetBranchPoints_Response
{
/// <summary>
/// Do we have more data
/// </summary>
[MarshalAs(UnmanagedType.Bool)]
public bool more;
/// <summary>
/// The number of branch points that follow
/// </summary>
public int count;
}
/// <summary>
/// Should we track this method
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
public struct MSG_TrackMethod_Request
{
/// <summary>
/// The type of message
/// </summary>
public MSG_Type type;
/// <summary>
/// The token of the method under test
/// </summary>
public int functionToken;
/// <summary>
/// Te path to the module
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string modulePath;
/// <summary>
/// The name of the assemby/module
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string assemblyName;
}
/// <summary>
/// the response to a <see cref="MSG_TrackMethod_Request"/>
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_TrackMethod_Response
{
/// <summary>
/// True - the method should be tracked
/// </summary>
[MarshalAs(UnmanagedType.Bool)]
public bool track;
/// <summary>
/// The uniqueid assigned to the method
/// </summary>
public uint uniqueId;
}
/// <summary>
/// Request to allocate a buffer
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
public struct MSG_AllocateBuffer_Request
{
/// <summary>
/// The type of message
/// </summary>
public MSG_Type type;
/// <summary>
/// The buffer size
/// </summary>
public int bufferSize;
}
/// <summary>
/// The response to a <see cref="MSG_AllocateBuffer_Request"/>
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_AllocateBuffer_Response
{
/// <summary>
/// is the buffer allocated
/// </summary>
[MarshalAs(UnmanagedType.Bool)]
public bool allocated;
/// <summary>
/// The id assigned to the buffer
/// </summary>
public uint bufferId;
}
/// <summary>
/// A close channel request
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
public struct MSG_CloseChannel_Request
{
/// <summary>
/// The type of message
/// </summary>
public MSG_Type type;
/// <summary>
/// The id of the buffer to close
/// </summary>
public uint bufferId;
}
/// <summary>
/// The response to a <see cref="MSG_CloseChannel_Request"/>
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_CloseChannel_Response
{
/// <summary>
/// The buffer should be cleared.
/// </summary>
[MarshalAs(UnmanagedType.Bool)]
public bool done;
}
/// <summary>
/// Track an assembly
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
public struct MSG_TrackProcess_Request
{
/// <summary>
/// The message type
/// </summary>
public MSG_Type type;
/// <summary>
/// The path to the process
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 512)]
public string processName;
}
/// <summary>
/// The response to a <see cref="MSG_TrackProcess_Request"/>
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct MSG_TrackProcess_Response
{
/// <summary>
/// True - if the assembly has instrumentable code
/// </summary>
[MarshalAs(UnmanagedType.Bool)]
public bool track;
}
// ReSharper restore InconsistentNaming
}