-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathProgram.cs
480 lines (408 loc) · 21.7 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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
#pragma warning disable CA1050
#pragma warning disable SA1649
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text.Json;
using System.Threading.Tasks;
using Build;
using Cake.Common;
using Cake.Common.IO;
using Cake.Common.Net;
using Cake.Common.Tools.DotNet;
using Cake.Common.Tools.DotNet.Build;
using Cake.Common.Tools.DotNet.MSBuild;
using Cake.Common.Tools.DotNet.NuGet.Push;
using Cake.Common.Tools.DotNet.NuGet.Source;
using Cake.Common.Tools.DotNet.Pack;
using Cake.Common.Tools.DotNet.Restore;
using Cake.Common.Tools.DotNet.Test;
using Cake.Common.Tools.GitVersion;
using Cake.Compression;
using Cake.Core;
using Cake.Core.Diagnostics;
using Cake.Core.IO;
using Cake.Frosting;
using Path = System.IO.Path;
using File = System.IO.File;
return new CakeHost()
.InstallTool(new Uri("dotnet:?package=GitVersion.Tool&version=5.10.1"))
.UseContext<BuildContext>()
.Run(args);
public static class Constants
{
public const string Release = "Release";
public static readonly string SourceDirectoryPath = Path.Combine("..", "src");
public static readonly string OutputDirectoryPath = Path.Combine("..", ".output");
public static readonly string PackageVersionPath = Path.Combine(OutputDirectoryPath, "package-version.txt");
public static readonly string SolutionPath = Path.Combine(SourceDirectoryPath, "EphemeralMongo.sln");
public static readonly string RuntimesPath = Path.Combine(SourceDirectoryPath, "EphemeralMongo.Runtimes", "runtimes");
public static readonly string TestProjectPath = Path.Combine(SourceDirectoryPath, "EphemeralMongo.Core.Tests", "EphemeralMongo.Core.Tests.csproj");
public static readonly string CoreProjectPath = Path.Combine(SourceDirectoryPath, "EphemeralMongo.Core", "EphemeralMongo.Core.csproj");
}
public class BuildContext : FrostingContext
{
public BuildContext(ICakeContext context) : base(context)
{
this.NugetApiKey = context.Argument("nuget-api-key", string.Empty);
this.NugetSource = context.Argument("nuget-source", string.Empty);
}
public DotNetMSBuildSettings MSBuildSettings { get; } = new DotNetMSBuildSettings();
public string NugetApiKey { get; }
public string NugetSource { get; }
public void AddMSBuildSetting(string name, string value, bool log = false)
{
if (log)
{
this.Log.Information(name + ": " + value);
}
if (!string.IsNullOrWhiteSpace(value))
{
this.MSBuildSettings.Properties[name] = new[] { value };
}
}
}
[TaskName("Clean")]
public sealed class CleanTask : FrostingTask<BuildContext>
{
public override void Run(BuildContext context)
{
var objGlobPath = Path.Combine(Constants.SourceDirectoryPath, "*", "obj");
var binGlobPath = Path.Combine(Constants.SourceDirectoryPath, "*", "bin");
context.CleanDirectories(Constants.OutputDirectoryPath);
context.CleanDirectories(Constants.RuntimesPath);
context.CleanDirectories(objGlobPath);
context.CleanDirectories(binGlobPath);
Directory.CreateDirectory(Constants.OutputDirectoryPath);
}
}
[TaskName("GitVersion")]
[IsDependentOn(typeof(CleanTask))]
public sealed class GitVersionTask : FrostingTask<BuildContext>
{
public override void Run(BuildContext context)
{
var gitVersion = context.GitVersion();
context.AddMSBuildSetting("Version", gitVersion.NuGetVersion, log: true);
context.AddMSBuildSetting("VersionPrefix", gitVersion.MajorMinorPatch, log: true);
context.AddMSBuildSetting("VersionSuffix", gitVersion.PreReleaseTag, log: true);
context.AddMSBuildSetting("PackageVersion", gitVersion.FullSemVer, log: true);
context.AddMSBuildSetting("InformationalVersion", gitVersion.InformationalVersion, log: true);
context.AddMSBuildSetting("AssemblyVersion", gitVersion.AssemblySemVer, log: true);
context.AddMSBuildSetting("FileVersion", gitVersion.AssemblySemFileVer, log: true);
context.AddMSBuildSetting("RepositoryBranch", gitVersion.BranchName, log: true);
context.AddMSBuildSetting("RepositoryCommit", gitVersion.Sha, log: true);
File.WriteAllText(Constants.PackageVersionPath, gitVersion.FullSemVer);
}
}
[TaskName("DownloadMongo")]
[IsDependentOn(typeof(GitVersionTask))]
public sealed class DownloadMongoTask : AsyncFrostingTask<BuildContext>
{
private static readonly ProjectInfo[] Projects =
{
// MongoDB 7.x
new ProjectInfo("EphemeralMongo7.runtime.win-x64", "windows", "x86_64", "base", 7, "win-x64"),
new ProjectInfo("EphemeralMongo7.runtime.osx-x64", "macos", "x86_64", "base", 7, "osx-x64"),
new ProjectInfo("EphemeralMongo7.runtime.osx-arm64", "macos", "arm64", "base", 7, "osx-arm64"),
new ProjectInfo("EphemeralMongo7.runtime.linux-x64", "ubuntu2004", "x86_64", "targeted", 7, "linux-x64"),
new ProjectInfo("EphemeralMongo7.runtime.ubuntu.22.04-x64", "ubuntu2204", "x86_64", "targeted", 7, "ubuntu.22.04-x64"),
// MongoDB 6.x
new ProjectInfo("EphemeralMongo6.runtime.win-x64", "windows", "x86_64", "base", 6, "win-x64"),
new ProjectInfo("EphemeralMongo6.runtime.osx-x64", "macos", "x86_64", "base", 6, "osx-x64"),
new ProjectInfo("EphemeralMongo6.runtime.osx-arm64", "macos", "arm64", "base", 6, "osx-arm64"),
new ProjectInfo("EphemeralMongo6.runtime.linux-x64", "ubuntu1804", "x86_64", "targeted", 6, "linux-x64"),
new ProjectInfo("EphemeralMongo6.runtime.ubuntu.22.04-x64", "ubuntu2204", "x86_64", "targeted", 6, "ubuntu.22.04-x64"),
// MongoDB 5.x
new ProjectInfo("EphemeralMongo5.runtime.win-x64", "windows", "x86_64", "base", 5, "win-x64"),
new ProjectInfo("EphemeralMongo5.runtime.osx-x64", "macos", "x86_64", "base", 5, "osx-x64"),
new ProjectInfo("EphemeralMongo5.runtime.linux-x64", "ubuntu1804", "x86_64", "targeted", 5, "linux-x64")
};
public override async Task RunAsync(BuildContext context)
{
var tasks = new List<Task>();
foreach (var project in Projects)
{
tasks.Add(Task.Factory.StartNew(() => RunProject(context, project), TaskCreationOptions.LongRunning).Unwrap());
}
await Task.WhenAll(tasks);
}
private static async Task RunProject(BuildContext context, ProjectInfo project)
{
var mongoVersions = GetMongoVersions(context);
var toolsVersions = GetToolsVersions(context);
// Find MongoDB for the current project
var mongoVersion = mongoVersions.Versions.FirstOrDefault(x => x.ProductionRelease && x.Version.StartsWith(project.MajorVersion.ToString(CultureInfo.InvariantCulture)))
?? throw new InvalidOperationException("Could not find production release for MongoDB " + project.MajorVersion);
var mongoDownload = mongoVersion.Downloads.SingleOrDefault(x => x.Architecture == project.Architecture && x.Edition == project.Edition && x.Target == project.Target)
?? throw new InvalidOperationException("Could not find MongoDB " + project.Architecture + ", " + project.Edition + ", " + project.Target);
// Find MongoDB tools for the current project
var toolsVersion = toolsVersions.Versions.FirstOrDefault()
?? throw new InvalidOperationException("Could not find MongoDB tools");
var toolsDownload = toolsVersion.Downloads.SingleOrDefault(x => x.Architecture == project.Architecture && x.Name == project.Target)
?? throw new InvalidOperationException("Could not find MongoDB tools " + project.Architecture + ", " + project.Target);
FilePath? mongoArchiveFilePath = null;
FilePath? toolsArchiveFilePath = null;
try
{
// Download MongoDB and its tools
context.Log.Information($"Downloading MongoDB {mongoDownload.Archive.Url}");
context.Log.Information($"Downloading MongoDB tools {toolsDownload.Archive.Url}");
var mongoArchiveFilePathTask = Task.Run(() => context.DownloadFile(mongoDownload.Archive.Url));
var toolsArchiveFilePathTask = Task.Run(() => context.DownloadFile(toolsDownload.Archive.Url));
mongoArchiveFilePath = await mongoArchiveFilePathTask;
toolsArchiveFilePath = await toolsArchiveFilePathTask;
context.Log.Information($"MongoDB downloaded to {mongoArchiveFilePath.FullPath}");
context.Log.Information($"MongoDB tools downloaded to {toolsArchiveFilePath.FullPath}");
// Verify SHA256 hash
EnsureHashMatch(context, mongoArchiveFilePath.FullPath, mongoDownload.Archive.Sha256);
EnsureHashMatch(context, toolsArchiveFilePath.FullPath, toolsDownload.Archive.Sha256);
// Uncompress archive
var projectDir = Directory.CreateDirectory(Path.Combine(Constants.RuntimesPath, project.Name, project.Rid, "native", "mongodb"));
var binDir = Directory.CreateDirectory(Path.Combine(projectDir.FullName, "bin"));
var mongoUncompressDir = Directory.CreateDirectory(Path.Combine(projectDir.FullName, "community-server"));
var toolsUncompressDir = Directory.CreateDirectory(Path.Combine(projectDir.FullName, "database-tools"));
Uncompress(context, mongoDownload.Archive.Url, mongoArchiveFilePath.FullPath, mongoUncompressDir.FullName);
Uncompress(context, toolsDownload.Archive.Url, toolsArchiveFilePath.FullPath, toolsUncompressDir.FullName);
// Find mongod executable
var mongoExecutable = context.Globber.GetFiles(Path.Combine(mongoUncompressDir.FullName, "*", "bin", project.MongoExecutableFileName)).FirstOrDefault()
?? throw new InvalidOperationException("Could not find MongoDB executable in " + mongoUncompressDir.FullName);
// Find mongoimport
var mongoImportExecutable = context.Globber.GetFiles(Path.Combine(toolsUncompressDir.FullName, "*", "bin", project.MongoImportExecutableFileName)).FirstOrDefault()
?? throw new InvalidOperationException("Could not find MongoDB import tool executable in " + toolsUncompressDir.FullName);
// Find mongoexport
var mongoExportExecutable = context.Globber.GetFiles(Path.Combine(toolsUncompressDir.FullName, "*", "bin", project.MongoExportExecutableFileName)).FirstOrDefault()
?? throw new InvalidOperationException("Could not find MongoDB export tool executable in " + toolsUncompressDir.FullName);
// Prepare their new paths
var newMongoExecutablePath = Path.Combine(binDir.FullName, project.MongoExecutableFileName);
var newMongoImportExecutablePath = Path.Combine(binDir.FullName, project.MongoImportExecutableFileName);
var newMongoExportExecutablePath = Path.Combine(binDir.FullName, project.MongoExportExecutableFileName);
// Find miscellaneous files such as LICENSE, README, THIRD-PARTY-NOTICES, ...
var mongoMiscFiles = context.Globber.GetFiles(Path.Combine(mongoUncompressDir.FullName, "*", "*")).ToList();
var toolsMiscFiles = context.Globber.GetFiles(Path.Combine(toolsUncompressDir.FullName, "*", "*")).ToList();
// Copy mongod executable with its associated license and README file together to the upper directory, delete any remaining file and directory
context.Log.Information($"Moving MongoDB {mongoExecutable.FullPath} to {newMongoExecutablePath}");
File.Move(mongoExecutable.FullPath, newMongoExecutablePath);
context.Log.Information($"Moving MongoDB import {mongoImportExecutable.FullPath} to {newMongoImportExecutablePath}");
File.Move(mongoImportExecutable.FullPath, newMongoImportExecutablePath);
context.Log.Information($"Moving MongoDB export {mongoExportExecutable.FullPath} to {newMongoExportExecutablePath}");
File.Move(mongoExportExecutable.FullPath, newMongoExportExecutablePath);
foreach (var mongoMiscFile in mongoMiscFiles)
{
var newMongoMiscFilePath = Path.Combine(mongoUncompressDir.FullName, mongoMiscFile.GetFilename().ToString());
context.Log.Information($"Moving misc file {mongoMiscFile.FullPath} to {newMongoMiscFilePath}");
File.Move(mongoMiscFile.FullPath, newMongoMiscFilePath);
}
foreach (var toolsMiscFile in toolsMiscFiles)
{
var newToolsMiscFilePath = Path.Combine(toolsUncompressDir.FullName, toolsMiscFile.GetFilename().ToString());
context.Log.Information($"Moving misc file {toolsMiscFile.FullPath} to {newToolsMiscFilePath}");
File.Move(toolsMiscFile.FullPath, newToolsMiscFilePath);
}
Directory.Delete(mongoExecutable.GetDirectory().GetParent().FullPath, recursive: true);
Directory.Delete(mongoImportExecutable.GetDirectory().GetParent().FullPath, recursive: true);
// Write versions of MongoDB and its tools
await File.WriteAllTextAsync(Path.Combine(mongoUncompressDir.FullName, "version.txt"), mongoVersion.Version);
await File.WriteAllTextAsync(Path.Combine(toolsUncompressDir.FullName, "version.txt"), toolsVersion.Version);
// Replace "FullMongoVersion" property in runtime project
const string placeholder = "<FullMongoVersion>PLACEHOLDER</FullMongoVersion>";
var runtimeProjectCsprojPath = Path.Combine(Constants.RuntimesPath, "..", project.Name + ".csproj");
var oldRuntimeCsprojContents = await File.ReadAllTextAsync(runtimeProjectCsprojPath);
var newRuntimeCsprojContents = oldRuntimeCsprojContents.Replace(placeholder, "<FullMongoVersion>" + mongoVersion.Version + "</FullMongoVersion>");
await File.WriteAllTextAsync(runtimeProjectCsprojPath, newRuntimeCsprojContents);
// Replace "FullMongoVersion" property in all-in-one project
var aioProjectName = "EphemeralMongo" + project.MajorVersion.ToString(CultureInfo.InvariantCulture);
var aioProjectCsprojPath = Path.Combine(Constants.SourceDirectoryPath, aioProjectName, aioProjectName + ".csproj");
var oldAioCsprojContents = await File.ReadAllTextAsync(aioProjectCsprojPath);
var newAioCsprojContents = oldAioCsprojContents.Replace(placeholder, "<FullMongoVersion>" + mongoVersion.Version + "</FullMongoVersion>");
await File.WriteAllTextAsync(aioProjectCsprojPath, newAioCsprojContents);
}
finally
{
if (mongoArchiveFilePath != null)
{
File.Delete(mongoArchiveFilePath.FullPath);
}
if (toolsArchiveFilePath != null)
{
File.Delete(toolsArchiveFilePath.FullPath);
}
}
}
private static MongoVersionsDto GetMongoVersions(BuildContext context)
{
// Parse JSON file containing all versions and OS-specific download URLs
const string currentJsonUrl = "https://s3.amazonaws.com/downloads.mongodb.org/current.json";
var jsonFilePath = context.DownloadFile(currentJsonUrl);
try
{
var currentJsonRaw = File.ReadAllText(jsonFilePath.FullPath);
return JsonSerializer.Deserialize<MongoVersionsDto>(currentJsonRaw) ?? throw new Exception("An error occured while parsing " + currentJsonUrl);
}
finally
{
File.Delete(jsonFilePath.FullPath);
}
}
private static ToolsVersionsDto GetToolsVersions(BuildContext context)
{
// Parse JSON file containing all versions and OS-specific download URLs
const string currentJsonUrl = "https://s3.amazonaws.com/downloads.mongodb.org/tools/db/release.json";
var jsonFilePath = context.DownloadFile(currentJsonUrl);
try
{
var currentJsonRaw = File.ReadAllText(jsonFilePath.FullPath);
return JsonSerializer.Deserialize<ToolsVersionsDto>(currentJsonRaw) ?? throw new Exception("An error occured while parsing " + currentJsonUrl);
}
finally
{
File.Delete(jsonFilePath.FullPath);
}
}
private static void EnsureHashMatch(BuildContext context, string filePath, string expectedHexHash)
{
// Verify SHA256 hash
context.Log.Information($"Verifying SHA256 hash of {filePath}...");
using (var archiveFileHasher = SHA256.Create())
using (var archiveFileStream = File.OpenRead(filePath))
{
var hashBytes = archiveFileHasher.ComputeHash(archiveFileStream);
var hashStr = Convert.ToHexString(hashBytes);
if (!hashStr.Equals(expectedHexHash, StringComparison.OrdinalIgnoreCase))
{
throw new InvalidOperationException("An error occured during download, hashes don't match for " + filePath);
}
}
}
private static void Uncompress(BuildContext context, string archiveUrl, string archiveFilePath, string uncompressDir)
{
context.Log.Information($"Uncompressing to {uncompressDir}");
if (archiveUrl.EndsWith(".zip"))
{
context.ZipUncompress(archiveFilePath, uncompressDir);
}
else if (archiveUrl.EndsWith(".tgz"))
{
context.GZipUncompress(archiveFilePath, uncompressDir);
}
else
{
throw new InvalidOperationException("Unexpected file format for " + archiveUrl);
}
}
}
[TaskName("Pack")]
[IsDependentOn(typeof(DownloadMongoTask))]
public sealed class PackTask : FrostingTask<BuildContext>
{
public override void Run(BuildContext context) => context.DotNetPack(Constants.SolutionPath, new DotNetPackSettings
{
Configuration = Constants.Release,
MSBuildSettings = context.MSBuildSettings,
OutputDirectory = Constants.OutputDirectoryPath,
NoBuild = false,
NoRestore = false,
NoLogo = true,
});
}
[TaskName("Test")]
[IsDependentOn(typeof(PackTask))]
public sealed class TestTask : FrostingTask<BuildContext>
{
public override void Run(BuildContext context)
{
const string outputSourceName = "output";
var outputSource = context.MakeAbsolute(context.File(Constants.OutputDirectoryPath)).FullPath.Replace('/', Path.DirectorySeparatorChar);
try
{
context.DotNetNuGetRemoveSource(outputSourceName); // for local debugging purposes
}
catch
{
// ignored
}
context.Log.Information($"Adding nuget source {outputSource}");
context.DotNetNuGetAddSource(outputSourceName, new DotNetNuGetSourceSettings
{
Source = outputSource
});
try
{
context.DotNetRemoveReference(Constants.TestProjectPath, Constants.CoreProjectPath);
var packageNames = new[]
{
"EphemeralMongo4",
"EphemeralMongo5",
"EphemeralMongo6",
"EphemeralMongo7",
};
var packageVersion = File.ReadAllText(Constants.PackageVersionPath);
context.Log.Information($"Package version: {packageVersion}");
foreach (var packageName in packageNames)
{
context.Log.Information($"=============== Add package {packageName} ===============");
context.DotNetAddPackage(Constants.TestProjectPath, packageName, version: packageVersion, preRelease: true);
try
{
context.Log.Information($"=============== Dotnet restore {packageName} ===============");
context.DotNetRestore(Constants.TestProjectPath, new DotNetRestoreSettings
{
Force = true,
NoCache = true,
});
context.Log.Information($"=============== Dotnet build {packageName} ===============");
context.DotNetBuild(Constants.TestProjectPath, new DotNetBuildSettings
{
Configuration = Constants.Release,
NoRestore = true,
NoLogo = true,
});
context.Log.Information($"=============== Dotnet test {packageName} ===============");
context.DotNetTest(Constants.TestProjectPath, new DotNetTestSettings
{
Configuration = Constants.Release,
Loggers = new[] { "console;verbosity=detailed", "trx" },
NoBuild = true,
NoRestore = true,
NoLogo = true,
});
}
finally
{
context.Log.Information($"=============== Remove package {packageName} ===============");
context.DotNetRemovePackage(Constants.TestProjectPath, packageName);
}
}
}
finally
{
context.DotNetNuGetRemoveSource(outputSourceName);
context.DotNetAddReference(Constants.TestProjectPath, Constants.CoreProjectPath);
}
}
}
[TaskName("Push")]
[IsDependentOn(typeof(TestTask))]
public sealed class PushTask : FrostingTask<BuildContext>
{
public override void Run(BuildContext context)
{
foreach (var packageFilePath in context.GetFiles(Path.Combine(Constants.OutputDirectoryPath, "*.nupkg")))
{
context.DotNetNuGetPush(packageFilePath, new DotNetNuGetPushSettings
{
ApiKey = context.NugetApiKey,
Source = context.NugetSource,
IgnoreSymbols = false
});
}
}
}
[TaskName("Default")]
[IsDependentOn(typeof(TestTask))]
public sealed class DefaultTask : FrostingTask
{
}