mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
173 lines
5.1 KiB
173 lines
5.1 KiB
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team |
|
// |
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this |
|
// software and associated documentation files (the "Software"), to deal in the Software |
|
// without restriction, including without limitation the rights to use, copy, modify, merge, |
|
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
|
// to whom the Software is furnished to do so, subject to the following conditions: |
|
// |
|
// The above copyright notice and this permission notice shall be included in all copies or |
|
// substantial portions of the Software. |
|
// |
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
|
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
|
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
|
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
// DEALINGS IN THE SOFTWARE. |
|
|
|
using System; |
|
using System.Collections.Concurrent; |
|
using System.Windows.Media; |
|
|
|
using ICSharpCode.ILSpy.TreeNodes; |
|
|
|
namespace ICSharpCode.ILSpy.Search |
|
{ |
|
using ICSharpCode.Decompiler.TypeSystem; |
|
|
|
abstract class AbstractEntitySearchStrategy : AbstractSearchStrategy |
|
{ |
|
protected readonly Language language; |
|
protected readonly ApiVisibility apiVisibility; |
|
|
|
protected AbstractEntitySearchStrategy(Language language, ApiVisibility apiVisibility, |
|
SearchRequest searchRequest, IProducerConsumerCollection<SearchResult> resultQueue) |
|
: base(searchRequest, resultQueue) |
|
{ |
|
this.language = language; |
|
this.apiVisibility = apiVisibility; |
|
} |
|
|
|
protected bool CheckVisibility(IEntity entity) |
|
{ |
|
if (apiVisibility == ApiVisibility.All) |
|
return true; |
|
|
|
do |
|
{ |
|
if (apiVisibility == ApiVisibility.PublicOnly) |
|
{ |
|
if (!(entity.Accessibility == Accessibility.Public || |
|
entity.Accessibility == Accessibility.Protected || |
|
entity.Accessibility == Accessibility.ProtectedOrInternal)) |
|
return false; |
|
} |
|
else if (apiVisibility == ApiVisibility.PublicAndInternal) |
|
{ |
|
if (!language.ShowMember(entity)) |
|
return false; |
|
} |
|
entity = entity.DeclaringTypeDefinition; |
|
} |
|
while (entity != null); |
|
|
|
return true; |
|
} |
|
|
|
protected bool IsInNamespaceOrAssembly(IEntity entity) |
|
{ |
|
if (searchRequest.InAssembly != null) |
|
{ |
|
if (!entity.ParentModule.FullAssemblyName.Contains(searchRequest.InAssembly)) |
|
{ |
|
return false; |
|
} |
|
} |
|
|
|
if (searchRequest.InNamespace != null) |
|
{ |
|
if (searchRequest.InNamespace.Length == 0) |
|
{ |
|
return entity.Namespace.Length == 0; |
|
} |
|
else if (!entity.Namespace.Contains(searchRequest.InNamespace)) |
|
{ |
|
return false; |
|
} |
|
} |
|
|
|
return true; |
|
} |
|
|
|
protected void OnFoundResult(IEntity entity) |
|
{ |
|
var result = ResultFromEntity(entity); |
|
OnFoundResult(result); |
|
} |
|
|
|
SearchResult ResultFromEntity(IEntity item) |
|
{ |
|
var declaringType = item.DeclaringTypeDefinition; |
|
return new MemberSearchResult { |
|
Member = item, |
|
Fitness = CalculateFitness(item), |
|
Name = GetLanguageSpecificName(item), |
|
Location = declaringType != null ? language.TypeToString(declaringType, includeNamespace: true) : item.Namespace, |
|
Assembly = item.ParentModule.FullAssemblyName, |
|
ToolTip = item.ParentModule.PEFile?.FileName |
|
}; |
|
} |
|
|
|
float CalculateFitness(IEntity member) |
|
{ |
|
string text = member.Name; |
|
|
|
// Probably compiler generated types without meaningful names, show them last |
|
if (text.StartsWith("<")) |
|
{ |
|
return 0; |
|
} |
|
|
|
// Constructors and destructors always have the same name in IL: |
|
// Use type name instead |
|
if (member.SymbolKind == SymbolKind.Constructor || member.SymbolKind == SymbolKind.Destructor) |
|
{ |
|
text = member.DeclaringType.Name; |
|
} |
|
|
|
// Ignore generic arguments, it not possible to search based on them either |
|
text = ReflectionHelper.SplitTypeParameterCountFromReflectionName(text); |
|
|
|
return 1.0f / text.Length; |
|
} |
|
|
|
string GetLanguageSpecificName(IEntity member) |
|
{ |
|
switch (member) |
|
{ |
|
case ITypeDefinition t: |
|
return language.TypeToString(t, false); |
|
case IField f: |
|
return language.FieldToString(f, true, false, false); |
|
case IProperty p: |
|
return language.PropertyToString(p, true, false, false); |
|
case IMethod m: |
|
return language.MethodToString(m, true, false, false); |
|
case IEvent e: |
|
return language.EventToString(e, true, false, false); |
|
default: |
|
throw new NotSupportedException(member?.GetType() + " not supported!"); |
|
} |
|
} |
|
|
|
static internal ImageSource GetIcon(IEntity member) |
|
{ |
|
switch (member) |
|
{ |
|
case ITypeDefinition t: |
|
return TypeTreeNode.GetIcon(t); |
|
case IField f: |
|
return FieldTreeNode.GetIcon(f); |
|
case IProperty p: |
|
return PropertyTreeNode.GetIcon(p); |
|
case IMethod m: |
|
return MethodTreeNode.GetIcon(m); |
|
case IEvent e: |
|
return EventTreeNode.GetIcon(e); |
|
default: |
|
throw new NotSupportedException(member?.GetType() + " not supported!"); |
|
} |
|
} |
|
} |
|
}
|
|
|