1 | // Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team |
---|
2 | // |
---|
3 | // Permission is hereby granted, free of charge, to any person obtaining a copy of this |
---|
4 | // software and associated documentation files (the "Software"), to deal in the Software |
---|
5 | // without restriction, including without limitation the rights to use, copy, modify, merge, |
---|
6 | // publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
---|
7 | // to whom the Software is furnished to do so, subject to the following conditions: |
---|
8 | // |
---|
9 | // The above copyright notice and this permission notice shall be included in all copies or |
---|
10 | // substantial portions of the Software. |
---|
11 | // |
---|
12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
---|
13 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
---|
14 | // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
---|
15 | // FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
---|
16 | // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
17 | // DEALINGS IN THE SOFTWARE. |
---|
18 | |
---|
19 | using System; |
---|
20 | using ICSharpCode.NRefactory.TypeSystem; |
---|
21 | |
---|
22 | namespace ICSharpCode.NRefactory.Documentation |
---|
23 | { |
---|
24 | [Serializable] |
---|
25 | class IdStringMemberReference : IMemberReference |
---|
26 | { |
---|
27 | readonly ITypeReference declaringTypeReference; |
---|
28 | readonly char memberType; |
---|
29 | readonly string memberIdString; |
---|
30 | |
---|
31 | public IdStringMemberReference(ITypeReference declaringTypeReference, char memberType, string memberIdString) |
---|
32 | { |
---|
33 | this.declaringTypeReference = declaringTypeReference; |
---|
34 | this.memberType = memberType; |
---|
35 | this.memberIdString = memberIdString; |
---|
36 | } |
---|
37 | |
---|
38 | bool CanMatch(IUnresolvedMember member) |
---|
39 | { |
---|
40 | switch (member.SymbolKind) { |
---|
41 | case SymbolKind.Field: |
---|
42 | return memberType == 'F'; |
---|
43 | case SymbolKind.Property: |
---|
44 | case SymbolKind.Indexer: |
---|
45 | return memberType == 'P'; |
---|
46 | case SymbolKind.Event: |
---|
47 | return memberType == 'E'; |
---|
48 | case SymbolKind.Method: |
---|
49 | case SymbolKind.Operator: |
---|
50 | case SymbolKind.Constructor: |
---|
51 | case SymbolKind.Destructor: |
---|
52 | return memberType == 'M'; |
---|
53 | default: |
---|
54 | throw new NotSupportedException(member.SymbolKind.ToString()); |
---|
55 | } |
---|
56 | } |
---|
57 | |
---|
58 | public ITypeReference DeclaringTypeReference { |
---|
59 | get { return declaringTypeReference; } |
---|
60 | } |
---|
61 | |
---|
62 | public IMember Resolve(ITypeResolveContext context) |
---|
63 | { |
---|
64 | IType declaringType = declaringTypeReference.Resolve(context); |
---|
65 | foreach (var member in declaringType.GetMembers(CanMatch, GetMemberOptions.IgnoreInheritedMembers)) { |
---|
66 | if (IdStringProvider.GetIdString(member) == memberIdString) |
---|
67 | return member; |
---|
68 | } |
---|
69 | return null; |
---|
70 | } |
---|
71 | |
---|
72 | ISymbol ISymbolReference.Resolve(ITypeResolveContext context) |
---|
73 | { |
---|
74 | return Resolve(context); |
---|
75 | } |
---|
76 | } |
---|
77 | } |
---|