summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/__Filters.cs
blob: 8edcd0d7cb306dacc7013c1d3ee1d7c5c4b85d95 (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
// 
// This class defines the delegate methods for the COM+ implemented filters.
//    This is the reflection version of these.  There is also a _Filters class in
//    runtime which is related to this.
//
//  
//  
//
namespace System.Reflection {
    using System;
    using System.Globalization;

    [Serializable]
    internal class __Filters {
        
        // FilterTypeName 
        // This method will filter the class based upon the name.  It supports
        //    a trailing wild card.
        public virtual bool FilterTypeName(Type cls,Object filterCriteria)
        {
            // Check that the criteria object is a String object
            if (filterCriteria == null || !(filterCriteria is String))
                throw new InvalidFilterCriteriaException(System.Environment.GetResourceString("RFLCT.FltCritString"));
    
            String str = (String) filterCriteria;
            //str = str.Trim();
    
            // Check to see if this is a prefix or exact match requirement
            if (str.Length > 0 && str[str.Length - 1] == '*') {
                str = str.Substring(0, str.Length - 1);
                return cls.Name.StartsWith(str, StringComparison.Ordinal);
            }
    
            return cls.Name.Equals(str);
        }
        
        // FilterFieldNameIgnoreCase
        // This method filter the Type based upon name, it ignores case.
        public virtual bool FilterTypeNameIgnoreCase(Type cls, Object filterCriteria)
        {
            // Check that the criteria object is a String object
            if(filterCriteria == null || !(filterCriteria is String))
                throw new InvalidFilterCriteriaException(System.Environment.GetResourceString("RFLCT.FltCritString"));
    
            String str = (String) filterCriteria;
            //str = str.Trim();
    
            // Check to see if this is a prefix or exact match requirement
            if (str.Length > 0 && str[str.Length - 1] == '*') {
                str = str.Substring(0, str.Length - 1);
                String name = cls.Name;
                if (name.Length >= str.Length)
                    return (String.Compare(name,0,str,0,str.Length, StringComparison.OrdinalIgnoreCase)==0);
                else
                    return false;
            }
            return (String.Compare(str,cls.Name, StringComparison.OrdinalIgnoreCase) == 0);
        }
    }
}