org.jetbrains.kotlin.util.slicedMap.TrackingSlicedMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2015 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.kotlin.util.slicedMap;
import kotlin.jvm.functions.Function3;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.kotlin.utils.Printer;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
public class TrackingSlicedMap extends SlicedMapImpl {
private final Map, SliceWithStackTrace, ?>> sliceTranslationMap = new HashMap<>();
private final boolean trackWithStackTraces;
public TrackingSlicedMap(boolean trackWithStackTraces) {
super(false);
this.trackWithStackTraces = trackWithStackTraces;
}
@SuppressWarnings("unchecked")
private SliceWithStackTrace wrapSlice(ReadOnlySlice slice) {
return (SliceWithStackTrace) sliceTranslationMap.computeIfAbsent(slice, k -> new SliceWithStackTrace<>(slice));
}
@Override
public V get(ReadOnlySlice slice, K key) {
return super.get(wrapSlice(slice), key).value;
}
@Override
public Collection getKeys(WritableSlice slice) {
return super.getKeys(wrapSlice(slice));
}
@Override
public void forEach(@NotNull Function3 f) {
super.forEach((slice, key, value) -> {
f.invoke(((SliceWithStackTrace) slice).getWritableDelegate(), key, ((TrackableValue>) value).value);
return null;
});
}
@Override
public void put(WritableSlice slice, K key, V value) {
super.put(wrapSlice(slice), key, new TrackableValue<>(value, trackWithStackTraces));
}
private static class TrackableValue {
private final static StackTraceElement[] EMPTY_STACK_TRACE = new StackTraceElement[0];
private final V value;
private final StackTraceElement[] stackTrace;
private final String threadName;
private TrackableValue(V value, boolean storeStack) {
this.value = value;
this.stackTrace = storeStack ? Thread.currentThread().getStackTrace() : EMPTY_STACK_TRACE;
this.threadName = Thread.currentThread().getName();
}
private Appendable printStackTrace(Appendable appendable) {
Printer s = new Printer(appendable);
s.println(value);
s.println("Thread: " + threadName);
s.println("Written at ");
StackTraceElement[] trace = stackTrace;
for (StackTraceElement aTrace : trace) {
s.println("\tat " + aTrace);
}
s.println("---------");
return appendable;
}
@Override
public String toString() {
return printStackTrace(new StringBuilder()).toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TrackableValue other = (TrackableValue) o;
if (value != null ? !value.equals(other.value) : other.value != null) return false;
return true;
}
@Override
public int hashCode() {
return value != null ? value.hashCode() : 0;
}
}
private class SliceWithStackTrace
extends AbstractWritableSlice>
implements WritableSlice> {
private final ReadOnlySlice delegate;
private SliceWithStackTrace(@NotNull ReadOnlySlice delegate) {
super(delegate.toString());
this.delegate = delegate;
}
// Methods of ReadOnlySlice
@Override
public TrackableValue computeValue(SlicedMap map, K key, TrackableValue value, boolean valueNotFound) {
return new TrackableValue<>(delegate.computeValue(map, key, value == null ? null : value.value, valueNotFound), trackWithStackTraces);
}
@Override
public ReadOnlySlice> makeRawValueVersion() {
return wrapSlice(delegate.makeRawValueVersion());
}
// Methods of WritableSlice
private WritableSlice getWritableDelegate() {
return (WritableSlice) delegate;
}
@Override
public boolean isCollective() {
return getWritableDelegate().isCollective();
}
@Override
public RewritePolicy getRewritePolicy() {
return getWritableDelegate().getRewritePolicy();
}
@Override
public void afterPut(MutableSlicedMap map, K key, TrackableValue value) {
getWritableDelegate().afterPut(map, key, value.value);
}
@Override
public boolean check(K key, TrackableValue value) {
return getWritableDelegate().check(key, value.value);
}
}
}