blob: 9a8956c5a1cfcf421923bb5acab6a8a2c57e9dc3 (
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
// Copyright (c) Microsoft Corporation. All rights reserved.
//
using System;
using System.Collections.Generic;
using System.Xml;
using System.Xml.XPath;
using System.Compiler;
namespace Microsoft.Ddue.Tools.Reflection {
public class NamespaceFilter
{
#region Member Variables
private bool exposed;
private string name;
private List < TypeFilter > typeFilters = new List < TypeFilter >();
#endregion
#region Constructors
public NamespaceFilter(string name, bool exposed) {
this.name = name;
this.exposed = exposed;
}
public NamespaceFilter(XmlReader configuration) {
if (configuration.Name != "namespace") throw new InvalidOperationException();
name = configuration.GetAttribute("name");
exposed = Convert.ToBoolean(configuration.GetAttribute("expose"));
XmlReader subtree = configuration.ReadSubtree();
while (subtree.Read()) {
if ((subtree.NodeType == XmlNodeType.Element) && (subtree.Name == "type")) {
TypeFilter typeFilter = new TypeFilter(subtree);
typeFilters.Add(typeFilter);
}
}
subtree.Close();
}
#endregion
#region Public API
/// <summary>
/// Gets the number of type filters
/// </summary>
public int TypeFilterCount
{
get
{
return typeFilters.Count;
}
}
public List < TypeFilter > TypeFilters {
get {
return (typeFilters);
{
}
}
}
//Find out if any are exposed incase this class is not exposed
public bool HasExposedMembers(TypeNode type)
{
Namespace space = ReflectionUtilities.GetNamespace(type);
if (IsExposedNamespace(space) != null)
{
foreach (TypeFilter typeFilter in typeFilters)
{
bool? result = typeFilter.IsExposedType(type);
if (result != null) //matched
{
return typeFilter.HasExposedMembers(type);
}
}
}
return false;
}
public bool? IsExposedMember(Member member) {
//Console.WriteLine("DEBUG: namespaceFilter.isExposedMemeber");
TypeNode type = ReflectionUtilities.GetTemplateType(member.DeclaringType);
Namespace space = ReflectionUtilities.GetNamespace(type);
if (IsExposedNamespace(space) != null) {
foreach (TypeFilter typeFilter in typeFilters) {
bool? result = typeFilter.IsExposedMember(member);
if (result != null) return (result);
}
//no filters matched this method, check if the type is exposed
bool? typeIsExposed = IsExposedType(type);
if (typeIsExposed != null) return typeIsExposed;
return (exposed); //if the namespace is exposed
} else {
return (null);
}
}
public bool? IsExposedNamespace(Namespace space) {
if (space.Name.Name == name) {
return (exposed);
} else {
return (null);
}
}
public bool? IsExposedType(TypeNode type) {
Namespace space = ReflectionUtilities.GetNamespace(type);
if (IsExposedNamespace(space) != null) {
foreach (TypeFilter typeFilter in typeFilters) {
bool? result = typeFilter.IsExposedType(type);
if (result != null) return (result);
}
//no filter matches for this type, check the parents since it could be nested
TypeNode parent = type.DeclaringType;
while (parent != null)
{
bool? parentExposed = IsExposedType(parent);
if (parentExposed != null)
return parentExposed;
parent = type.DeclaringType;
}
//no answer for the parents either, the top parent should pass this back above
return (exposed);
} else {
return (null);
}
}
#endregion
}
}
|