forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
336 lines (303 loc) · 14.8 KB
/
Program.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
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
// ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ----------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Management.Automation;
using System.Reflection;
using Tools.Common.Loaders;
using Tools.Common.Models;
using Tools.Common.Utilities;
using VersionController.Models;
using VersionController.Netcore.Models;
namespace VersionController
{
public class Program
{
private static VersionBumper _versionBumper;
private static SyntaxChangelogGenerator _syntaxChangelogGenerator = new SyntaxChangelogGenerator();
private static Dictionary<string, AzurePSVersion> _minimalVersion = new Dictionary<string, AzurePSVersion>();
private static List<string> _projectDirectories, _outputDirectories;
private static string _rootDirectory, _moduleNameFilter;
private const string Psd1NameExtension = ".psd1";
private static IList<string> ExceptionFileNames = new List<string>()
{
"AssemblyVersionConflict.csv",
"BreakingChangeIssues.csv",
"ExtraAssemblies.csv",
"HelpIssues.csv",
"MissingAssemblies.csv",
"SignatureIssues.csv",
"ExampleIssues.csv"
};
public static void Main(string[] args)
{
var executingAssemblyPath = Assembly.GetExecutingAssembly().Location;
var versionControllerDirectory = Directory.GetParent(executingAssemblyPath).FullName;
var artifactsDirectory = Directory.GetParent(versionControllerDirectory).FullName;
var syntaxChangelog = true;
_rootDirectory = Directory.GetParent(artifactsDirectory).FullName;
_projectDirectories = new List<string>{ Path.Combine(_rootDirectory, @"src\") }.Where((d) => Directory.Exists(d)).ToList();
_outputDirectories = new List<string>{ Path.Combine(_rootDirectory, @"artifacts\Release\") }.Where((d) => Directory.Exists(d)).ToList();
SharedAssemblyLoader.Load(_outputDirectories.FirstOrDefault());
var exceptionsDirectory = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Exceptions");
if (args != null && args.Length > 0)
{
exceptionsDirectory = args[0];
syntaxChangelog = false;
}
if (!Directory.Exists(exceptionsDirectory))
{
throw new ArgumentException("Please provide a path to the Exceptions folder in the output directory (artifacts/Exceptions).");
}
_moduleNameFilter = string.Empty;
if (args != null && args.Length > 1)
{
_moduleNameFilter = args[1] + Psd1NameExtension;
}
ConsolidateExceptionFiles(exceptionsDirectory);
ValidateManifest();
if (syntaxChangelog) {
GenerateSyntaxChangelog(_rootDirectory);
}
BumpVersions();
}
private static void GenerateSyntaxChangelog(string _projectDirectories)
{
_syntaxChangelogGenerator.Analyze(_projectDirectories);
}
private static void ValidateManifest()
{
foreach (var directory in _projectDirectories)
{
var children = Directory.GetDirectories(directory);
foreach (var childDir in children)
{
if(GetModuleReadMe(childDir))
{
ValidateManifestPerModule(childDir);
}
}
}
}
private static void ValidateManifestPerModule(string directory)
{
var changeLogs = Directory.GetFiles(directory, "ChangeLog.md", SearchOption.AllDirectories);
if(changeLogs.Length != 1)
{
Console.Error.WriteLine($"no ChangeLog.md under {directory}");
} else
{
//Check psd1 file
GetModuleManifestPath(Directory.GetParent(changeLogs.FirstOrDefault()).FullName);
}
}
// For long term, all modules should contain readme.md to describe module
// It returns true/false for short term.
private static bool GetModuleReadMe(string directory)
{
return File.Exists(Path.Combine(directory, "readme.md"));
}
/// <summary>
/// Bump the version of changed modules or a specified module.
/// </summary>
private static void BumpVersions()
{
string targetRepositories = null;
using (PowerShell powershell = PowerShell.Create())
{
powershell.AddScript("Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process;");
powershell.AddScript("Register-PackageSource -Name PSGallery -Location https://www.powershellgallery.com/api/v2 -ProviderName PowerShellGet");
powershell.AddScript("Register-PackageSource -Name TestGallery -Location https://www.poshtestgallery.com/api/v2 -ProviderName PowerShellGet");
powershell.AddScript("Get-PSRepository");
var repositories = powershell.Invoke();
string psgallery = null;
string testgallery = null;
foreach (var repo in repositories)
{
if ("https://www.powershellgallery.com/api/v2".Equals(repo.Properties["SourceLocation"]?.Value))
{
psgallery = repo.Properties["Name"]?.Value?.ToString();
}
if ("https://www.poshtestgallery.com/api/v2".Equals(repo.Properties["SourceLocation"]?.Value))
{
testgallery = repo.Properties["Name"]?.Value?.ToString();
}
}
if (psgallery == null)
{
throw new Exception("Cannot calculate module version because PSGallery is not available.");
}
targetRepositories = psgallery;
if (testgallery == null)
{
Console.WriteLine("Warning: Cannot calculate module version precisely because TestGallery is not available.");
}
else
{
targetRepositories += $",{testgallery}";
}
}
var changedModules = new List<string>();
foreach (var directory in _projectDirectories)
{
var changeLogs = Directory.GetFiles(directory, "ChangeLog.md", SearchOption.AllDirectories)
.Where(f => !ModuleFilter.IsAzureStackModule(f) && IsChangeLogUpdated(f))
.Select(f => GetModuleManifestPath(Directory.GetParent(f).FullName))
.Where(m => m.Contains(_moduleNameFilter))
.ToList();
changedModules.AddRange(changeLogs);
}
// Read MinimalVersion.csv
var executingAssemblyPath = Assembly.GetExecutingAssembly().Location;
var versionControllerDirectory = Directory.GetParent(executingAssemblyPath).FullName;
var miniVersionFile = Path.Combine(versionControllerDirectory, "MinimalVersion.csv");
if (File.Exists(miniVersionFile))
{
var file = File.ReadAllLines(miniVersionFile);
var header = file.First();
var lines = file.Skip(1).Where(c => !string.IsNullOrEmpty(c));
var bumpingModule = _moduleNameFilter.Replace(Psd1NameExtension, "");
List<string> _minimalVersionContent = new List<string>() { header };
foreach (var line in lines)
{
var cols = line.Split(",").Select(c => c.StartsWith("\"") ? c.Substring(1) : c)
.Select(c => c.EndsWith("\"") ? c.Substring(0, c.Length - 1) : c)
.Select(c => c.Trim()).ToArray();
if (cols.Length >= 2)
{
_minimalVersion.Add(cols[0], new AzurePSVersion(cols[1]));
// Bump one module, only remove its minimal version from MinimalVersion.csv content
if (!string.IsNullOrEmpty(bumpingModule) && !cols[0].Equals(bumpingModule))
{
_minimalVersionContent.Add(line);
}
}
}
// Clean MinimalVersion.csv
File.WriteAllLines(Path.Combine(_rootDirectory, @"tools\VersionController", "MinimalVersion.csv"), _minimalVersionContent.ToArray());
}
//Make Az.Accounts as the last module to calculate
changedModules = changedModules.OrderByDescending(c => c == "Az.Accounts" ? "" : c).ToList();
foreach (var projectModuleManifestPath in changedModules)
{
var moduleFileName = Path.GetFileName(projectModuleManifestPath);
var moduleName = moduleFileName.Replace(".psd1", "");
var outputModuleManifest = _outputDirectories
.SelectMany(d => Directory.GetDirectories(d, moduleName))
.SelectMany(d => Directory.GetFiles(d, moduleFileName))
.ToList();
if (outputModuleManifest.Count == 0)
{
throw new FileNotFoundException("No module manifest file found in output directories");
}
else if (outputModuleManifest.Count > 1)
{
throw new IndexOutOfRangeException("Multiple module manifest files found in output directories");
}
var outputModuleManifestFile = outputModuleManifest.FirstOrDefault();
_versionBumper = new VersionBumper(new VersionFileHelper(_rootDirectory, outputModuleManifestFile, projectModuleManifestPath), changedModules);
_versionBumper.PSRepositories = targetRepositories;
if (_minimalVersion.ContainsKey(moduleName))
{
_versionBumper.MinimalVersion = _minimalVersion[moduleName];
}
_versionBumper.BumpAllVersions();
}
}
/// <summary>
/// Check if a change log has anything under the Upcoming Release header.
/// </summary>
/// <param name="changeLogPath">Path to the change log.</param>
/// <returns>True if there is an entry under the Upcoming Release header, false otherwise.</returns>
private static bool IsChangeLogUpdated(string changeLogPath)
{
var file = File.ReadAllLines(changeLogPath);
var idx = 0;
while (idx < file.Length && !file[idx].Equals("## Upcoming Release"))
{
idx++;
}
if (idx == file.Length)
{
throw new IndexOutOfRangeException("Unable to find the Upcoming Release header in change log " + changeLogPath);
}
bool found = false;
while (++idx < file.Length && !file[idx].Contains("## Version"))
{
if (!string.IsNullOrWhiteSpace(file[idx]))
{
found = true;
break;
}
}
if (found && idx < file.Length)
{
return true;
}
return false;
}
/// <summary>
/// Get the path to the module manifest file from its parent folder. Excludes the
/// Netcore module manifest file, and does extra validation around the number of
/// module manifest files found.
/// </summary>
/// <param name="parentFolder">The folder containing the checked-in module manifest file.</param>
/// <returns>The path to the module manifest file.</returns>
private static string GetModuleManifestPath(string parentFolder)
{
var moduleManifest = Directory.GetFiles(parentFolder, "*.psd1").ToList();
if (moduleManifest.Count == 0)
{
throw new FileNotFoundException("No module manifest file found in directory " + parentFolder);
}
else if (moduleManifest.Count > 1)
{
throw new IndexOutOfRangeException("Multiple module manifest files found in directory " + parentFolder);
}
return moduleManifest.FirstOrDefault();
}
private static void ConsolidateExceptionFiles(string exceptionsDirectory)
{
foreach (var exceptionFileName in ExceptionFileNames)
{
var moduleExceptionFilePaths = Directory.EnumerateFiles(exceptionsDirectory, exceptionFileName, SearchOption.AllDirectories).ToList();
var exceptionFilePath = Path.Combine(exceptionsDirectory, exceptionFileName);
if (File.Exists(exceptionFilePath))
{
File.Delete(exceptionFilePath);
}
File.Create(exceptionFilePath).Close();
var fileEmpty = true;
foreach (var moduleExceptionFilePath in moduleExceptionFilePaths)
{
var content = File.ReadAllLines(moduleExceptionFilePath);
if (content.Length > 1)
{
if (fileEmpty)
{
// Write the header
File.WriteAllLines(exceptionFilePath, new string[] { content.FirstOrDefault() });
fileEmpty = false;
}
// Write everything but the header
content = content.Skip(1).ToArray();
File.AppendAllLines(exceptionFilePath, content);
}
}
}
}
}
}