Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/BuildGraph/Tasks/DeployToolTask.cs
Ben Marsh 31a83fc628 Horde: Move bundle implementation into a separate namespace.
[CL 26226699 by Ben Marsh in ue5-main branch]
2023-06-24 16:37:55 -04:00

235 lines
6.7 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using AutomationTool;
using EpicGames.Core;
using System;
using System.Collections.Generic;
using System.Text.Json;
using System.IO;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using UnrealBuildBase;
using Microsoft.Extensions.Logging;
using EpicGames.Horde.Storage.Backends;
using EpicGames.Horde.Storage.Bundles;
using EpicGames.Horde.Storage;
using EpicGames.Horde.Storage.Nodes;
using System.Threading;
using System.Data;
#nullable enable
namespace AutomationTool.Tasks
{
/// <summary>
/// Parameters for a DeployTool task
/// </summary>
public class DeployToolTaskParameters
{
/// <summary>
/// Identifier for the tool
/// </summary>
[TaskParameter]
public string Id = String.Empty;
/// <summary>
/// Settings file to use for the deployment. Should be a JSON file containing server name and access token.
/// </summary>
[TaskParameter]
public string Settings = String.Empty;
/// <summary>
/// Version number for the new tool
/// </summary>
[TaskParameter]
public string Version = String.Empty;
/// <summary>
/// Duration over which to roll out the tool, in minutes.
/// </summary>
[TaskParameter(Optional = true)]
public int Duration = 0;
/// <summary>
/// Whether to create the deployment as paused
/// </summary>
[TaskParameter(Optional = true)]
public bool Paused = false;
/// <summary>
/// Zip file containing files to upload
/// </summary>
[TaskParameter(Optional = true)]
public string? File = null!;
/// <summary>
/// Directory to upload for the tool
/// </summary>
[TaskParameter(Optional = true)]
public string? Directory = null!;
}
/// <summary>
/// Deploys a tool update through Horde
/// </summary>
[TaskElement("DeployTool", typeof(DeployToolTaskParameters))]
public class DeployToolTask : SpawnTaskBase
{
class DeploySettings
{
public string Server { get; set; } = String.Empty;
public string? Token { get; set; }
}
/// <summary>
/// Options for a new deployment
/// </summary>
class CreateDeploymentRequest
{
public string Version { get; set; } = "Unknown";
public double? Duration { get; set; }
public bool? CreatePaused { get; set; }
public string? Node { get; set; }
}
/// <summary>
/// Parameters for this task
/// </summary>
DeployToolTaskParameters Parameters;
/// <summary>
/// Construct a Helm task
/// </summary>
/// <param name="InParameters">Parameters for the task</param>
public DeployToolTask(DeployToolTaskParameters InParameters)
{
Parameters = InParameters;
}
/// <summary>
/// Execute the task.
/// </summary>
/// <param name="Job">Information about the current job</param>
/// <param name="BuildProducts">Set of build products produced by this node.</param>
/// <param name="TagNameToFileSet">Mapping from tag names to the set of files they include</param>
public override async Task ExecuteAsync(JobContext Job, HashSet<FileReference> BuildProducts, Dictionary<string, HashSet<FileReference>> TagNameToFileSet)
{
FileReference settingsFile = ResolveFile(Parameters.Settings);
if (!FileReference.Exists(settingsFile))
{
throw new AutomationException($"Settings file '{settingsFile}' does not exist");
}
byte[] settingsData = await FileReference.ReadAllBytesAsync(settingsFile);
JsonSerializerOptions jsonOptions = new JsonSerializerOptions { AllowTrailingCommas = true, ReadCommentHandling = JsonCommentHandling.Skip, PropertyNameCaseInsensitive = true };
DeploySettings? settings = JsonSerializer.Deserialize<DeploySettings>(settingsData, jsonOptions);
if (settings == null)
{
throw new AutomationException($"Unable to read settings file {settingsFile}");
}
else if (settings.Server == null)
{
throw new AutomationException($"Missing 'server' key from {settingsFile}");
}
Uri serverUri = new Uri(settings.Server);
HttpClient CreateHttpClient()
{
HttpClient httpClient = new HttpClient();
httpClient.BaseAddress = new Uri(serverUri, $"api/v1/tools/{Parameters.Id}/");
if (settings?.Token != null)
{
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", settings.Token);
}
return httpClient;
}
BundleNodeHandle handle;
HttpStorageClient storageClient = new HttpStorageClient(CreateHttpClient, () => new HttpClient(), null, Logger);
await using (BundleWriter treeWriter = storageClient.CreateWriter())
{
DirectoryNode sandbox = new DirectoryNode();
if (Parameters.File != null)
{
using FileStream stream = FileReference.Open(ResolveFile(Parameters.File), FileMode.Open, FileAccess.Read);
await sandbox.CopyFromZipStreamAsync(stream, treeWriter, new ChunkingOptions());
}
else if (Parameters.Directory != null)
{
DirectoryInfo directoryInfo = ResolveDirectory(Parameters.Directory).ToDirectoryInfo();
await sandbox.CopyFromDirectoryAsync(directoryInfo, new ChunkingOptions(), treeWriter, null);
}
else
{
throw new AutomationException("Either File=... or Directory=... must be specified");
}
handle = await treeWriter.FlushAsync(sandbox);
}
CreateDeploymentRequest request = new CreateDeploymentRequest();
request.Version = Parameters.Version;
if (Parameters.Duration != 0)
{
request.Duration = Parameters.Duration;
}
if (Parameters.Paused)
{
request.CreatePaused = true;
}
request.Node = handle.GetLocator().ToString();
using (HttpClient httpClient = CreateHttpClient())
{
using (HttpResponseMessage response = await httpClient.PostAsync<CreateDeploymentRequest>(new Uri(serverUri, $"api/v2/tools/{Parameters.Id}/deployments"), request, CancellationToken.None))
{
if (!response.IsSuccessStatusCode)
{
string? responseContent;
try
{
responseContent = await response.Content.ReadAsStringAsync();
}
catch
{
responseContent = "(No message)";
}
throw new AutomationException($"Upload failed ({response.StatusCode}): {responseContent}");
}
}
}
}
/// <summary>
/// Output this task out to an XML writer.
/// </summary>
public override void Write(XmlWriter Writer)
{
Write(Writer, Parameters);
}
/// <summary>
/// Find all the tags which are used as inputs to this task
/// </summary>
/// <returns>The tag names which are read by this task</returns>
public override IEnumerable<string> FindConsumedTagNames()
{
yield break;
}
/// <summary>
/// Find all the tags which are modified by this task
/// </summary>
/// <returns>The tag names which are modified by this task</returns>
public override IEnumerable<string> FindProducedTagNames()
{
yield break;
}
}
}