1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
// Copyright (c) 2010-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.Documentation;
using ICSharpCode.NRefactory.Editor;
using ICSharpCode.NRefactory.TypeSystem;
using ICSharpCode.NRefactory.TypeSystem.Implementation;
using ICSharpCode.NRefactory.Utils;
using System.Linq;
namespace ICSharpCode.NRefactory.CSharp.TypeSystem
{
/// <summary>
/// Represents a file that was parsed and converted for the type system.
/// </summary>
[Serializable, FastSerializerVersion(TypeSystemConvertVisitor.version)]
public sealed class CSharpUnresolvedFile : AbstractFreezable, IUnresolvedFile, IUnresolvedDocumentationProvider
{
// The 'FastSerializerVersion' attribute on CSharpUnresolvedFile must be incremented when fixing
// bugs in the TypeSystemConvertVisitor
string fileName = string.Empty;
readonly UsingScope rootUsingScope = new UsingScope();
IList<IUnresolvedTypeDefinition> topLevelTypeDefinitions = new List<IUnresolvedTypeDefinition>();
IList<IUnresolvedAttribute> assemblyAttributes = new List<IUnresolvedAttribute>();
IList<IUnresolvedAttribute> moduleAttributes = new List<IUnresolvedAttribute>();
IList<UsingScope> usingScopes = new List<UsingScope>();
IList<Error> errors = new List<Error> ();
Dictionary<IUnresolvedEntity, string> documentation;
protected override void FreezeInternal()
{
base.FreezeInternal();
rootUsingScope.Freeze();
topLevelTypeDefinitions = FreezableHelper.FreezeListAndElements(topLevelTypeDefinitions);
assemblyAttributes = FreezableHelper.FreezeListAndElements(assemblyAttributes);
moduleAttributes = FreezableHelper.FreezeListAndElements(moduleAttributes);
usingScopes = FreezableHelper.FreezeListAndElements(usingScopes);
}
public string FileName {
get { return fileName; }
set {
FreezableHelper.ThrowIfFrozen(this);
fileName = value ?? string.Empty;
}
}
DateTime? lastWriteTime;
public DateTime? LastWriteTime {
get { return lastWriteTime; }
set {
FreezableHelper.ThrowIfFrozen(this);
lastWriteTime = value;
}
}
public UsingScope RootUsingScope {
get { return rootUsingScope; }
}
public IList<Error> Errors {
get { return errors; }
internal set { errors = (List<Error>)value; }
}
public IList<UsingScope> UsingScopes {
get { return usingScopes; }
}
public IList<IUnresolvedTypeDefinition> TopLevelTypeDefinitions {
get { return topLevelTypeDefinitions; }
}
public IList<IUnresolvedAttribute> AssemblyAttributes {
get { return assemblyAttributes; }
}
public IList<IUnresolvedAttribute> ModuleAttributes {
get { return moduleAttributes; }
}
public void AddDocumentation(IUnresolvedEntity entity, string xmlDocumentation)
{
FreezableHelper.ThrowIfFrozen(this);
if (documentation == null)
documentation = new Dictionary<IUnresolvedEntity, string>();
documentation.Add(entity, xmlDocumentation);
}
public UsingScope GetUsingScope(TextLocation location)
{
foreach (UsingScope scope in usingScopes) {
if (scope.Region.IsInside(location.Line, location.Column))
return scope;
}
return rootUsingScope;
}
public IUnresolvedTypeDefinition GetTopLevelTypeDefinition(TextLocation location)
{
return FindEntity(topLevelTypeDefinitions, location);
}
public IUnresolvedTypeDefinition GetInnermostTypeDefinition(TextLocation location)
{
IUnresolvedTypeDefinition parent = null;
IUnresolvedTypeDefinition type = GetTopLevelTypeDefinition(location);
while (type != null) {
parent = type;
type = FindEntity(parent.NestedTypes, location);
}
return parent;
}
public IUnresolvedMember GetMember(TextLocation location)
{
IUnresolvedTypeDefinition type = GetInnermostTypeDefinition(location);
if (type == null)
return null;
return FindEntity(type.Members, location);
}
static T FindEntity<T>(IList<T> list, TextLocation location) where T : class, IUnresolvedEntity
{
// This could be improved using a binary search
foreach (T entity in list) {
if (entity.Region.IsInside(location.Line, location.Column))
return entity;
}
return null;
}
public CSharpTypeResolveContext GetTypeResolveContext(ICompilation compilation, TextLocation loc)
{
var rctx = new CSharpTypeResolveContext (compilation.MainAssembly);
rctx = rctx.WithUsingScope (GetUsingScope (loc).Resolve (compilation));
var curDef = GetInnermostTypeDefinition (loc);
if (curDef != null) {
var resolvedDef = curDef.Resolve (rctx).GetDefinition ();
if (resolvedDef == null)
return rctx;
rctx = rctx.WithCurrentTypeDefinition (resolvedDef);
var curMember = resolvedDef.Members.FirstOrDefault (m => m.Region.FileName == FileName && m.Region.Begin <= loc && loc < m.BodyRegion.End);
if (curMember != null)
rctx = rctx.WithCurrentMember (curMember);
}
return rctx;
}
public ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver GetResolver (ICompilation compilation, TextLocation loc)
{
return new ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver (GetTypeResolveContext (compilation, loc));
}
public string GetDocumentation(IUnresolvedEntity entity)
{
if (entity == null)
throw new ArgumentNullException("entity");
if (documentation == null)
return null;
string xmlDoc;
if (documentation.TryGetValue(entity, out xmlDoc))
return xmlDoc;
else
return null;
}
public DocumentationComment GetDocumentation(IUnresolvedEntity entity, IEntity resolvedEntity)
{
if (entity == null)
throw new ArgumentNullException("entity");
if (resolvedEntity == null)
throw new ArgumentNullException("resolvedEntity");
string xmlDoc = GetDocumentation(entity);
if (xmlDoc == null)
return null;
var unresolvedTypeDef = entity as IUnresolvedTypeDefinition ?? entity.DeclaringTypeDefinition;
var resolvedTypeDef = resolvedEntity as ITypeDefinition ?? resolvedEntity.DeclaringTypeDefinition;
if (unresolvedTypeDef != null && resolvedTypeDef != null) {
// Strictly speaking, we would have to pass the parent context into CreateResolveContext,
// then transform the result using WithTypeDefinition().
// However, we can simplify this here because we know this is a C# type definition.
var context = unresolvedTypeDef.CreateResolveContext(new SimpleTypeResolveContext(resolvedTypeDef));
if (resolvedEntity is IMember)
context = context.WithCurrentMember((IMember)resolvedEntity);
return new CSharpDocumentationComment(new StringTextSource(xmlDoc), context);
} else {
return new DocumentationComment(new StringTextSource(xmlDoc), new SimpleTypeResolveContext(resolvedEntity));
}
}
}
}
|