-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathProjectLoggingContext.cs
277 lines (251 loc) · 11 KB
/
ProjectLoggingContext.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using Microsoft.Build.Collections;
using Microsoft.Build.Execution;
using Microsoft.Build.Framework;
using Microsoft.Build.Shared;
using static Microsoft.Build.Execution.ProjectPropertyInstance;
using TaskItem = Microsoft.Build.Execution.ProjectItemInstance.TaskItem;
#nullable disable
namespace Microsoft.Build.BackEnd.Logging
{
/// <summary>
/// A logging context for a project.
/// </summary>
internal class ProjectLoggingContext : BuildLoggingContext
{
/// <summary>
/// The project's full path
/// </summary>
private string _projectFullPath;
/// <summary>
/// Constructs a project logging context.
/// </summary>
internal ProjectLoggingContext(NodeLoggingContext nodeLoggingContext, BuildRequestEntry requestEntry)
: this
(
nodeLoggingContext,
requestEntry.Request.SubmissionId,
requestEntry.Request.ConfigurationId,
requestEntry.RequestConfiguration.ProjectFullPath,
requestEntry.Request.Targets,
requestEntry.RequestConfiguration.ToolsVersion,
requestEntry.RequestConfiguration.Project.PropertiesToBuildWith,
requestEntry.RequestConfiguration.Project.ItemsToBuildWith,
requestEntry.Request.ParentBuildEventContext,
requestEntry.RequestConfiguration.Project.EvaluationId,
requestEntry.Request.ProjectContextId)
{
}
/// <summary>
/// Constructs a project logging context.
/// </summary>
internal ProjectLoggingContext(
NodeLoggingContext nodeLoggingContext,
BuildRequest request,
string projectFullPath,
string toolsVersion,
int evaluationId = BuildEventContext.InvalidEvaluationId)
: this
(
nodeLoggingContext,
request.SubmissionId,
request.ConfigurationId,
projectFullPath,
request.Targets,
toolsVersion,
projectProperties: null,
projectItems: null,
request.ParentBuildEventContext,
evaluationId,
request.ProjectContextId)
{
}
/// <summary>
/// Creates ProjectLoggingContext, without logging ProjectStartedEventArgs as a side effect.
/// The ProjectStartedEventArgs is returned as well - so that it can be later logged explicitly
/// </summary>
public static (ProjectStartedEventArgs, ProjectLoggingContext) CreateLoggingContext(
NodeLoggingContext nodeLoggingContext, BuildRequestEntry requestEntry)
{
ProjectStartedEventArgs args = CreateProjectStarted(
nodeLoggingContext,
requestEntry.Request.SubmissionId,
requestEntry.Request.ConfigurationId,
requestEntry.RequestConfiguration.ProjectFullPath,
requestEntry.Request.Targets,
requestEntry.RequestConfiguration.ToolsVersion,
requestEntry.RequestConfiguration.Project.PropertiesToBuildWith,
requestEntry.RequestConfiguration.Project.ItemsToBuildWith,
requestEntry.Request.ParentBuildEventContext,
requestEntry.RequestConfiguration.Project.EvaluationId,
requestEntry.Request.ProjectContextId);
return (args, new ProjectLoggingContext(nodeLoggingContext, args));
}
private ProjectLoggingContext(
NodeLoggingContext nodeLoggingContext,
ProjectStartedEventArgs projectStarted)
: base(nodeLoggingContext, projectStarted.BuildEventContext)
{
_projectFullPath = projectStarted.ProjectFile;
// No need to log a redundant message in the common case
if (projectStarted.ToolsVersion != "Current")
{
LoggingService.LogComment(this.BuildEventContext, MessageImportance.Low, "ToolsVersionInEffectForBuild", projectStarted.ToolsVersion);
}
this.IsValid = true;
}
/// <summary>
/// Constructs a project logging contexts.
/// </summary>
private ProjectLoggingContext(
NodeLoggingContext nodeLoggingContext,
int submissionId,
int configurationId,
string projectFullPath,
List<string> targets,
string toolsVersion,
PropertyDictionary<ProjectPropertyInstance> projectProperties,
IItemDictionary<ProjectItemInstance> projectItems,
BuildEventContext parentBuildEventContext,
int evaluationId,
int projectContextId)
: base(nodeLoggingContext,
CreateInitialContext(nodeLoggingContext,
submissionId,
configurationId,
projectFullPath,
targets,
toolsVersion,
projectProperties,
projectItems,
parentBuildEventContext,
evaluationId,
projectContextId))
{
_projectFullPath = projectFullPath;
// No need to log a redundant message in the common case
if (toolsVersion != "Current")
{
LoggingService.LogComment(this.BuildEventContext, MessageImportance.Low, "ToolsVersionInEffectForBuild", toolsVersion);
}
this.IsValid = true;
}
private static BuildEventContext CreateInitialContext(
NodeLoggingContext nodeLoggingContext,
int submissionId,
int configurationId,
string projectFullPath,
List<string> targets,
string toolsVersion,
PropertyDictionary<ProjectPropertyInstance> projectProperties,
IItemDictionary<ProjectItemInstance> projectItems,
BuildEventContext parentBuildEventContext,
int evaluationId,
int projectContextId)
{
ProjectStartedEventArgs args = CreateProjectStarted(
nodeLoggingContext,
submissionId,
configurationId,
projectFullPath,
targets,
toolsVersion,
projectProperties,
projectItems,
parentBuildEventContext,
evaluationId,
projectContextId);
nodeLoggingContext.LoggingService.LogProjectStarted(args);
return args.BuildEventContext;
}
private static ProjectStartedEventArgs CreateProjectStarted(
NodeLoggingContext nodeLoggingContext,
int submissionId,
int configurationId,
string projectFullPath,
List<string> targets,
string toolsVersion,
PropertyDictionary<ProjectPropertyInstance> projectProperties,
IItemDictionary<ProjectItemInstance> projectItems,
BuildEventContext parentBuildEventContext,
int evaluationId,
int projectContextId)
{
IEnumerable<DictionaryEntry> properties = null;
IEnumerable<DictionaryEntry> items = null;
ILoggingService loggingService = nodeLoggingContext.LoggingService;
string[] propertiesToSerialize = loggingService.PropertiesToSerialize;
// If we are only logging critical events lets not pass back the items or properties
if (!loggingService.OnlyLogCriticalEvents &&
loggingService.IncludeEvaluationPropertiesAndItemsInProjectStartedEvent &&
(!loggingService.RunningOnRemoteNode || loggingService.SerializeAllProperties))
{
if (projectProperties is null)
{
properties = [];
}
else if (Traits.LogAllEnvironmentVariables)
{
properties = projectProperties.GetCopyOnReadEnumerable(property => new DictionaryEntry(property.Name, property.EvaluatedValue));
}
else
{
properties = projectProperties.Filter(p => p is not EnvironmentDerivedProjectPropertyInstance || EnvironmentUtilities.IsWellKnownEnvironmentDerivedProperty(p.Name), p => new DictionaryEntry(p.Name, p.EvaluatedValue));
}
items = projectItems?.GetCopyOnReadEnumerable(item => new DictionaryEntry(item.ItemType, new TaskItem(item))) ?? [];
}
if (projectProperties != null &&
loggingService.IncludeEvaluationPropertiesAndItemsInProjectStartedEvent &&
propertiesToSerialize?.Length > 0 &&
!loggingService.SerializeAllProperties)
{
PropertyDictionary<ProjectPropertyInstance> projectPropertiesToSerialize = new PropertyDictionary<ProjectPropertyInstance>();
foreach (string propertyToGet in propertiesToSerialize)
{
ProjectPropertyInstance instance = projectProperties[propertyToGet];
{
if (instance != null)
{
projectPropertiesToSerialize.Set(instance);
}
}
}
properties = projectPropertiesToSerialize.Select((ProjectPropertyInstance property) => new DictionaryEntry(property.Name, property.EvaluatedValue));
}
return loggingService.CreateProjectStarted(
nodeLoggingContext.BuildEventContext,
submissionId,
configurationId,
parentBuildEventContext,
projectFullPath,
string.Join(";", targets),
properties,
items,
evaluationId,
projectContextId);
}
/// <summary>
/// Log that the project has finished
/// </summary>
/// <param name="success">Did the build succeede or not</param>
internal void LogProjectFinished(bool success)
{
ErrorUtilities.VerifyThrow(this.IsValid, "invalid");
LoggingService.LogProjectFinished(BuildEventContext, _projectFullPath, success);
this.IsValid = false;
}
/// <summary>
/// Log that a target has started
/// </summary>
internal TargetLoggingContext LogTargetBatchStarted(string projectFullPath, ProjectTargetInstance target, string parentTargetName, TargetBuiltReason buildReason)
{
ErrorUtilities.VerifyThrow(this.IsValid, "invalid");
return new TargetLoggingContext(this, projectFullPath, target, parentTargetName, buildReason);
}
}
}