-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathBeginCallbacks.tt
112 lines (98 loc) · 3.29 KB
/
BeginCallbacks.tt
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
<# // Copyright (c) Microsoft Corporation. All rights reserved. #>
<# // Licensed under the MIT License. #>
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ output extension=".cs" #>
<#
var maxargs = 15;
var argsComma = new Dictionary<int, string>();
var argsDef = new Dictionary<int, string>();
var argsDefWithName = new Dictionary<int, string>();
var args = new Dictionary<int, string>();
for (var arg = 0; arg < maxargs; arg++) {
var argsCommaStr = string.Empty;
var argDefStr = string.Empty;
var argsDefWithNameStr = string.Empty;
var argsStr = string.Empty;
if (arg > 0)
{
argsCommaStr = ", ";
argDefStr = "object";
argsDefWithNameStr = "object arg0";
argsStr = "arg0";
}
for (var i = 1; i < arg; i++) {
argDefStr += ", object";
argsDefWithNameStr += ", object arg" + i;
argsStr += ", arg" + i;
}
argsDef.Add(arg, argDefStr);
argsDefWithName.Add(arg, argsDefWithNameStr);
args.Add(arg, argsStr);
argsComma.Add(arg, argsCommaStr);
}
#>
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// ==============================================
// This file is autogenerated
// ==============================================
namespace Microsoft.Diagnostics.Instrumentation.Extensions.Base
{
using System;
using System.Collections.Generic;
/// <summary>
/// This type if generic to avoid problems merging it to mscorlib
/// </summary>
/// <typeparam name="T">This generic attribute has no purpose</typeparam>
internal class BCB<T>
{
<#
for (var arg = 0; arg < maxargs; arg++) {
#>
public static int Lock<#=arg#>;
<#
}
#>
<#
for (var arg = 0; arg < maxargs; arg++) {
#>
internal static Dictionary<int, Func<object<#=argsComma[arg]#><#=argsDef[arg]#>>>
callbacks<#=arg#> = new Dictionary<int, Func<object<#=argsComma[arg]#><#=argsDef[arg]#>>>();
<#
}
#>
}
}
// Underscore _System assembly will be treated as regular System namespace by ImportModule function of Instrumentation Engine.
// This is done to avoid conflicts during compilation
#pragma warning disable CS3008 // Identifier is not CLS-compliant
namespace _System.Diagnostics
#pragma warning restore CS3008 // Identifier is not CLS-compliant
{
using Microsoft.Diagnostics.Instrumentation.Extensions.Base;
using System;
/// <summary>
/// This class defines public contract to register new callbacks
/// </summary>
public partial class DebuggerHiddenAttribute : Attribute
{
<#
for (var arg = 0; arg < maxargs; arg++) {
#>
public static object ApplicationInsights_OnBegin(int methodId<#=argsComma[arg]#><#=argsDefWithName[arg]#>)
{
Func<object<#=argsComma[arg]#><#=argsDef[arg]#>> func = null;
if (BCB<int>.callbacks<#=arg#>.TryGetValue(methodId, out func) && (func != null))
return func(<#=args[arg]#>);
else
return null;
}
<#
}
#>
}
}