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.
188 lines
6.9 KiB
188 lines
6.9 KiB
// |
|
// ImplementInterfaceAction.cs |
|
// |
|
// Author: |
|
// Mike Krüger <mkrueger@xamarin.com> |
|
// |
|
// Copyright (c) 2012 Xamarin Inc. (http://xamarin.com) |
|
// |
|
// 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 ICSharpCode.NRefactory.TypeSystem; |
|
using System.Threading; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
|
|
namespace ICSharpCode.NRefactory.CSharp.Refactoring |
|
{ |
|
// [ContextAction("Implement interface", Description = "Creates an interface implementation.")] |
|
public class ImplementInterfaceAction : ICodeActionProvider |
|
{ |
|
public IEnumerable<CodeAction> GetActions(RefactoringContext context) |
|
{ |
|
var type = context.GetNode<AstType>(); |
|
if (type == null || type.Role != Roles.BaseType) |
|
yield break; |
|
var state = context.GetResolverStateBefore(type); |
|
if (state.CurrentTypeDefinition == null) |
|
yield break; |
|
|
|
var resolveResult = context.Resolve(type); |
|
if (resolveResult.Type.Kind != TypeKind.Interface) |
|
yield break; |
|
|
|
var toImplement = CollectMembersToImplement(state.CurrentTypeDefinition, resolveResult.Type, false); |
|
if (toImplement.Count == 0) |
|
yield break; |
|
|
|
yield return new CodeAction(context.TranslateString("Implement interface"), script => { |
|
script.InsertWithCursor( |
|
context.TranslateString ("Implement Interface"), |
|
state.CurrentTypeDefinition, |
|
GenerateImplementation (context, toImplement) |
|
); |
|
}); |
|
} |
|
|
|
public static IEnumerable<AstNode> GenerateImplementation(RefactoringContext context, List<Tuple<IMember, bool>> toImplement) |
|
{ |
|
foreach (var member in toImplement) { |
|
yield return GenerateMemberImplementation(context, member); |
|
} |
|
} |
|
|
|
static AstNode GenerateMemberImplementation(RefactoringContext context, Tuple<IMember, bool> member) |
|
{ |
|
switch (member.Item1.EntityType) { |
|
case EntityType.Property: |
|
return null; |
|
case EntityType.Indexer: |
|
return null; |
|
case EntityType.Event: |
|
return null; |
|
case EntityType.Method: |
|
return GenerateMethod(context, (IMethod)member.Item1, member.Item2); |
|
default: |
|
throw new ArgumentOutOfRangeException(); |
|
} |
|
} |
|
|
|
static AstNode GenerateMethod(RefactoringContext context, IMethod method, bool explicitImplementation) |
|
{ |
|
var result = new MethodDeclaration() { |
|
Name = method.Name, |
|
ReturnType = context.CreateShortType (method.ReturnType), |
|
Body = new BlockStatement() { |
|
new ThrowStatement(new ObjectCreateExpression(context.CreateShortType("System", "NotImplementedException"))) |
|
} |
|
}; |
|
|
|
if (!explicitImplementation) { |
|
result.Modifiers = Modifiers.Public; |
|
} else { |
|
result.PrivateImplementationType = context.CreateShortType(method.DeclaringType); |
|
} |
|
|
|
foreach (var typeParam in method.TypeParameters) { |
|
result.TypeParameters.Add(new TypeParameterDeclaration(typeParam.Name)); |
|
} |
|
|
|
foreach (var p in method.Parameters) { |
|
ParameterModifier modifier; |
|
if (p.IsOut) { |
|
modifier = ParameterModifier.Out; |
|
} else if (p.IsRef) { |
|
modifier = ParameterModifier.Ref; |
|
} else if (p.IsParams) { |
|
modifier = ParameterModifier.Params; |
|
} else { |
|
modifier = ParameterModifier.None; |
|
} |
|
result.Parameters.Add(new ParameterDeclaration(context.CreateShortType(p.Type), p.Name, modifier)); |
|
} |
|
|
|
return result; |
|
} |
|
|
|
|
|
public static List<Tuple<IMember, bool>> CollectMembersToImplement(ITypeDefinition implementingType, IType interfaceType, bool explicitly) |
|
{ |
|
var def = interfaceType.GetDefinition(); |
|
List<Tuple<IMember, bool>> toImplement = new List<Tuple<IMember, bool>>(); |
|
bool alreadyImplemented; |
|
// Stub out non-implemented events defined by @iface |
|
foreach (var ev in interfaceType.GetEvents (e => !e.IsSynthetic && e.DeclaringTypeDefinition.ReflectionName == def.ReflectionName)) { |
|
bool needsExplicitly = explicitly; |
|
alreadyImplemented = implementingType.GetAllBaseTypeDefinitions().Any( |
|
x => x.Kind != TypeKind.Interface && x.Events.Any (y => y.Name == ev.Name) |
|
); |
|
|
|
if (!alreadyImplemented) |
|
toImplement.Add(new Tuple<IMember, bool>(ev, needsExplicitly)); |
|
} |
|
|
|
// Stub out non-implemented methods defined by @iface |
|
foreach (var method in interfaceType.GetMethods (d => !d.IsSynthetic && d.DeclaringTypeDefinition.ReflectionName == def.ReflectionName)) { |
|
bool needsExplicitly = explicitly; |
|
alreadyImplemented = false; |
|
|
|
foreach (var cmet in implementingType.GetMethods ()) { |
|
if (CompareMethods(method, cmet)) { |
|
if (!needsExplicitly && !cmet.ReturnType.Equals(method.ReturnType)) |
|
needsExplicitly = true; |
|
else |
|
alreadyImplemented |= !needsExplicitly /*|| cmet.InterfaceImplementations.Any (impl => impl.InterfaceType.Equals (interfaceType))*/; |
|
} |
|
} |
|
if (!alreadyImplemented) |
|
toImplement.Add(new Tuple<IMember, bool>(method, needsExplicitly)); |
|
} |
|
|
|
// Stub out non-implemented properties defined by @iface |
|
foreach (var prop in interfaceType.GetProperties (p => !p.IsSynthetic && p.DeclaringTypeDefinition.ReflectionName == def.ReflectionName)) { |
|
bool needsExplicitly = explicitly; |
|
alreadyImplemented = false; |
|
foreach (var t in implementingType.GetAllBaseTypeDefinitions ()) { |
|
if (t.Kind == TypeKind.Interface) |
|
continue; |
|
foreach (IProperty cprop in t.Properties) { |
|
if (cprop.Name == prop.Name) { |
|
if (!needsExplicitly && !cprop.ReturnType.Equals(prop.ReturnType)) |
|
needsExplicitly = true; |
|
else |
|
alreadyImplemented |= !needsExplicitly/* || cprop.InterfaceImplementations.Any (impl => impl.InterfaceType.Resolve (ctx).Equals (interfaceType))*/; |
|
} |
|
} |
|
} |
|
if (!alreadyImplemented) |
|
toImplement.Add(new Tuple<IMember, bool>(prop, needsExplicitly)); |
|
} |
|
return toImplement; |
|
} |
|
|
|
static bool CompareMethods (IMethod interfaceMethod, IMethod typeMethod) |
|
{ |
|
if (typeMethod.IsExplicitInterfaceImplementation) |
|
return typeMethod.ImplementedInterfaceMembers.Any (m => m.Equals (interfaceMethod)); |
|
return SignatureComparer.Ordinal.Equals (interfaceMethod, typeMethod); |
|
} |
|
} |
|
} |
|
|
|
|