Add XML docs

This commit is contained in:
Stone_Red
2026-02-20 20:30:59 +01:00
parent e9b3fd63cc
commit c317477bdc
3 changed files with 131 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@
<AssemblyVersion>1.0.0.4</AssemblyVersion> <AssemblyVersion>1.0.0.4</AssemblyVersion>
<FileVersion>1.0.0.4</FileVersion> <FileVersion>1.0.0.4</FileVersion>
<PackageTags>Updater, AutoUpdate, Auto, C#</PackageTags> <PackageTags>Updater, AutoUpdate, Auto, C#</PackageTags>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
+68
View File
@@ -13,22 +13,57 @@ using System.Xml.Serialization;
namespace AlwaysUpToDate namespace AlwaysUpToDate
{ {
/// <summary>
/// Provides automatic update checking, downloading, verification, extraction, and application restart.
/// Periodically polls a remote XML manifest for new versions and manages the full update lifecycle.
/// </summary>
public class Updater : IDisposable public class Updater : IDisposable
{ {
/// <summary>
/// Represents the method that will handle update progress notifications.
/// </summary>
/// <param name="step">The current phase of the update process.</param>
/// <param name="totalItems">The total number of items to process in this step, or <see langword="null"/> if unknown.</param>
/// <param name="itemsProcessed">The number of items processed so far in this step.</param>
/// <param name="progressPercentage">The progress percentage (0100), or <see langword="null"/> if <paramref name="totalItems"/> is unknown.</param>
public delegate void UpdaterChangedHandler(UpdateStep step, long? totalItems, long itemsProcessed, double? progressPercentage); public delegate void UpdaterChangedHandler(UpdateStep step, long? totalItems, long itemsProcessed, double? progressPercentage);
/// <summary>
/// Occurs when progress is made during any phase of the update process.
/// </summary>
public event UpdaterChangedHandler ProgressChanged; public event UpdaterChangedHandler ProgressChanged;
/// <summary>
/// Represents the method that will handle notifications when a non-mandatory update is available.
/// </summary>
/// <param name="version">The version string of the available update.</param>
/// <param name="changelogUrl">An optional URL pointing to the changelog, or <see langword="null"/> if not provided.</param>
public delegate void UpdateAvailableHandler(string version, string changelogUrl); public delegate void UpdateAvailableHandler(string version, string changelogUrl);
/// <summary>
/// Occurs when a non-mandatory update is available. Call <see cref="Update"/> to begin downloading.
/// </summary>
public event UpdateAvailableHandler UpdateAvailable; public event UpdateAvailableHandler UpdateAvailable;
/// <summary>
/// Represents the method that will handle notifications when no update is available.
/// </summary>
public delegate void NoUpdateAvailableHandler(); public delegate void NoUpdateAvailableHandler();
/// <summary>
/// Occurs when the remote manifest version is not newer than the current assembly version.
/// </summary>
public event NoUpdateAvailableHandler NoUpdateAvailable; public event NoUpdateAvailableHandler NoUpdateAvailable;
/// <summary>
/// Represents the method that will handle exceptions raised during the update process.
/// </summary>
/// <param name="exception">The exception that occurred.</param>
public delegate void ExceptionHandler(Exception exception); public delegate void ExceptionHandler(Exception exception);
/// <summary>
/// Occurs when an exception is caught during update checking, downloading, extraction, or verification.
/// </summary>
public event ExceptionHandler OnException; public event ExceptionHandler OnException;
private static readonly XmlSerializer manifestSerializer = new XmlSerializer(typeof(UpdateManifest)); private static readonly XmlSerializer manifestSerializer = new XmlSerializer(typeof(UpdateManifest));
@@ -41,17 +76,29 @@ namespace AlwaysUpToDate
private int updating; private int updating;
private bool disposed; private bool disposed;
/// <inheritdoc cref="Updater(TimeSpan, string, string, bool)"/>
public Updater(TimeSpan interval, Uri updateInfoUri, bool onlyUpdateOnce = false) : this(interval, updateInfoUri?.ToString(), "./", onlyUpdateOnce) public Updater(TimeSpan interval, Uri updateInfoUri, bool onlyUpdateOnce = false) : this(interval, updateInfoUri?.ToString(), "./", onlyUpdateOnce)
{ {
} }
/// <inheritdoc cref="Updater(TimeSpan, string, string, bool)"/>
public Updater(TimeSpan interval, Uri updateInfoUri, string installPath = "./", bool onlyUpdateOnce = false) : this(interval, updateInfoUri?.ToString(), installPath, onlyUpdateOnce) public Updater(TimeSpan interval, Uri updateInfoUri, string installPath = "./", bool onlyUpdateOnce = false) : this(interval, updateInfoUri?.ToString(), installPath, onlyUpdateOnce)
{ {
} }
/// <inheritdoc cref="Updater(TimeSpan, string, string, bool)"/>
public Updater(TimeSpan interval, string updateInfoUrl, bool onlyUpdateOnce = false) : this(interval, updateInfoUrl, "./", onlyUpdateOnce) public Updater(TimeSpan interval, string updateInfoUrl, bool onlyUpdateOnce = false) : this(interval, updateInfoUrl, "./", onlyUpdateOnce)
{ {
} }
/// <summary>
/// Initializes a new instance of the <see cref="Updater"/> class.
/// </summary>
/// <param name="interval">The interval between automatic update checks. Use <see cref="TimeSpan.Zero"/> to disable periodic checks.</param>
/// <param name="updateInfoUrl">The URL of the remote XML update manifest.</param>
/// <param name="installPath">The local directory where the update will be extracted. Defaults to the current directory.</param>
/// <param name="onlyUpdateOnce">If <see langword="true"/>, performs a single update check on <see cref="Start"/> without subscribing to the periodic timer.</param>
/// <exception cref="ArgumentNullException"><paramref name="updateInfoUrl"/> or <paramref name="installPath"/> is <see langword="null"/>.</exception>
public Updater(TimeSpan interval, string updateInfoUrl, string installPath = "./", bool onlyUpdateOnce = false) public Updater(TimeSpan interval, string updateInfoUrl, string installPath = "./", bool onlyUpdateOnce = false)
{ {
this.updateInfoUrl = updateInfoUrl ?? throw new ArgumentNullException(nameof(updateInfoUrl)); this.updateInfoUrl = updateInfoUrl ?? throw new ArgumentNullException(nameof(updateInfoUrl));
@@ -68,6 +115,10 @@ namespace AlwaysUpToDate
} }
} }
/// <summary>
/// Starts the updater. Performs an immediate update check and, if a periodic interval was configured, begins recurring checks.
/// </summary>
/// <exception cref="ObjectDisposedException">The updater has been disposed.</exception>
public void Start() public void Start()
{ {
ThrowIfDisposed(); ThrowIfDisposed();
@@ -79,12 +130,22 @@ namespace AlwaysUpToDate
UpdateTimer_Elapsed(null, null); UpdateTimer_Elapsed(null, null);
} }
/// <summary>
/// Stops periodic update checking. Does not cancel an update that is already in progress.
/// </summary>
/// <exception cref="ObjectDisposedException">The updater has been disposed.</exception>
public void Stop() public void Stop()
{ {
ThrowIfDisposed(); ThrowIfDisposed();
updateTimer.Stop(); updateTimer.Stop();
} }
/// <summary>
/// Downloads and installs the available update. This method is typically called from the <see cref="UpdateAvailable"/> handler.
/// If an update is already in progress or no update URL is available, the call is ignored.
/// </summary>
/// <returns>A task that represents the asynchronous update operation.</returns>
/// <exception cref="ObjectDisposedException">The updater has been disposed.</exception>
public async Task Update() public async Task Update()
{ {
ThrowIfDisposed(); ThrowIfDisposed();
@@ -387,12 +448,19 @@ namespace AlwaysUpToDate
} }
} }
/// <summary>
/// Releases all resources used by the <see cref="Updater"/>.
/// </summary>
public void Dispose() public void Dispose()
{ {
Dispose(true); Dispose(true);
GC.SuppressFinalize(this); GC.SuppressFinalize(this);
} }
/// <summary>
/// Releases the unmanaged resources used by the <see cref="Updater"/> and optionally releases the managed resources.
/// </summary>
/// <param name="disposing"><see langword="true"/> to release both managed and unmanaged resources; <see langword="false"/> to release only unmanaged resources.</param>
protected virtual void Dispose(bool disposing) protected virtual void Dispose(bool disposing)
{ {
if (!disposed) if (!disposed)
+62
View File
@@ -3,76 +3,138 @@ using System.Xml.Serialization;
namespace AlwaysUpToDate namespace AlwaysUpToDate
{ {
/// <summary>
/// Represents the root element of an update manifest XML document.
/// </summary>
[XmlRoot("updates")] [XmlRoot("updates")]
public class UpdateManifest public class UpdateManifest
{ {
/// <summary>
/// Gets or sets the list of available update items, one per target OS.
/// </summary>
[XmlElement("item")] [XmlElement("item")]
public List<UpdateItem> Items { get; set; } = new List<UpdateItem>(); public List<UpdateItem> Items { get; set; } = new List<UpdateItem>();
} }
/// <summary>
/// Represents a single update entry in the manifest, targeting a specific OS.
/// </summary>
public class UpdateItem public class UpdateItem
{ {
/// <summary>
/// Gets or sets the target operating system for this update.
/// </summary>
[XmlElement("os")] [XmlElement("os")]
public TargetOS OS { get; set; } public TargetOS OS { get; set; }
/// <summary>
/// Gets or sets the version string of the update in <c>X.X.X.X</c> format.
/// </summary>
[XmlElement("version")] [XmlElement("version")]
public string Version { get; set; } public string Version { get; set; }
/// <summary>
/// Gets or sets the URL from which the update ZIP file can be downloaded.
/// </summary>
[XmlElement("url")] [XmlElement("url")]
public string DownloadUrl { get; set; } public string DownloadUrl { get; set; }
/// <summary>
/// Gets or sets an optional URL pointing to a changelog for this update.
/// </summary>
[XmlElement("changelog")] [XmlElement("changelog")]
public string ChangelogUrl { get; set; } public string ChangelogUrl { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this update is mandatory.
/// When <see langword="true"/>, the update is downloaded and installed immediately without raising <see cref="Updater.UpdateAvailable"/>.
/// </summary>
[XmlElement("mandatory")] [XmlElement("mandatory")]
public bool IsMandatory { get; set; } public bool IsMandatory { get; set; }
/// <summary>
/// Gets or sets an optional checksum used to verify the integrity of the downloaded update.
/// </summary>
[XmlElement("checksum")] [XmlElement("checksum")]
public Checksum Checksum { get; set; } public Checksum Checksum { get; set; }
} }
/// <summary>
/// Specifies the hash algorithm used for checksum verification of downloaded updates.
/// </summary>
public enum HashAlgorithmType public enum HashAlgorithmType
{ {
/// <summary>SHA-1 (default).</summary>
[XmlEnum("sha1")] [XmlEnum("sha1")]
SHA1, SHA1,
/// <summary>MD5.</summary>
[XmlEnum("md5")] [XmlEnum("md5")]
MD5, MD5,
/// <summary>SHA-256.</summary>
[XmlEnum("sha256")] [XmlEnum("sha256")]
SHA256, SHA256,
/// <summary>SHA-512.</summary>
[XmlEnum("sha512")] [XmlEnum("sha512")]
SHA512, SHA512,
} }
/// <summary>
/// Represents a checksum value and its associated hash algorithm for verifying download integrity.
/// </summary>
public class Checksum public class Checksum
{ {
/// <summary>
/// Gets or sets the hash algorithm used to compute the checksum. Defaults to <see cref="HashAlgorithmType.SHA1"/>.
/// </summary>
[XmlAttribute("algorithm")] [XmlAttribute("algorithm")]
public HashAlgorithmType Algorithm { get; set; } public HashAlgorithmType Algorithm { get; set; }
/// <summary>
/// Gets or sets the expected hex-encoded hash value of the downloaded file.
/// </summary>
[XmlText] [XmlText]
public string Value { get; set; } public string Value { get; set; }
} }
/// <summary>
/// Specifies the target operating system for an update item.
/// </summary>
public enum TargetOS public enum TargetOS
{ {
/// <summary>Microsoft Windows.</summary>
[XmlEnum("windows")] [XmlEnum("windows")]
Windows, Windows,
/// <summary>Apple macOS.</summary>
[XmlEnum("macos")] [XmlEnum("macos")]
MacOS, MacOS,
/// <summary>Linux.</summary>
[XmlEnum("linux")] [XmlEnum("linux")]
Linux, Linux,
} }
/// <summary>
/// Describes the current phase of the update process, reported via <see cref="Updater.ProgressChanged"/>.
/// </summary>
public enum UpdateStep public enum UpdateStep
{ {
/// <summary>The update ZIP file is being downloaded. Progress is measured in bytes.</summary>
Downloading, Downloading,
/// <summary>The downloaded file's checksum is being verified against the manifest.</summary>
VerifyingChecksum, VerifyingChecksum,
/// <summary>ZIP entries are being extracted to the install path. Progress is measured in entries.</summary>
Extracting, Extracting,
/// <summary>Old files from the previous version are being deleted. Progress is measured in files.</summary>
CleaningUp, CleaningUp,
/// <summary>The updated application is about to be launched.</summary>
Restarting, Restarting,
} }
} }