Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ValueProviderUtil.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a56a3c8c7f3c09fb7625b9fbf26608bbdd777a7 (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
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
114
115
116
117
118
119
120
121
122
123
using System.Collections.Generic;

namespace System.Web.Mvc
{
    internal static class ValueProviderUtil
    {
        // Given "foo.bar[baz].quux", this method will return:
        // - "foo.bar[baz].quux"
        // - "foo.bar[baz]"
        // - "foo.bar"
        // - "foo"
        public static IEnumerable<string> GetPrefixes(string key)
        {
            yield return key;
            for (int i = key.Length - 1; i >= 0; i--)
            {
                switch (key[i])
                {
                    case '.':
                    case '[':
                        yield return key.Substring(0, i);
                        break;
                }
            }
        }

        public static bool CollectionContainsPrefix(IEnumerable<string> collection, string prefix)
        {
            foreach (string key in collection)
            {
                if (key != null)
                {
                    if (prefix.Length == 0)
                    {
                        return true; // shortcut - non-null key matches empty prefix
                    }

                    if (key.StartsWith(prefix, StringComparison.OrdinalIgnoreCase))
                    {
                        if (key.Length == prefix.Length)
                        {
                            return true; // exact match
                        }
                        else
                        {
                            switch (key[prefix.Length])
                            {
                                case '.': // known separator characters
                                case '[':
                                    return true;
                            }
                        }
                    }
                }
            }

            return false; // nothing found
        }

        // Given "foo.bar", "foo.hello", "something.other", foo[abc].baz and asking for prefix "foo" will return:
        // - "bar"/"foo.bar"
        // - "hello"/"foo.hello"
        // - "abc"/"foo[abc]"
        public static IDictionary<string, string> GetKeysFromPrefix(IEnumerable<string> collection, string prefix)
        {
            IDictionary<string, string> keys = new Dictionary<string, string>();
            foreach (var entry in collection)
            {
                if (entry != null)
                {
                    string key = null;
                    string fullName = null;

                    if (entry.Length == prefix.Length)
                    {
                        // No key in this entry
                        continue;
                    }

                    if (entry.StartsWith(prefix, StringComparison.OrdinalIgnoreCase))
                    {
                        int keyPosition = prefix.Length + 1;
                        switch (entry[prefix.Length])
                        {
                            case '.':
                                int dotPosition = entry.IndexOf('.', keyPosition);
                                if (dotPosition == -1)
                                {
                                    dotPosition = entry.Length;
                                }

                                key = entry.Substring(keyPosition, dotPosition - keyPosition);
                                fullName = entry.Substring(0, dotPosition);
                                break;

                            case '[':
                                int bracketPosition = entry.IndexOf(']', keyPosition);
                                if (bracketPosition == -1)
                                {
                                    // Malformed for dictionary
                                    continue;
                                }

                                key = entry.Substring(keyPosition, bracketPosition - keyPosition);
                                fullName = entry.Substring(0, bracketPosition + 1);
                                break;

                            default:
                                continue;
                        }

                        if (!keys.ContainsKey(key))
                        {
                            keys.Add(key, fullName);
                        }
                    }
                }
            }

            return keys;
        }
    }
}