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
|
// 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.Concurrent;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using ICSharpCode.NRefactory.CSharp.Resolver;
using ICSharpCode.NRefactory.Semantics;
using ICSharpCode.NRefactory.TypeSystem;
using ICSharpCode.NRefactory.Utils;
namespace ICSharpCode.NRefactory.CSharp.TypeSystem
{
/// <summary>
/// Resolved version of using scope.
/// </summary>
public class ResolvedUsingScope
{
readonly CSharpTypeResolveContext parentContext;
readonly UsingScope usingScope;
internal readonly ConcurrentDictionary<string, ResolveResult> ResolveCache = new ConcurrentDictionary<string, ResolveResult>();
internal List<List<IMethod>> AllExtensionMethods;
public ResolvedUsingScope(CSharpTypeResolveContext context, UsingScope usingScope)
{
if (context == null)
throw new ArgumentNullException("context");
if (usingScope == null)
throw new ArgumentNullException("usingScope");
this.parentContext = context;
this.usingScope = usingScope;
if (usingScope.Parent != null) {
if (context.CurrentUsingScope == null)
throw new InvalidOperationException();
} else {
if (context.CurrentUsingScope != null)
throw new InvalidOperationException();
}
}
public UsingScope UnresolvedUsingScope {
get { return usingScope; }
}
INamespace @namespace;
public INamespace Namespace {
get {
INamespace result = LazyInit.VolatileRead(ref this.@namespace);
if (result != null) {
return result;
} else {
if (parentContext.CurrentUsingScope != null) {
result = parentContext.CurrentUsingScope.Namespace.GetChildNamespace(usingScope.ShortNamespaceName);
if (result == null)
result = new DummyNamespace(parentContext.CurrentUsingScope.Namespace, usingScope.ShortNamespaceName);
} else {
result = parentContext.Compilation.RootNamespace;
}
Debug.Assert(result != null);
return LazyInit.GetOrSet(ref this.@namespace, result);
}
}
}
public ResolvedUsingScope Parent {
get { return parentContext.CurrentUsingScope; }
}
IList<INamespace> usings;
public IList<INamespace> Usings {
get {
var result = LazyInit.VolatileRead(ref this.usings);
if (result != null) {
return result;
} else {
result = new List<INamespace>();
CSharpResolver resolver = new CSharpResolver(parentContext.WithUsingScope(this));
foreach (var u in usingScope.Usings) {
INamespace ns = u.ResolveNamespace(resolver);
if (ns != null && !result.Contains(ns))
result.Add(ns);
}
return LazyInit.GetOrSet(ref this.usings, new ReadOnlyCollection<INamespace>(result));
}
}
}
IList<KeyValuePair<string, ResolveResult>> usingAliases;
public IList<KeyValuePair<string, ResolveResult>> UsingAliases {
get {
var result = LazyInit.VolatileRead(ref this.usingAliases);
if (result != null) {
return result;
} else {
CSharpResolver resolver = new CSharpResolver(parentContext.WithUsingScope(this));
result = new KeyValuePair<string, ResolveResult>[usingScope.UsingAliases.Count];
for (int i = 0; i < result.Count; i++) {
var rr = usingScope.UsingAliases[i].Value.Resolve(resolver);
if (rr is TypeResolveResult) {
rr = new AliasTypeResolveResult (usingScope.UsingAliases[i].Key, (TypeResolveResult)rr);
} else if (rr is NamespaceResolveResult) {
rr = new AliasNamespaceResolveResult (usingScope.UsingAliases[i].Key, (NamespaceResolveResult)rr);
}
result[i] = new KeyValuePair<string, ResolveResult>(
usingScope.UsingAliases[i].Key,
rr
);
}
return LazyInit.GetOrSet(ref this.usingAliases, result);
}
}
}
public IList<string> ExternAliases {
get { return usingScope.ExternAliases; }
}
/// <summary>
/// Gets whether this using scope has an alias (either using or extern)
/// with the specified name.
/// </summary>
public bool HasAlias(string identifier)
{
return usingScope.HasAlias(identifier);
}
sealed class DummyNamespace : INamespace
{
readonly INamespace parentNamespace;
readonly string name;
public DummyNamespace(INamespace parentNamespace, string name)
{
this.parentNamespace = parentNamespace;
this.name = name;
}
public string ExternAlias { get; set; }
string INamespace.FullName {
get { return NamespaceDeclaration.BuildQualifiedName(parentNamespace.FullName, name); }
}
public string Name {
get { return name; }
}
SymbolKind ISymbol.SymbolKind {
get { return SymbolKind.Namespace; }
}
INamespace INamespace.ParentNamespace {
get { return parentNamespace; }
}
IEnumerable<INamespace> INamespace.ChildNamespaces {
get { return EmptyList<INamespace>.Instance; }
}
IEnumerable<ITypeDefinition> INamespace.Types {
get { return EmptyList<ITypeDefinition>.Instance; }
}
IEnumerable<IAssembly> INamespace.ContributingAssemblies {
get { return EmptyList<IAssembly>.Instance; }
}
ICompilation ICompilationProvider.Compilation {
get { return parentNamespace.Compilation; }
}
INamespace INamespace.GetChildNamespace(string name)
{
return null;
}
ITypeDefinition INamespace.GetTypeDefinition(string name, int typeParameterCount)
{
return null;
}
}
}
}
|