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.
 
 

251 lines
12 KiB

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using Znyc.Cloudcar.Admin.Commons.Dtos;
using Znyc.Cloudcar.Admin.Commons.Properties;
namespace Znyc.Cloudcar.Admin.Commons.Data
{
/// <summary>
/// 参数合法性检查类
/// </summary>
[DebuggerStepThrough]
public static class Check
{
/// <summary>
/// 验证指定值的断言<paramref name="assertion" />是否为真,如果不为真,抛出指定消息<paramref name="message" />的指定类型
/// <typeparamref name="TException" />异常
/// </summary>
/// <typeparam name="TException">异常类型</typeparam>
/// <param name="assertion">要验证的断言。</param>
/// <param name="message">异常消息。</param>
private static void Require<TException>(bool assertion, string message)
where TException : Exception
{
if (assertion)
{
return;
}
if (string.IsNullOrEmpty(message))
{
throw new ArgumentNullException(nameof(message));
}
TException exception = (TException)Activator.CreateInstance(typeof(TException), message);
throw exception;
}
/// <summary>
/// 验证指定值的断言表达式是否为真,不为值抛出<see cref="Exception" />异常
/// </summary>
/// <param name="value"></param>
/// <param name="assertionFunc">要验证的断言表达式</param>
/// <param name="message">异常消息</param>
public static void Required<T>(T value, Func<T, bool> assertionFunc, string message)
{
if (assertionFunc == null)
{
throw new ArgumentNullException(nameof(assertionFunc));
}
Require<Exception>(assertionFunc(value), message);
}
/// <summary>
/// 验证指定值的断言表达式是否为真,不为真抛出<typeparamref name="TException" />异常
/// </summary>
/// <typeparam name="T">要判断的值的类型</typeparam>
/// <typeparam name="TException">抛出的异常类型</typeparam>
/// <param name="value">要判断的值</param>
/// <param name="assertionFunc">要验证的断言表达式</param>
/// <param name="message">异常消息</param>
public static void Required<T, TException>(T value, Func<T, bool> assertionFunc, string message)
where TException : Exception
{
if (assertionFunc == null)
{
throw new ArgumentNullException("assertionFunc");
}
Require<TException>(assertionFunc(value), message);
}
/// <summary>
/// 检查参数不能为空引用,否则抛出<see cref="ArgumentNullException" />异常。
/// </summary>
/// <param name="value"></param>
/// <param name="paramName">参数名称</param>
/// <exception cref="ArgumentNullException"></exception>
public static void NotNull<T>(T value, string paramName)
{
Require<ArgumentNullException>(value != null, string.Format(Resources.ParameterCheck_NotNull, paramName));
}
/// <summary>
/// 检查字符串不能为空引用或空字符串,否则抛出<see cref="ArgumentNullException" />异常或<see cref="ArgumentException" />异常。
/// </summary>
/// <param name="value"></param>
/// <param name="paramName">参数名称。</param>
/// <exception cref="ArgumentNullException"></exception>
/// <exception cref="ArgumentException"></exception>
public static void NotNullOrEmpty(string value, string paramName)
{
Require<ArgumentException>(!string.IsNullOrEmpty(value),
string.Format(Resources.ParameterCheck_NotNullOrEmpty_String, paramName));
}
/// <summary>
/// 检查Guid值不能为Guid.Empty,否则抛出<see cref="ArgumentException" />异常。
/// </summary>
/// <param name="value"></param>
/// <param name="paramName">参数名称。</param>
/// <exception cref="ArgumentException"></exception>
public static void NotEmpty(Guid value, string paramName)
{
Require<ArgumentException>(value != Guid.Empty,
string.Format(Resources.ParameterCheck_NotEmpty_Guid, paramName));
}
/// <summary>
/// 检查集合不能为空引用或空集合,否则抛出<see cref="ArgumentNullException" />异常或<see cref="ArgumentException" />异常。
/// </summary>
/// <typeparam name="T">集合项的类型。</typeparam>
/// <param name="list"></param>
/// <param name="paramName">参数名称。</param>
/// <exception cref="ArgumentNullException"></exception>
/// <exception cref="ArgumentException"></exception>
public static void NotNullOrEmpty<T>(IReadOnlyList<T> list, string paramName)
{
NotNull(list, paramName);
Require<ArgumentException>(list.Any(),
string.Format(Resources.ParameterCheck_NotNullOrEmpty_Collection, paramName));
}
/// <summary>
/// 检查集合中没有包含值为null的项
/// </summary>
public static void HasNoNulls<T>(IReadOnlyList<T> list, string paramName)
{
NotNull(list, paramName);
Require<ArgumentException>(list.All(m => m != null),
string.Format(Resources.ParameterCheck_NotContainsNull_Collection, paramName));
}
/// <summary>
/// 检查参数必须小于[或可等于,参数<paramref name="canEqual" />]指定值,否则抛出<see cref="ArgumentOutOfRangeException" />异常。
/// </summary>
/// <typeparam name="T">参数类型。</typeparam>
/// <param name="value"></param>
/// <param name="paramName">参数名称。</param>
/// <param name="target">要比较的值。</param>
/// <param name="canEqual">是否可等于。</param>
/// <exception cref="ArgumentOutOfRangeException"></exception>
public static void LessThan<T>(T value, string paramName, T target, bool canEqual = false)
where T : IComparable<T>
{
bool flag = canEqual ? value.CompareTo(target) <= 0 : value.CompareTo(target) < 0;
string format = canEqual ? Resources.ParameterCheck_NotLessThanOrEqual : Resources.ParameterCheck_NotLessThan;
Require<ArgumentOutOfRangeException>(flag, string.Format(format, paramName, target));
}
/// <summary>
/// 检查参数必须大于[或可等于,参数<paramref name="canEqual" />]指定值,否则抛出<see cref="ArgumentOutOfRangeException" />异常。
/// </summary>
/// <typeparam name="T">参数类型。</typeparam>
/// <param name="value"></param>
/// <param name="paramName">参数名称。</param>
/// <param name="target">要比较的值。</param>
/// <param name="canEqual">是否可等于。</param>
/// <exception cref="ArgumentOutOfRangeException"></exception>
public static void GreaterThan<T>(T value, string paramName, T target, bool canEqual = false)
where T : IComparable<T>
{
bool flag = canEqual ? value.CompareTo(target) >= 0 : value.CompareTo(target) > 0;
string format = canEqual
? Resources.ParameterCheck_NotGreaterThanOrEqual
: Resources.ParameterCheck_NotGreaterThan;
Require<ArgumentOutOfRangeException>(flag, string.Format(format, paramName, target));
}
/// <summary>
/// 检查参数必须在指定范围之间,否则抛出<see cref="ArgumentOutOfRangeException" />异常。
/// </summary>
/// <typeparam name="T">参数类型。</typeparam>
/// <param name="value"></param>
/// <param name="paramName">参数名称。</param>
/// <param name="start">比较范围的起始值。</param>
/// <param name="end">比较范围的结束值。</param>
/// <param name="startEqual">是否可等于起始值</param>
/// <param name="endEqual">是否可等于结束值</param>
/// <exception cref="ArgumentOutOfRangeException"></exception>
public static void Between<T>(T value, string paramName, T start, T end, bool startEqual = false,
bool endEqual = false)
where T : IComparable<T>
{
bool flag = startEqual ? value.CompareTo(start) >= 0 : value.CompareTo(start) > 0;
string message = startEqual
? string.Format(Resources.ParameterCheck_Between, paramName, start, end)
: string.Format(Resources.ParameterCheck_BetweenNotEqual, paramName, start, end, start);
Require<ArgumentOutOfRangeException>(flag, message);
flag = endEqual ? value.CompareTo(end) <= 0 : value.CompareTo(end) < 0;
message = endEqual
? string.Format(Resources.ParameterCheck_Between, paramName, start, end)
: string.Format(Resources.ParameterCheck_BetweenNotEqual, paramName, start, end, end);
Require<ArgumentOutOfRangeException>(flag, message);
}
/// <summary>
/// 检查指定路径的文件夹必须存在,否则抛出<see cref="DirectoryNotFoundException" />异常。
/// </summary>
/// <param name="directory"></param>
/// <param name="paramName">参数名称。</param>
/// <exception cref="ArgumentNullException"></exception>
/// <exception cref="DirectoryNotFoundException"></exception>
public static void DirectoryExists(string directory, string paramName = null)
{
NotNull(directory, paramName);
Require<DirectoryNotFoundException>(Directory.Exists(directory),
string.Format(Resources.ParameterCheck_DirectoryNotExists, directory));
}
/// <summary>
/// 检查指定路径的文件必须存在,否则抛出<see cref="FileNotFoundException" />异常。
/// </summary>
/// <param name="filename"></param>
/// <param name="paramName">参数名称。</param>
/// <exception cref="ArgumentNullException">当文件路径为null时</exception>
/// <exception cref="FileNotFoundException">当文件路径不存在时</exception>
public static void FileExists(string filename, string paramName = null)
{
NotNull(filename, paramName);
Require<FileNotFoundException>(File.Exists(filename),
string.Format(Resources.ParameterCheck_FileNotExists, filename));
}
/// <summary>
/// 检查<see cref="IInputDto{TKey}" />各属性的合法性,否则抛出<see cref="ValidationException" />异常
/// </summary>
public static void Validate<TKey>(IInputDto<TKey> dto, string paramName)
{
NotNull(dto, paramName);
dto.Validate();
}
/// <summary>
/// 检查<see cref="IInputDto{TKey}" />各属性的合法性,否则抛出<see cref="ValidationException" />异常
/// </summary>
public static void Validate<TInputDto, TKey>(TInputDto[] dtos, string paramName)
where TInputDto : IInputDto<TKey>
{
NotNull(dtos, paramName);
foreach (TInputDto dto in dtos)
{
dto.Validate();
}
}
}
}