-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtensions.cs
80 lines (67 loc) · 2.92 KB
/
Extensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using System.Collections.Generic;
using UnityEngine;
using System.Threading.Tasks;
using System.Linq;
namespace Abuksigun.UnityGitUI
{
using static Const;
public static class Extensions
{
static readonly List<Task> shownExceptions = new ();
public static T GetResultOrDefault<T>(this Task<T> task, T defaultValue = default)
{
if (task.IsCompletedSuccessfully)
return task.Result;
if (task.Exception != null && !shownExceptions.Contains(task))
{
shownExceptions.Add(task);
throw task.Exception;
}
return defaultValue;
}
public static string WrapUp(this string self, string wrapLeft = "\"", string wrapRight = null) => wrapLeft + self + (wrapRight ?? wrapLeft);
public static string[] SplitLines(this string self) => self.Split(new[] { '\n', '\r' }, RemoveEmptyEntries);
public static string Join(this IEnumerable<string> values) => string.Join(string.Empty, values.Where(x => x != null));
public static string Join(this IEnumerable<string> values, char separator) => string.Join(separator, values.Where(x => x != null));
public static string Join(this IEnumerable<string> values, string separator) => string.Join(separator, values.Where(x => x != null));
public static int GetCombinedHashCode(this IEnumerable<object> values)
{
int hash = 0;
foreach (var value in values)
hash ^= value?.GetHashCode() ?? 0;
return hash;
}
public static string AfterLast(this string self, char separator)
{
var index = self.LastIndexOf(separator);
return index == -1 ? self : self[(index + 1)..];
}
public static string AfterFirst(this string self, char separator)
{
var index = self.IndexOf(separator);
return index == -1 ? self : self[(index + 1)..];
}
public static string NormalizeSlashes(this string self) => self.Replace('\\', '/');
public static T When<T>(this T self, bool condition) => condition ? self : default;
public static Vector2 To0Y(this int self) => new Vector2(0, self);
public static Rect Move(this Rect rect, float x, float y) => new Rect(rect.x + x, rect.y + y, rect.width, rect.height);
public static Rect Resize(this Rect rect, float width, float height) => new Rect(rect.x, rect.y, width, height);
public static async Task<T> AfterCompletion<T>(this Task<T> task, params Action[] actions)
{
var result = await task;
foreach (var action in actions)
{
try
{
action();
}
catch (Exception e)
{
Debug.LogError(e);
}
}
return result;
}
}
}