summaryrefslogtreecommitdiff
path: root/modules/mono/editor/GodotSharpTools/StringExtensions.cs
blob: b0436d2f188ee6d5c0f730ce6c9908a701bd3f95 (plain)
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
using System;
using System.IO;

namespace GodotSharpTools
{
    public static class StringExtensions
    {
        public static string RelativeToPath(this string path, string dir)
        {
            // Make sure the directory ends with a path separator
            dir = Path.Combine(dir, " ").TrimEnd();

            if (Path.DirectorySeparatorChar == '\\')
                dir = dir.Replace("/", "\\") + "\\";

            Uri fullPath = new Uri(Path.GetFullPath(path), UriKind.Absolute);
            Uri relRoot = new Uri(Path.GetFullPath(dir), UriKind.Absolute);

            return relRoot.MakeRelativeUri(fullPath).ToString();
        }

        public static string NormalizePath(this string path)
        {
            bool rooted = path.IsAbsolutePath();

            path = path.Replace('\\', '/');

            string[] parts = path.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries);

            path = string.Join(Path.DirectorySeparatorChar.ToString(), parts).Trim();

            return rooted ? Path.DirectorySeparatorChar.ToString() + path : path;
        }

        private static readonly string driveRoot = Path.GetPathRoot(Environment.CurrentDirectory);

        public static bool IsAbsolutePath(this string path)
        {
            return path.StartsWith("/", StringComparison.Ordinal) ||
                       path.StartsWith("\\", StringComparison.Ordinal) ||
                       path.StartsWith(driveRoot, StringComparison.Ordinal);
        }

        public static string CsvEscape(this string value, char delimiter = ',')
        {
            bool hasSpecialChar = value.IndexOfAny(new char[] { '\"', '\n', '\r', delimiter }) != -1;

            if (hasSpecialChar)
                return "\"" + value.Replace("\"", "\"\"") + "\"";

            return value;
        }
    }
}