Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.oracle.truffle.object.TriePropertyMap Maven / Gradle / Ivy
Go to download
Truffle is a multi-language framework for executing dynamic languages
that achieves high performance when combined with Graal.
/*
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* The Universal Permissive License (UPL), Version 1.0
*
* Subject to the condition set forth below, permission is hereby granted to any
* person obtaining a copy of this software, associated documentation and/or
* data (collectively the "Software"), free of charge and under any and all
* copyright rights in the Software, and any and all patent rights owned or
* freely licensable by each licensor hereunder covering either (i) the
* unmodified Software as contributed to or provided by such licensor, or (ii)
* the Larger Works (as defined below), to deal in both
*
* (a) the Software, and
*
* (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
* one is included with the Software each a "Larger Work" to which the Software
* is contributed by such licensors),
*
* without restriction, including without limitation the rights to copy, create
* derivative works of, display, perform, and distribute the Software and make,
* use, sell, offer for sale, import, export, have made, and have sold the
* Software and the Larger Work(s), and to sublicense the foregoing rights on
* either these or other terms.
*
* This license is subject to the following condition:
*
* The above copyright notice and either this complete permission notice or at a
* minimum a reference to the UPL must 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.
*/
package com.oracle.truffle.object;
import java.util.AbstractSet;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import com.oracle.truffle.api.object.Property;
/**
* Implementation of {@link PropertyMap} as a hash array mapped trie.
*
* Keeps insertion order through previous and next key links in the entries.
*/
final class TriePropertyMap extends PropertyMap implements LinkedImmutableMap {
private static final TriePropertyMap EMPTY = new TriePropertyMap(0, TrieNode.empty(), null, null);
/* Enables stricter assertions for debugging. */
private static final boolean VERIFY = false;
@SuppressWarnings("hiding")
static final class LinkedPropertyEntry implements LinkedEntry {
private final Property value;
private final Object prevKey;
private final Object nextKey;
LinkedPropertyEntry(Property value, Object prevKey, Object nextKey) {
this.value = Objects.requireNonNull(value);
this.prevKey = prevKey;
this.nextKey = nextKey;
}
@Override
public Object getKey() {
return value.getKey();
}
@Override
public Property getValue() {
return value;
}
@Override
public Property setValue(Property value) {
throw new UnsupportedOperationException();
}
@Override
public int hashCode() {
return value.hashCode();
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof LinkedPropertyEntry)) {
return false;
}
LinkedPropertyEntry other = (LinkedPropertyEntry) obj;
return this.value.equals(other.value) && Objects.equals(this.prevKey, other.prevKey) && Objects.equals(this.nextKey, other.nextKey);
}
@Override
public Object getPrevKey() {
return prevKey;
}
@Override
public Object getNextKey() {
return nextKey;
}
@Override
public LinkedPropertyEntry withValue(Property value) {
return new LinkedPropertyEntry(value, prevKey, nextKey);
}
@Override
public LinkedPropertyEntry withPrevKey(Object prevKey) {
return new LinkedPropertyEntry(value, prevKey, nextKey);
}
@Override
public LinkedPropertyEntry withNextKey(Object nextKey) {
return new LinkedPropertyEntry(value, prevKey, nextKey);
}
@Override
public String toString() {
return getClass().getSimpleName() + "@" + Integer.toHexString(hashCode()) + "[" + value + "]";
}
}
private final int size;
private final TrieNode root;
private final LinkedPropertyEntry head;
private final LinkedPropertyEntry tail;
static int hash(Object key) {
return key.hashCode();
}
static Object key(Property property) {
return property.getKey();
}
private TriePropertyMap(int size, TrieNode root, LinkedPropertyEntry head, LinkedPropertyEntry tail) {
this.size = size;
this.root = root;
this.head = head;
this.tail = tail;
assert verify();
}
private boolean verify() {
assert (size == 0 && head == null && tail == null) || (size != 0 && head != null && tail != null) : "size=" + size + ", head=" + head + ", tail=" + tail;
assert head == null || head == getEntry(head.getKey());
assert tail == null || tail == getEntry(tail.getKey());
if (VERIFY) {
assert root.count() == size : root.count() + " != " + size;
assert root.verify(0);
int count = 0;
for (Iterator> iterator = orderedEntryIterator(); iterator.hasNext();) {
Map.Entry e = iterator.next();
assert e == getEntry(e.getKey());
count++;
}
assert count == size : count + " != " + size;
}
return true;
}
public static TriePropertyMap empty() {
return EMPTY;
}
@Override
public int size() {
return size;
}
@Override
public boolean isEmpty() {
return size() == 0;
}
@Override
public boolean containsKey(Object key) {
return getEntry(key) != null;
}
@Override
public boolean containsValue(Object value) {
for (Map.Entry entry : reverseOrderEntrySet()) {
if (Objects.equals(value, entry.getValue())) {
return true;
}
}
return false;
}
@Override
public Property get(Object key) {
LinkedPropertyEntry entry = getEntry(key);
return entry == null ? null : entry.getValue();
}
@Override
public LinkedPropertyEntry getEntry(Object key) {
LinkedPropertyEntry entry = root.find(key, hash(key));
assert entry == null || entry.getKey().equals(key);
return entry;
}
@Override
public TriePropertyMap putCopy(Property value) {
Object key = key(value);
return copyAndPutImpl(key, value);
}
@Override
public TriePropertyMap copyAndPut(Object key, Property value) {
if (!value.getKey().equals(key)) {
throw new IllegalArgumentException("Key must equal extracted key of property.");
}
return copyAndPutImpl(key, value);
}
private TriePropertyMap copyAndPutImpl(Object key, Property value) {
int hash = hash(key);
LinkedPropertyEntry existing = root.find(key, hash);
TrieNode newRoot = root;
LinkedPropertyEntry newTail;
LinkedPropertyEntry newHead;
final int newSize;
final LinkedPropertyEntry newEntry;
if (existing == null) {
newSize = size + 1;
if (tail == null) {
// inserting into empty map
newEntry = new LinkedPropertyEntry(value, null, null);
newHead = newTail = newEntry;
} else {
// inserting at the end
assert tail != null && head != null;
Object tailKey = tail.getKey();
newEntry = new LinkedPropertyEntry(value, tailKey, null);
// old tail needs to point to the new key
LinkedPropertyEntry tailWithNext = tail.withNextKey(key);
newRoot = newRoot.put(tailKey, hash(tailKey), tailWithNext);
if (head == tail) {
newHead = tailWithNext;
} else {
newHead = head;
}
newTail = newEntry;
}
} else if (value.equals(existing.value)) {
return this;
} else {
// replace
newSize = size;
newHead = head;
newTail = tail;
newEntry = existing.withValue(value);
assert !newEntry.equals(existing);
if (existing.getPrevKey() != null) {
assert getEntry(existing.getPrevKey()).getNextKey().equals(key);
} else {
assert existing == head;
newHead = newEntry;
}
if (existing.getNextKey() != null) {
assert getEntry(existing.getNextKey()).getPrevKey().equals(key);
} else {
assert existing == tail;
newTail = newEntry;
}
}
newRoot = newRoot.put(key, hash, newEntry);
return new TriePropertyMap(newSize, newRoot, newHead, newTail);
}
@Override
public TriePropertyMap removeCopy(Property value) {
Object key = key(value);
return copyAndRemove(key);
}
@Override
public TriePropertyMap copyAndRemove(Object key) {
int hash = hash(key);
LinkedPropertyEntry existing = root.find(key, hash);
if (existing == null) {
return this;
} else if (size == 1) {
return empty();
}
TrieNode newRoot = root;
LinkedPropertyEntry newHead = head;
LinkedPropertyEntry newTail = tail;
if (existing.getPrevKey() != null) {
Object prevKey = existing.getPrevKey();
LinkedPropertyEntry existingPrev = getEntry(prevKey);
LinkedPropertyEntry newPrev = existingPrev.withNextKey(existing.getNextKey());
newRoot = newRoot.put(prevKey, hash(prevKey), newPrev);
if (existing == tail) {
newTail = newPrev;
}
if (existingPrev == head) {
newHead = newPrev;
}
}
if (existing.getNextKey() != null) {
Object nextKey = existing.getNextKey();
LinkedPropertyEntry existingNext = getEntry(nextKey);
LinkedPropertyEntry newNext = existingNext.withPrevKey(existing.getPrevKey());
newRoot = newRoot.put(nextKey, hash(nextKey), newNext);
if (existing == head) {
newHead = newNext;
}
if (existingNext == tail) {
newTail = newNext;
}
}
newRoot = newRoot.remove(key, hash);
assert newRoot != null;
return new TriePropertyMap(size - 1, newRoot, newHead, newTail);
}
@Override
public TriePropertyMap replaceCopy(Property oldValue, Property newValue) {
return putCopy(newValue);
}
Iterator> orderedEntryIterator() {
return new LinkedEntryIterator<>(TriePropertyMap.this, head, true);
}
Iterator> reverseOrderedEntryIterator() {
return new LinkedEntryIterator<>(TriePropertyMap.this, tail, false);
}
@Override
public Iterator orderedKeyIterator() {
return new LinkedKeyIterator<>(TriePropertyMap.this, head, true);
}
@Override
public Iterator reverseOrderedKeyIterator() {
return new LinkedKeyIterator<>(TriePropertyMap.this, tail, false);
}
@Override
public Iterator orderedValueIterator() {
return new LinkedValueIterator<>(TriePropertyMap.this, head, true);
}
@Override
public Iterator reverseOrderedValueIterator() {
return new LinkedValueIterator<>(TriePropertyMap.this, tail, false);
}
@Override
public Set> entrySet() {
return new AbstractSet>() {
@Override
public Iterator> iterator() {
return orderedEntryIterator();
}
@Override
public int size() {
return TriePropertyMap.this.size();
}
};
}
@Override
public Set keySet() {
return new AbstractSet() {
@Override
public Iterator iterator() {
return TriePropertyMap.this.orderedKeyIterator();
}
@Override
public int size() {
return TriePropertyMap.this.size();
}
};
}
@Override
public Collection values() {
return new AbstractSet() {
@Override
public Iterator iterator() {
return TriePropertyMap.this.orderedValueIterator();
}
@Override
public int size() {
return TriePropertyMap.this.size();
}
};
}
public Set> reverseOrderEntrySet() {
return new AbstractSet>() {
@Override
public Iterator> iterator() {
return reverseOrderedEntryIterator();
}
@Override
public int size() {
return TriePropertyMap.this.size();
}
};
}
public Set reverseOrderKeys() {
return new AbstractSet() {
@Override
public Iterator iterator() {
return TriePropertyMap.this.reverseOrderedKeyIterator();
}
@Override
public int size() {
return TriePropertyMap.this.size();
}
};
}
public Set reverseOrderValues() {
return new AbstractSet() {
@Override
public Iterator iterator() {
return TriePropertyMap.this.reverseOrderedValueIterator();
}
@Override
public int size() {
return TriePropertyMap.this.size();
}
};
}
@Override
public Property getLastProperty() {
return tail == null ? null : tail.getValue();
}
@Override
public String toString() {
return values().toString();
}
}