8 changed files with 177 additions and 9 deletions
@ -0,0 +1,85 @@
@@ -0,0 +1,85 @@
|
||||
// Copyright (c) 2013 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.Generic; |
||||
using ICSharpCode.NRefactory.TypeSystem; |
||||
|
||||
namespace ICSharpCode.NRefactory.Analysis |
||||
{ |
||||
public sealed class TypeGraphNode |
||||
{ |
||||
readonly ITypeDefinition typeDef; |
||||
readonly List<TypeGraphNode> baseTypes = new List<TypeGraphNode>(); |
||||
readonly List<TypeGraphNode> derivedTypes = new List<TypeGraphNode>(); |
||||
|
||||
/// <summary>
|
||||
/// Creates a new unconnected type graph node.
|
||||
/// </summary>
|
||||
public TypeGraphNode(ITypeDefinition typeDef) |
||||
{ |
||||
this.typeDef = typeDef; |
||||
} |
||||
|
||||
public ITypeDefinition TypeDefinition { |
||||
get { return typeDef; } |
||||
} |
||||
|
||||
public IList<TypeGraphNode> DerivedTypes { |
||||
get { return derivedTypes; } |
||||
} |
||||
|
||||
public IList<TypeGraphNode> BaseTypes { |
||||
get { return baseTypes; } |
||||
} |
||||
|
||||
/// <summary>
|
||||
/// Builds a graph of all type definitions in the specified set of project contents.
|
||||
/// </summary>
|
||||
/// <remarks>The resulting graph may be cyclic if there are cyclic type definitions.</remarks>
|
||||
public static Dictionary<AssemblyQualifiedTypeName, TypeGraphNode> BuildTypeInheritanceGraph(IEnumerable<ICompilation> compilations) |
||||
{ |
||||
if (compilations == null) |
||||
throw new ArgumentNullException("compilations"); |
||||
Dictionary<AssemblyQualifiedTypeName, TypeGraphNode> dict = new Dictionary<AssemblyQualifiedTypeName, TypeGraphNode>(); |
||||
foreach (ICompilation compilation in compilations) { |
||||
foreach (ITypeDefinition typeDef in compilation.MainAssembly.GetAllTypeDefinitions()) { |
||||
// Overwrite previous entry - duplicates can occur if there are multiple versions of the
|
||||
// same project loaded in the solution (e.g. separate .csprojs for separate target frameworks)
|
||||
dict[new AssemblyQualifiedTypeName(typeDef)] = new TypeGraphNode(typeDef); |
||||
} |
||||
} |
||||
foreach (ICompilation compilation in compilations) { |
||||
foreach (ITypeDefinition typeDef in compilation.MainAssembly.GetAllTypeDefinitions()) { |
||||
TypeGraphNode typeNode = dict[new AssemblyQualifiedTypeName(typeDef)]; |
||||
foreach (IType baseType in typeDef.DirectBaseTypes) { |
||||
ITypeDefinition baseTypeDef = baseType.GetDefinition(); |
||||
if (baseTypeDef != null) { |
||||
TypeGraphNode baseTypeNode; |
||||
if (dict.TryGetValue(new AssemblyQualifiedTypeName(baseTypeDef), out baseTypeNode)) { |
||||
typeNode.BaseTypes.Add(baseTypeNode); |
||||
baseTypeNode.DerivedTypes.Add(typeNode); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
return dict; |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,79 @@
@@ -0,0 +1,79 @@
|
||||
// Copyright (c) 2013 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; |
||||
|
||||
namespace ICSharpCode.NRefactory.TypeSystem |
||||
{ |
||||
public struct AssemblyQualifiedTypeName : IEquatable<AssemblyQualifiedTypeName> |
||||
{ |
||||
public readonly string AssemblyName; |
||||
public readonly FullTypeName TypeName; |
||||
|
||||
public AssemblyQualifiedTypeName(FullTypeName typeName, string assemblyName) |
||||
{ |
||||
this.AssemblyName = assemblyName; |
||||
this.TypeName = typeName; |
||||
} |
||||
|
||||
public AssemblyQualifiedTypeName(ITypeDefinition typeDefinition) |
||||
{ |
||||
this.AssemblyName = typeDefinition.ParentAssembly.AssemblyName; |
||||
this.TypeName = typeDefinition.FullTypeName; |
||||
} |
||||
|
||||
public override string ToString() |
||||
{ |
||||
if (string.IsNullOrEmpty(AssemblyName)) |
||||
return TypeName.ToString(); |
||||
else |
||||
return TypeName.ToString() + ", " + AssemblyName; |
||||
} |
||||
|
||||
public override bool Equals(object obj) |
||||
{ |
||||
return (obj is AssemblyQualifiedTypeName) && Equals((AssemblyQualifiedTypeName)obj); |
||||
} |
||||
|
||||
public bool Equals(AssemblyQualifiedTypeName other) |
||||
{ |
||||
return this.AssemblyName == other.AssemblyName && this.TypeName == other.TypeName; |
||||
} |
||||
|
||||
public override int GetHashCode() |
||||
{ |
||||
int hashCode = 0; |
||||
unchecked { |
||||
if (AssemblyName != null) |
||||
hashCode += 1000000007 * AssemblyName.GetHashCode(); |
||||
hashCode += TypeName.GetHashCode(); |
||||
} |
||||
return hashCode; |
||||
} |
||||
|
||||
public static bool operator ==(AssemblyQualifiedTypeName lhs, AssemblyQualifiedTypeName rhs) |
||||
{ |
||||
return lhs.Equals(rhs); |
||||
} |
||||
|
||||
public static bool operator !=(AssemblyQualifiedTypeName lhs, AssemblyQualifiedTypeName rhs) |
||||
{ |
||||
return !lhs.Equals(rhs); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue