-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathComputeReferenceStaticWebAssetItems.cs
140 lines (116 loc) · 4.76 KB
/
ComputeReferenceStaticWebAssetItems.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using System.Globalization;
using Microsoft.Build.Framework;
namespace Microsoft.AspNetCore.StaticWebAssets.Tasks;
public class ComputeReferenceStaticWebAssetItems : Task
{
[Required]
public ITaskItem[] Assets { get; set; }
public ITaskItem[] Patterns { get; set; }
[Required]
public string AssetKind { get; set; }
[Required]
public string ProjectMode { get; set; }
[Required]
public string Source { get; set; }
public bool UpdateSourceType { get; set; } = true;
public bool MakeReferencedAssetOriginalItemSpecAbsolute { get; set; }
[Output]
public ITaskItem[] StaticWebAssets { get; set; }
[Output]
public ITaskItem[] DiscoveryPatterns { get; set; }
public override bool Execute()
{
try
{
var existingAssets = Assets
.Where(asset => StaticWebAsset.HasSourceId(asset, Source))
.Select(StaticWebAsset.FromTaskItem)
.GroupBy(
a => a.ComputeTargetPath("", '/'),
(key, group) => (key, StaticWebAsset.ChooseNearestAssetKind(group, AssetKind)));
var resultAssets = new List<StaticWebAsset>();
foreach (var (key, group) in existingAssets)
{
if (!TryGetUniqueAsset(group, out var selected))
{
if (selected == null)
{
Log.LogMessage(MessageImportance.Low, "No compatible asset found for '{0}'", key);
continue;
}
else
{
Log.LogError("More than one compatible asset found for '{0}'.", selected.Identity);
return false;
}
}
if (ShouldIncludeAssetAsReference(selected, out var reason))
{
selected.SourceType = UpdateSourceType ? StaticWebAsset.SourceTypes.Project : selected.SourceType;
selected.OriginalItemSpec = MakeReferencedAssetOriginalItemSpecAbsolute ? Path.GetFullPath(selected.OriginalItemSpec) : selected.OriginalItemSpec;
resultAssets.Add(selected);
}
Log.LogMessage(MessageImportance.Low, reason);
}
var patterns = new List<StaticWebAssetsDiscoveryPattern>();
if (Patterns != null)
{
foreach (var pattern in Patterns)
{
if (!StaticWebAssetsDiscoveryPattern.HasSourceId(pattern, Source))
{
Log.LogMessage(MessageImportance.Low, "Skipping pattern '{0}' because is not defined in the current project.", pattern.ItemSpec);
}
else
{
Log.LogMessage(MessageImportance.Low, "Including pattern '{0}' because is defined in the current project.", pattern.ToString());
patterns.Add(StaticWebAssetsDiscoveryPattern.FromTaskItem(pattern));
}
}
}
StaticWebAssets = resultAssets.Select(a => a.ToTaskItem()).ToArray();
DiscoveryPatterns = patterns.Select(p => p.ToTaskItem()).ToArray();
}
catch (Exception ex)
{
Log.LogErrorFromException(ex, showStackTrace: true, showDetail: true, file: null);
}
return !Log.HasLoggedErrors;
}
private static bool TryGetUniqueAsset(IEnumerable<StaticWebAsset> candidates, out StaticWebAsset selected)
{
selected = null;
foreach (var asset in candidates)
{
if (selected != null)
{
return false;
}
selected = asset;
}
return selected != null;
}
private bool ShouldIncludeAssetAsReference(StaticWebAsset candidate, out string reason)
{
if (!StaticWebAssetsManifest.ManifestModes.ShouldIncludeAssetAsReference(candidate, ProjectMode))
{
reason = string.Format(
CultureInfo.InvariantCulture,
"Skipping candidate asset '{0}' because project mode is '{1}' and asset mode is '{2}'",
candidate.Identity,
ProjectMode,
candidate.AssetMode);
return false;
}
reason = string.Format(
CultureInfo.InvariantCulture,
"Accepted candidate asset '{0}' because project mode is '{1}' and asset mode is '{2}'",
candidate.Identity,
ProjectMode,
candidate.AssetMode);
return true;
}
}