2011-06-18 19:19:24 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-10-15 20:36:09 +02:00
|
|
|
|
using System.IO;
|
2011-11-25 08:56:07 +01:00
|
|
|
|
using System.Linq;
|
2011-10-15 20:36:09 +02:00
|
|
|
|
using System.Runtime.InteropServices;
|
2011-06-18 19:19:24 +02:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
|
{
|
|
|
|
|
public static class Fluent
|
|
|
|
|
{
|
|
|
|
|
public static string WithDefault(this string actual, object defaultValue)
|
|
|
|
|
{
|
|
|
|
|
if (defaultValue == null)
|
|
|
|
|
throw new ArgumentNullException("defaultValue");
|
|
|
|
|
if (String.IsNullOrWhiteSpace(actual))
|
|
|
|
|
{
|
|
|
|
|
return defaultValue.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return actual;
|
|
|
|
|
}
|
2011-07-17 21:32:58 +02:00
|
|
|
|
|
2011-07-18 01:15:37 +02:00
|
|
|
|
public static Int64 Megabytes(this int megabytes)
|
2011-07-17 21:32:58 +02:00
|
|
|
|
{
|
2011-09-14 04:25:33 +02:00
|
|
|
|
return megabytes * 1048576L;
|
2011-07-17 21:32:58 +02:00
|
|
|
|
}
|
2011-07-18 01:15:37 +02:00
|
|
|
|
|
|
|
|
|
public static Int64 Gigabytes(this int gigabytes)
|
|
|
|
|
{
|
2011-09-14 04:25:33 +02:00
|
|
|
|
return gigabytes * 1073741824L;
|
2011-07-18 01:15:37 +02:00
|
|
|
|
}
|
2011-09-28 02:10:08 +02:00
|
|
|
|
|
|
|
|
|
public static string ToBestDateString(this DateTime dateTime)
|
|
|
|
|
{
|
|
|
|
|
if (dateTime == DateTime.Today.AddDays(-1))
|
|
|
|
|
return "Yesterday";
|
|
|
|
|
|
|
|
|
|
if (dateTime == DateTime.Today)
|
|
|
|
|
return "Today";
|
|
|
|
|
|
|
|
|
|
if (dateTime == DateTime.Today.AddDays(1))
|
|
|
|
|
return "Tomorrow";
|
|
|
|
|
|
|
|
|
|
if (dateTime > DateTime.Today.AddDays(1) && dateTime < DateTime.Today.AddDays(7))
|
|
|
|
|
return dateTime.DayOfWeek.ToString();
|
|
|
|
|
|
|
|
|
|
return dateTime.ToShortDateString();
|
|
|
|
|
}
|
2011-10-15 20:36:09 +02:00
|
|
|
|
|
2011-11-12 20:53:36 +01:00
|
|
|
|
public static string ParentUriString(this Uri uri)
|
2011-10-15 20:36:09 +02:00
|
|
|
|
{
|
2011-11-12 21:21:19 +01:00
|
|
|
|
return uri.AbsoluteUri.Remove(uri.AbsoluteUri.Length - String.Join("", uri.Segments).Length - uri.Query.Length);
|
2011-10-15 20:36:09 +02:00
|
|
|
|
}
|
2011-11-25 08:56:07 +01:00
|
|
|
|
|
|
|
|
|
public static int MaxOrDefault(this IEnumerable<int> ints)
|
|
|
|
|
{
|
2012-06-26 20:27:03 +02:00
|
|
|
|
if (ints == null)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2011-11-25 08:56:07 +01:00
|
|
|
|
var intList = ints.ToList();
|
|
|
|
|
|
2012-05-26 21:15:13 +02:00
|
|
|
|
if (!intList.Any())
|
2011-11-25 08:56:07 +01:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return intList.Max();
|
|
|
|
|
}
|
2012-04-13 01:03:01 +02:00
|
|
|
|
|
|
|
|
|
public static string Truncate(this string s, int maxLength)
|
|
|
|
|
{
|
|
|
|
|
if (Encoding.UTF8.GetByteCount(s) <= maxLength)
|
|
|
|
|
return s;
|
|
|
|
|
var cs = s.ToCharArray();
|
|
|
|
|
int length = 0;
|
|
|
|
|
int i = 0;
|
|
|
|
|
while (i < cs.Length)
|
|
|
|
|
{
|
|
|
|
|
int charSize = 1;
|
|
|
|
|
if (i < (cs.Length - 1) && char.IsSurrogate(cs[i]))
|
|
|
|
|
charSize = 2;
|
|
|
|
|
int byteSize = Encoding.UTF8.GetByteCount(cs, i, charSize);
|
|
|
|
|
if ((byteSize + length) <= maxLength)
|
|
|
|
|
{
|
|
|
|
|
i = i + charSize;
|
|
|
|
|
length += byteSize;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return s.Substring(0, i);
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-23 08:31:11 +02:00
|
|
|
|
public static string AddSpacesToEnum(this Enum enumValue)
|
|
|
|
|
{
|
|
|
|
|
var text = enumValue.ToString();
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(text))
|
|
|
|
|
return "";
|
|
|
|
|
var newText = new StringBuilder(text.Length * 2);
|
|
|
|
|
newText.Append(text[0]);
|
|
|
|
|
for (int i = 1; i < text.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
if (char.IsUpper(text[i]) && text[i - 1] != ' ')
|
|
|
|
|
newText.Append(' ');
|
|
|
|
|
newText.Append(text[i]);
|
|
|
|
|
}
|
|
|
|
|
return newText.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private const Decimal ONE_KILOBYTE = 1024M;
|
|
|
|
|
private const Decimal ONE_MEGABYTE = ONE_KILOBYTE * 1024M;
|
|
|
|
|
private const Decimal ONE_GIGABYTE = ONE_MEGABYTE * 1024M;
|
|
|
|
|
|
|
|
|
|
public static string ToBestFileSize(this long bytes, int precision = 0)
|
|
|
|
|
{
|
|
|
|
|
if (bytes == 0)
|
|
|
|
|
return "0B";
|
|
|
|
|
|
|
|
|
|
decimal size = Convert.ToDecimal(bytes);
|
|
|
|
|
|
|
|
|
|
string suffix;
|
|
|
|
|
|
|
|
|
|
if (size > ONE_GIGABYTE)
|
|
|
|
|
{
|
|
|
|
|
size /= ONE_GIGABYTE;
|
|
|
|
|
suffix = "GB";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (size > ONE_MEGABYTE)
|
|
|
|
|
{
|
|
|
|
|
size /= ONE_MEGABYTE;
|
|
|
|
|
suffix = "MB";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (size > ONE_KILOBYTE)
|
|
|
|
|
{
|
|
|
|
|
size /= ONE_KILOBYTE;
|
|
|
|
|
suffix = "KB";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
suffix = " B";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return String.Format("{0:N" + precision + "} {1}", size, suffix);
|
|
|
|
|
}
|
2012-05-26 21:15:13 +02:00
|
|
|
|
|
|
|
|
|
public static int MinOrDefault(this IEnumerable<int> ints)
|
|
|
|
|
{
|
2012-06-26 06:58:21 +02:00
|
|
|
|
if (ints == null)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2012-05-26 21:15:13 +02:00
|
|
|
|
var intsList = ints.ToList();
|
|
|
|
|
|
|
|
|
|
if (!intsList.Any())
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return intsList.Min();
|
|
|
|
|
}
|
2011-06-18 19:19:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|