-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathStringExtensions.cs
113 lines (93 loc) · 4.17 KB
/
StringExtensions.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Copyright (c) 2024 Files Community
// Licensed under the MIT License. See the LICENSE.
using ByteSizeLib;
using Microsoft.Windows.ApplicationModel.Resources;
using System.Collections.Concurrent;
using System.IO;
using ByteSize = ByteSizeLib.ByteSize;
namespace Files.App.Extensions
{
public static class StringExtensions
{
/// <summary>
/// Returns true if <paramref name="path"/> starts with the path <paramref name="baseDirPath"/>.
/// The comparison is case-insensitive, handles / and \ slashes as folder separators and
/// only matches if the base dir folder name is matched exactly ("c:\foobar\file.txt" is not a sub path of "c:\foo").
/// </summary>
public static bool IsSubPathOf(this string path, string baseDirPath)
{
string normalizedPath = Path.GetFullPath(path.Replace('/', '\\').WithEnding("\\"));
string normalizedBaseDirPath = Path.GetFullPath(baseDirPath.Replace('/', '\\').WithEnding("\\"));
return normalizedPath.StartsWith(normalizedBaseDirPath, StringComparison.OrdinalIgnoreCase);
}
/// <summary>
/// Returns <paramref name="str"/> with the minimal concatenation of <paramref name="ending"/> (starting from end) that
/// results in satisfying .EndsWith(ending).
/// </summary>
/// <example>"hel".WithEnding("llo") returns "hello", which is the result of "hel" + "lo".</example>
public static string WithEnding(this string str, string ending)
{
if (str is null)
{
return ending;
}
string result = str;
// Right() is 1-indexed, so include these cases
// * Append no characters
// * Append up to N characters, where N is ending length
for (int i = 0; i <= ending.Length; i++)
{
string tmp = result + ending.Right(i);
if (tmp.EndsWith(ending, StringComparison.Ordinal))
{
return tmp;
}
}
return result;
}
/// <summary>
/// Compares two strings for equality, but assumes that null string is equal to an empty string.
/// </summary>
public static bool NullableEqualTo(this string original, string other,
StringComparison stringComparison = StringComparison.Ordinal) => string.IsNullOrEmpty(original)
? string.IsNullOrEmpty(other)
: original.Equals(other, stringComparison);
private static readonly ResourceMap resourcesTree = new ResourceManager().MainResourceMap.TryGetSubtree("Resources");
private static readonly ConcurrentDictionary<string, string> cachedResources = new();
private static readonly Dictionary<string, string> abbreviations = new()
{
{ "KiB", "KiloByteSymbol".GetLocalizedResource() },
{ "MiB", "MegaByteSymbol".GetLocalizedResource() },
{ "GiB", "GigaByteSymbol".GetLocalizedResource() },
{ "TiB", "TeraByteSymbol".GetLocalizedResource() },
{ "PiB", "PetaByteSymbol".GetLocalizedResource() },
{ "B", "ByteSymbol".GetLocalizedResource() },
{ "b", "ByteSymbol".GetLocalizedResource() }
};
public static string ConvertSizeAbbreviation(this string value)
{
foreach (var item in abbreviations)
{
value = value.Replace(item.Key, item.Value, StringComparison.Ordinal);
}
return value;
}
public static string ToSizeString(this double size) => ByteSize.FromBytes(size).ToSizeString();
public static string ToSizeString(this long size) => ByteSize.FromBytes(size).ToSizeString();
public static string ToSizeString(this ulong size) => ByteSize.FromBytes(size).ToSizeString();
public static string ToSizeString(this ByteSize size) => size.ToBinaryString().ConvertSizeAbbreviation();
public static string ToLongSizeString(this long size) => ByteSize.FromBytes(size).ToLongSizeString();
public static string ToLongSizeString(this ulong size) => ByteSize.FromBytes(size).ToLongSizeString();
public static string ToLongSizeString(this ByteSize size) => $"{size.ToSizeString()} ({size.Bytes:#,##0} {"ItemSizeBytes".GetLocalizedResource()})";
//public static string GetLocalizedResource(this string s) => s.GetLocalized("Resources");
public static string GetLocalizedResource(this string resourceKey)
{
if (cachedResources.TryGetValue(resourceKey, out var value))
{
return value;
}
value = resourcesTree?.TryGetValue(resourceKey)?.ValueAsString;
return cachedResources[resourceKey] = value ?? string.Empty;
}
}
}