Refactor AliasingContext.

Introduce TraceableThisAliasProvider.

Adapted from https://github.com/develar/kotlin/commit/a9e0a42fb1347fa8e21c86b5a073ef8a7c873da0.
This commit is contained in:
Pavel V. Talanov
2012-08-10 21:08:01 +04:00
parent a4564aad80
commit 4b69fa1014
3 changed files with 158 additions and 30 deletions
@@ -17,26 +17,49 @@
package org.jetbrains.k2js.translate.context; package org.jetbrains.k2js.translate.context;
import com.google.common.collect.Maps; import com.google.common.collect.Maps;
import com.google.dart.compiler.backend.js.ast.JsExpression;
import com.google.dart.compiler.backend.js.ast.JsLiteral;
import com.google.dart.compiler.backend.js.ast.JsName; import com.google.dart.compiler.backend.js.ast.JsName;
import com.google.dart.compiler.backend.js.ast.JsNameRef;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
import org.jetbrains.jet.lang.descriptors.CallableDescriptor;
import org.jetbrains.jet.lang.descriptors.ClassOrNamespaceDescriptor;
import org.jetbrains.jet.lang.descriptors.DeclarationDescriptor; import org.jetbrains.jet.lang.descriptors.DeclarationDescriptor;
import org.jetbrains.jet.lang.psi.JetExpression; import org.jetbrains.jet.lang.psi.JetExpression;
import org.jetbrains.jet.lang.resolve.calls.ResolvedCall;
import org.jetbrains.jet.lang.resolve.scopes.receivers.ClassReceiver;
import org.jetbrains.jet.lang.resolve.scopes.receivers.ExtensionReceiver;
import org.jetbrains.jet.lang.resolve.scopes.receivers.ReceiverDescriptor;
import org.jetbrains.jet.lang.resolve.scopes.receivers.ThisReceiverDescriptor;
import java.util.Map; import java.util.Map;
import static org.jetbrains.k2js.translate.utils.JsDescriptorUtils.getDeclarationDescriptorForReceiver;
import static org.jetbrains.k2js.translate.utils.JsDescriptorUtils.getExpectedReceiverDescriptor;
/** /**
* @author Pavel Talanov * @author Pavel Talanov
*/ */
public class AliasingContext { public class AliasingContext {
private static final ThisAliasProvider EMPTY_THIS_ALIAS_PROVIDER = new ThisAliasProvider() {
@NotNull @Nullable
private static final AliasingContext ROOT = new AliasingContext(null) {
@Override @Override
public JsName getAliasForThis(@NotNull DeclarationDescriptor descriptor) { public JsNameRef get(@NotNull DeclarationDescriptor descriptor) {
return null; return null;
} }
@Nullable
@Override
public JsExpression get(@NotNull ResolvedCall<?> call) {
ReceiverDescriptor callThisObject = call.getThisObject();
return callThisObject.exists() && (callThisObject instanceof ClassReceiver || callThisObject instanceof ExtensionReceiver)
? JsLiteral.THIS
: null;
}
};
private static final AliasingContext ROOT = new AliasingContext(null, EMPTY_THIS_ALIAS_PROVIDER) {
@Override @Override
public JsName getAliasForDescriptor(@NotNull DeclarationDescriptor descriptor) { public JsName getAliasForDescriptor(@NotNull DeclarationDescriptor descriptor) {
return null; return null;
@@ -49,66 +72,105 @@ public class AliasingContext {
}; };
public static AliasingContext getCleanContext() { public static AliasingContext getCleanContext() {
return new AliasingContext(ROOT); return new AliasingContext(ROOT, ROOT.thisAliasProvider);
} }
@NotNull @NotNull
private final Map<DeclarationDescriptor, JsName> aliasesForDescriptors = Maps.newHashMap(); private final Map<DeclarationDescriptor, JsName> aliasesForDescriptors = Maps.newHashMap();
@NotNull @NotNull
private final Map<DeclarationDescriptor, JsName> aliasesForThis = Maps.newHashMap(); final ThisAliasProvider thisAliasProvider;
@NotNull @NotNull
private final Map<JetExpression, JsName> aliasesForExpressions = Maps.newHashMap(); private final Map<JetExpression, JsName> aliasesForExpressions = Maps.newHashMap();
@Nullable @Nullable
private final AliasingContext parent; private final AliasingContext parent;
private AliasingContext(@Nullable AliasingContext parent) { private AliasingContext(@Nullable AliasingContext parent, @NotNull ThisAliasProvider thisAliasProvider) {
this.parent = parent; this.parent = parent;
this.thisAliasProvider = thisAliasProvider;
}
public interface ThisAliasProvider {
@Nullable
JsNameRef get(@NotNull DeclarationDescriptor descriptor);
@Nullable
JsExpression get(@NotNull ResolvedCall<?> call);
}
public abstract static class AbstractThisAliasProvider implements ThisAliasProvider {
@NotNull
protected static DeclarationDescriptor normalize(@NotNull DeclarationDescriptor descriptor) {
if (descriptor instanceof ClassOrNamespaceDescriptor) {
return descriptor;
}
else if (descriptor instanceof CallableDescriptor) {
DeclarationDescriptor receiverDescriptor = getExpectedReceiverDescriptor((CallableDescriptor) descriptor);
assert receiverDescriptor != null;
return receiverDescriptor;
}
return descriptor;
}
@Nullable
@Override
public JsExpression get(@NotNull ResolvedCall<?> call) {
ReceiverDescriptor thisObject = call.getThisObject();
if (!thisObject.exists()) {
return null;
}
if (thisObject instanceof ExtensionReceiver || thisObject instanceof ClassReceiver) {
JsNameRef ref = get(((ThisReceiverDescriptor) thisObject).getDeclarationDescriptor());
if (ref != null) {
return ref;
}
}
JsNameRef ref = get(getDeclarationDescriptorForReceiver(thisObject));
return ref == null ? JsLiteral.THIS : ref;
}
} }
@NotNull @NotNull
public AliasingContext withThisAliased(@NotNull DeclarationDescriptor correspondingDescriptor, @NotNull JsName alias) { public AliasingContext inner(@NotNull ThisAliasProvider thisAliasProvider) {
AliasingContext newContext = new AliasingContext(this); return new AliasingContext(this, thisAliasProvider);
newContext.aliasesForThis.put(correspondingDescriptor, alias); }
return newContext;
@NotNull
public AliasingContext inner(@NotNull final DeclarationDescriptor correspondingDescriptor, @NotNull final JsName alias) {
return inner(new AbstractThisAliasProvider() {
@Nullable
@Override
public JsNameRef get(@NotNull DeclarationDescriptor descriptor) {
return correspondingDescriptor == normalize(descriptor) ? alias.makeRef() : null;
}
});
} }
@NotNull @NotNull
public AliasingContext withAliasesForExpressions(@NotNull Map<JetExpression, JsName> aliasesForExpressions) { public AliasingContext withAliasesForExpressions(@NotNull Map<JetExpression, JsName> aliasesForExpressions) {
AliasingContext newContext = new AliasingContext(this); AliasingContext newContext = new AliasingContext(this, thisAliasProvider);
newContext.aliasesForExpressions.putAll(aliasesForExpressions); newContext.aliasesForExpressions.putAll(aliasesForExpressions);
return newContext; return newContext;
} }
@NotNull @NotNull
public AliasingContext withDescriptorsAliased(@NotNull Map<DeclarationDescriptor, JsName> aliases) { public AliasingContext withDescriptorsAliased(@NotNull Map<DeclarationDescriptor, JsName> aliases) {
AliasingContext newContext = new AliasingContext(this); AliasingContext newContext = new AliasingContext(this, thisAliasProvider);
newContext.aliasesForDescriptors.putAll(aliases); newContext.aliasesForDescriptors.putAll(aliases);
return newContext; return newContext;
} }
@NotNull
private AliasingContext getParent() {
assert parent != null;
return parent;
}
@Nullable
public JsName getAliasForThis(@NotNull DeclarationDescriptor descriptor) {
JsName alias = aliasesForThis.get(descriptor.getOriginal());
if (alias != null) {
return alias;
}
return getParent().getAliasForThis(descriptor);
}
@Nullable @Nullable
public JsName getAliasForDescriptor(@NotNull DeclarationDescriptor descriptor) { public JsName getAliasForDescriptor(@NotNull DeclarationDescriptor descriptor) {
JsName alias = aliasesForDescriptors.get(descriptor.getOriginal()); JsName alias = aliasesForDescriptors.get(descriptor.getOriginal());
if (alias != null) { if (alias != null) {
return alias; return alias;
} }
return getParent().getAliasForDescriptor(descriptor); assert parent != null;
return parent.getAliasForDescriptor(descriptor);
} }
@Nullable @Nullable
@@ -117,6 +179,7 @@ public class AliasingContext {
if (alias != null) { if (alias != null) {
return alias; return alias;
} }
return getParent().getAliasForExpression(element); assert parent != null;
return parent.getAliasForExpression(element);
} }
} }
@@ -0,0 +1,54 @@
/*
* Copyright 2010-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.k2js.translate.context;
import com.google.dart.compiler.backend.js.ast.JsNameRef;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.jet.lang.descriptors.ClassOrNamespaceDescriptor;
import org.jetbrains.jet.lang.descriptors.DeclarationDescriptor;
public class TraceableThisAliasProvider extends AliasingContext.AbstractThisAliasProvider {
private final ClassOrNamespaceDescriptor descriptor;
private final JsNameRef thisRef;
private boolean thisWasCaptured;
public boolean wasThisCaptured() {
return thisWasCaptured;
}
public TraceableThisAliasProvider(@NotNull ClassOrNamespaceDescriptor descriptor, @NotNull JsNameRef thisRef) {
this.descriptor = descriptor;
this.thisRef = thisRef;
}
@Nullable
public JsNameRef getRefIfWasCaptured() {
return thisWasCaptured ? thisRef : null;
}
@Nullable
@Override
public JsNameRef get(@NotNull DeclarationDescriptor unnormalizedDescriptor) {
if (descriptor == normalize(unnormalizedDescriptor)) {
thisWasCaptured = true;
return thisRef;
}
return null;
}
}
@@ -216,4 +216,15 @@ public class TranslationContext {
public void addStatementToCurrentBlock(@NotNull JsStatement statement) { public void addStatementToCurrentBlock(@NotNull JsStatement statement) {
dynamicContext.jsBlock().getStatements().add(statement); dynamicContext.jsBlock().getStatements().add(statement);
} }
@NotNull
public AliasingContext.ThisAliasProvider thisAliasProvider() {
return aliasingContext().thisAliasProvider;
}
@NotNull
public JsExpression getThisObject(@NotNull DeclarationDescriptor descriptor) {
JsNameRef ref = thisAliasProvider().get(descriptor);
return ref == null ? JsLiteral.THIS : ref;
}
} }