You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.5 KiB
42 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
|
|
namespace Discord.Commands
|
|
{
|
|
[DebuggerDisplay(@"{DebuggerDisplay,nq}")]
|
|
public struct SearchResult : IResult
|
|
{
|
|
public string Text { get; }
|
|
public IReadOnlyList<CommandMatch> Commands { get; }
|
|
|
|
/// <inheritdoc/>
|
|
public CommandError? Error { get; }
|
|
/// <inheritdoc/>
|
|
public string ErrorReason { get; }
|
|
|
|
/// <inheritdoc/>
|
|
public bool IsSuccess => !Error.HasValue;
|
|
|
|
private SearchResult(string text, IReadOnlyList<CommandMatch> commands, CommandError? error, string errorReason)
|
|
{
|
|
Text = text;
|
|
Commands = commands;
|
|
Error = error;
|
|
ErrorReason = errorReason;
|
|
}
|
|
|
|
public static SearchResult FromSuccess(string text, IReadOnlyList<CommandMatch> commands)
|
|
=> new SearchResult(text, commands, null, null);
|
|
public static SearchResult FromError(CommandError error, string reason)
|
|
=> new SearchResult(null, null, error, reason);
|
|
public static SearchResult FromError(Exception ex)
|
|
=> FromError(CommandError.Exception, ex.Message);
|
|
public static SearchResult FromError(IResult result)
|
|
=> new SearchResult(null, null, result.Error, result.ErrorReason);
|
|
|
|
public override string ToString() => IsSuccess ? "Success" : $"{Error}: {ErrorReason}";
|
|
private string DebuggerDisplay => IsSuccess ? $"Success ({Commands.Count} Results)" : $"{Error}: {ErrorReason}";
|
|
}
|
|
}
|