Files
Discord.Net/src/Discord.Net.Core/Utils/Cacheable.cs
Dmitry 86655a8157 [Refactor] Remove some unnecessary async/await (#2739)
* Remove some unnecessary async/await

* More not-so-async stuff

* More not-so-async stuff

* Fix merge issue
2023-11-18 21:29:14 +00:00

121 lines
5.0 KiB
C#

using System;
using System.Threading.Tasks;
namespace Discord
{
/// <summary>
/// Represents a cached entity.
/// </summary>
/// <typeparam name="TEntity">The type of entity that is cached.</typeparam>
/// <typeparam name="TId">The type of this entity's ID.</typeparam>
public struct Cacheable<TEntity, TId>
where TEntity : IEntity<TId>
where TId : IEquatable<TId>
{
/// <summary>
/// Gets whether this entity is cached.
/// </summary>
public bool HasValue { get; }
/// <summary>
/// Gets the ID of this entity.
/// </summary>
public TId Id { get; }
/// <summary>
/// Gets the entity if it could be pulled from cache.
/// </summary>
/// <remarks>
/// This value is not guaranteed to be set; in cases where the entity cannot be pulled from cache, it is
/// <see langword="null" />.
/// </remarks>
public TEntity Value { get; }
private Func<Task<TEntity>> DownloadFunc { get; }
internal Cacheable(TEntity value, TId id, bool hasValue, Func<Task<TEntity>> downloadFunc)
{
Value = value;
Id = id;
HasValue = hasValue;
DownloadFunc = downloadFunc;
}
/// <summary>
/// Downloads this entity to cache.
/// </summary>
/// <exception cref="Discord.Net.HttpException">Thrown when used from a user account.</exception>
/// <exception cref="NullReferenceException">Thrown when the message is deleted.</exception>
/// <returns>
/// A task that represents the asynchronous download operation. The task result contains the downloaded
/// entity.
/// </returns>
public Task<TEntity> DownloadAsync()
=> DownloadFunc();
/// <summary>
/// Returns the cached entity if it exists; otherwise downloads it.
/// </summary>
/// <exception cref="Discord.Net.HttpException">Thrown when used from a user account.</exception>
/// <exception cref="NullReferenceException">Thrown when the message is deleted and is not in cache.</exception>
/// <returns>
/// A task that represents the asynchronous operation that attempts to get the message via cache or to
/// download the message. The task result contains the downloaded entity.
/// </returns>
public async Task<TEntity> GetOrDownloadAsync() => HasValue ? Value : await DownloadAsync().ConfigureAwait(false);
}
public struct Cacheable<TCachedEntity, TDownloadableEntity, TRelationship, TId>
where TCachedEntity : IEntity<TId>, TRelationship
where TDownloadableEntity : IEntity<TId>, TRelationship
where TId : IEquatable<TId>
{
/// <summary>
/// Gets whether this entity is cached.
/// </summary>
public bool HasValue { get; }
/// <summary>
/// Gets the ID of this entity.
/// </summary>
public TId Id { get; }
/// <summary>
/// Gets the entity if it could be pulled from cache.
/// </summary>
/// <remarks>
/// This value is not guaranteed to be set; in cases where the entity cannot be pulled from cache, it is
/// <see langword="null" />.
/// </remarks>
public TCachedEntity Value { get; }
private Func<Task<TDownloadableEntity>> DownloadFunc { get; }
internal Cacheable(TCachedEntity value, TId id, bool hasValue, Func<Task<TDownloadableEntity>> downloadFunc)
{
Value = value;
Id = id;
HasValue = hasValue;
DownloadFunc = downloadFunc;
}
/// <summary>
/// Downloads this entity.
/// </summary>
/// <exception cref="Discord.Net.HttpException">Thrown when used from a user account.</exception>
/// <exception cref="NullReferenceException">Thrown when the message is deleted.</exception>
/// <returns>
/// A task that represents the asynchronous download operation. The task result contains the downloaded
/// entity.
/// </returns>
public Task<TDownloadableEntity> DownloadAsync()
{
return DownloadFunc();
}
/// <summary>
/// Returns the cached entity if it exists; otherwise downloads it.
/// </summary>
/// <exception cref="Discord.Net.HttpException">Thrown when used from a user account.</exception>
/// <exception cref="NullReferenceException">Thrown when the message is deleted and is not in cache.</exception>
/// <returns>
/// A task that represents the asynchronous operation that attempts to get the message via cache or to
/// download the message. The task result contains the downloaded entity.
/// </returns>
public async Task<TRelationship> GetOrDownloadAsync() => HasValue ? Value : await DownloadAsync().ConfigureAwait(false);
}
}