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.
142 lines
4.5 KiB
142 lines
4.5 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.Linq; |
|
using System.Threading; |
|
|
|
using ICSharpCode.ILSpy.Properties; |
|
using ICSharpCode.ILSpy.TreeNodes; |
|
namespace ICSharpCode.ILSpy |
|
{ |
|
using System.ComponentModel.Composition; |
|
|
|
using ICSharpCode.Decompiler.TypeSystem; |
|
|
|
[ExportContextMenuEntry(Header = nameof(Resources.SearchMSDN), Icon = "images/SearchMsdn", Order = 9999)] |
|
[PartCreationPolicy(CreationPolicy.Shared)] |
|
internal sealed class SearchMsdnContextMenuEntry : IContextMenuEntry |
|
{ |
|
private static string msdnAddress = "https://docs.microsoft.com/dotnet/api/{0}"; |
|
|
|
public bool IsVisible(TextViewContext context) |
|
{ |
|
if (context.SelectedTreeNodes == null) |
|
return false; |
|
|
|
return context.SelectedTreeNodes.All( |
|
n => n is NamespaceTreeNode |
|
|| n is TypeTreeNode |
|
|| n is EventTreeNode |
|
|| n is FieldTreeNode |
|
|| n is PropertyTreeNode |
|
|| n is MethodTreeNode); |
|
} |
|
|
|
public bool IsEnabled(TextViewContext context) |
|
{ |
|
if (context.SelectedTreeNodes == null) |
|
return false; |
|
|
|
foreach (var node in context.SelectedTreeNodes) |
|
{ |
|
if (node is TypeTreeNode typeNode && !typeNode.IsPublicAPI) |
|
return false; |
|
|
|
if (node is EventTreeNode eventNode && (!eventNode.IsPublicAPI || !IsAccessible(eventNode.EventDefinition))) |
|
return false; |
|
|
|
if (node is FieldTreeNode fieldNode && (!fieldNode.IsPublicAPI || !IsAccessible(fieldNode.FieldDefinition) || IsDelegateOrEnumMember(fieldNode.FieldDefinition))) |
|
return false; |
|
|
|
if (node is PropertyTreeNode propertyNode && (!propertyNode.IsPublicAPI || !IsAccessible(propertyNode.PropertyDefinition))) |
|
return false; |
|
|
|
if (node is MethodTreeNode methodNode && (!methodNode.IsPublicAPI || !IsAccessible(methodNode.MethodDefinition) || IsDelegateOrEnumMember(methodNode.MethodDefinition))) |
|
return false; |
|
|
|
if (node is NamespaceTreeNode namespaceNode && string.IsNullOrEmpty(namespaceNode.Name)) |
|
return false; |
|
} |
|
|
|
return true; |
|
} |
|
|
|
bool IsAccessible(IEntity entity) |
|
{ |
|
if (entity.DeclaringTypeDefinition == null) |
|
return false; |
|
switch (entity.DeclaringTypeDefinition.Accessibility) |
|
{ |
|
case Accessibility.Public: |
|
case Accessibility.Protected: |
|
case Accessibility.ProtectedOrInternal: |
|
return true; |
|
default: |
|
return false; |
|
} |
|
} |
|
|
|
bool IsDelegateOrEnumMember(IMember member) |
|
{ |
|
if (member.DeclaringTypeDefinition == null) |
|
return false; |
|
switch (member.DeclaringTypeDefinition.Kind) |
|
{ |
|
case TypeKind.Delegate: |
|
case TypeKind.Enum: |
|
return true; |
|
default: |
|
return false; |
|
} |
|
} |
|
|
|
public void Execute(TextViewContext context) |
|
{ |
|
if (context.SelectedTreeNodes != null) |
|
{ |
|
foreach (ILSpyTreeNode node in context.SelectedTreeNodes) |
|
{ |
|
SearchMsdn(node); |
|
} |
|
} |
|
} |
|
|
|
public static void SearchMsdn(ILSpyTreeNode node) |
|
{ |
|
var address = string.Empty; |
|
|
|
if (node is NamespaceTreeNode namespaceNode) |
|
{ |
|
address = string.Format(msdnAddress, namespaceNode.Name); |
|
} |
|
else if (node is IMemberTreeNode memberNode) |
|
{ |
|
var member = memberNode.Member; |
|
var memberName = member.ReflectionName.Replace('`', '-').Replace('+', '.'); |
|
if (memberName.EndsWith("..ctor", System.StringComparison.Ordinal)) |
|
memberName = memberName.Substring(0, memberName.Length - 5) + "-ctor"; |
|
|
|
address = string.Format(msdnAddress, memberName); |
|
} |
|
|
|
address = address.ToLower(); |
|
if (!string.IsNullOrEmpty(address)) |
|
MainWindow.OpenLink(address); |
|
} |
|
} |
|
} |