-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathMyEventSource.cs
177 lines (119 loc) · 7.73 KB
/
MyEventSource.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
using PostSharp.Patterns.Diagnostics;
using PostSharp.Patterns.Diagnostics.Backends.EventSource;
using System;
using System.Diagnostics.Tracing;
using System.Runtime.InteropServices;
namespace PostSharp.Samples.Logging.Etw.CustomSource
{
[Log(AttributeExclude = true)]
[EventSource(Name = "MyEventSource")]
[Guid("971d5f08-f366-421c-a25c-3aed379d5eb2")]
class MyEventSource : PostSharpEventSource
{
private const string format = "{0} | {1} | {2} | {3}";
private const string invalidOperationExceptionMessage = "Use the Log method. This method is metadata-only.";
private const byte version = 2;
[Event(EventIds.MethodEntry, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Start, Version = version, Task = Tasks.Method)]
internal void MethodEntry(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.MethodSuccess, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Stop, Version = version, Task = Tasks.Method)]
internal void MethodSuccess(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.MethodException, Level = EventLevel.Warning, Message = format, Opcode = EventOpcode.Stop, Version = version, Task = Tasks.Method)]
internal void MethodException(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.MethodOvertime, Level = EventLevel.Warning, Message = format, Opcode = EventOpcode.Stop, Version = version, Task = Tasks.Method)]
internal void MethodOvertime(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.AsyncMethodAwait, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Suspend, Version = version, Task = Tasks.Method)]
internal void AsyncMethodAwait(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.AsyncMethodResume, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Resume, Version = version, Task = Tasks.Method)]
internal void AsyncMethodResume(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.ValueChanged, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Info, Version = version, Task = Tasks.Message)]
internal void ValueChanged(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomVerbose, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Info, Version = version, Task = Tasks.Message)]
internal void CustomVerbose(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomInfo, Level = EventLevel.Informational, Message = format, Opcode = EventOpcode.Info, Version = version, Task = Tasks.Message)]
internal void CustomInfo(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomWarning, Level = EventLevel.Warning, Message = format, Opcode = EventOpcode.Info, Version = version, Task = Tasks.Message)]
internal void CustomWarning(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomError, Level = EventLevel.Error, Message = format, Opcode = EventOpcode.Info, Version = version, Task = Tasks.Message)]
internal void CustomError(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomCritical, Level = EventLevel.Critical, Message = format, Opcode = EventOpcode.Info, Version = version, Task = Tasks.Message)]
internal void CustomCritical(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomActivityEntry, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Start, Version = version, Task = Tasks.CustomActivity)]
internal void CustomActivityEntry(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomActivityException, Level = EventLevel.Warning, Message = format, Opcode = EventOpcode.Stop, Version = version, Task = Tasks.CustomActivity)]
internal void CustomActivityException(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomActivitySuccess, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Stop, Version = version, Task = Tasks.CustomActivity)]
internal void CustomActivitySuccess(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.CustomActivityFailure, Level = EventLevel.Warning, Message = format, Opcode = EventOpcode.Stop, Version = version, Task = Tasks.CustomActivity)]
internal void CustomActivityFailure(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.IteratorYield, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Stop, Version = version, Task = Tasks.Method)]
internal void IteratorYield(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.IteratorMoveNext, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Start, Version = version, Task = Tasks.Method)]
internal void IteratorMoveNext(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
[Event(EventIds.ExecutionPoint, Level = EventLevel.Verbose, Message = format, Opcode = EventOpcode.Info, Version = version, Task = Tasks.Method)]
internal void ExecutionPoint(string role, string type, string context, string message, int indentLevel)
{
throw new InvalidOperationException(invalidOperationExceptionMessage);
}
// We need to repeat this, otherwise the ETW framework for .NET will ignore the class.
public new static class Tasks
{
public const EventTask Method = PostSharpEventSource.Tasks.Method;
public const EventTask CustomActivity = PostSharpEventSource.Tasks.CustomActivity;
public const EventTask Message = PostSharpEventSource.Tasks.Message;
}
}
}