org.pkl.thirdparty.truffle.object.PropertyImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkl-config-java-all Show documentation
Show all versions of pkl-config-java-all Show documentation
Shaded fat Jar for pkl-config-java, a Java config library based on the Pkl config language.
/*
* Copyright (c) 2012, 2022, 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 org.pkl.thirdparty.truffle.object;
import java.util.Objects;
import org.pkl.thirdparty.truffle.api.CompilerAsserts;
import org.pkl.thirdparty.truffle.api.object.DynamicObject;
import org.pkl.thirdparty.truffle.api.object.HiddenKey;
import org.pkl.thirdparty.truffle.api.object.Location;
import org.pkl.thirdparty.truffle.api.object.Property;
import org.pkl.thirdparty.truffle.api.object.Shape;
/**
* Property objects represent the mapping between property identifiers (keys) and storage locations.
* Optionally, properties may have metadata attached to them.
*
* @since 0.17 or earlier
*/
@SuppressWarnings("deprecation")
public final class PropertyImpl extends Property {
private final Object key;
private final Location location;
private final int flags;
/**
* Generic, usual-case constructor for properties storing at least a name.
*
* @param key the name of the property
* @param location the storage location used to access the property
* @param flags property flags (optional)
* @since 0.17 or earlier
*/
PropertyImpl(Object key, Location location, int flags) {
CompilerAsserts.neverPartOfCompilation();
this.key = Objects.requireNonNull(key);
this.location = Objects.requireNonNull(location);
this.flags = flags;
}
/** @since 0.17 or earlier */
@Override
public Object getKey() {
return key;
}
/** @since 0.17 or earlier */
@Override
public int getFlags() {
return flags;
}
/** @since 0.17 or earlier */
public Property relocate(Location newLocation) {
if (!getLocation().equals(newLocation)) {
return new PropertyImpl(key, newLocation, flags);
}
return this;
}
/** @since 0.17 or earlier */
@Override
public Object get(DynamicObject store, Shape shape) {
return getLocation().get(store, shape);
}
/** @since 0.17 or earlier */
@Override
public Object get(DynamicObject store, boolean condition) {
return getLocation().get(store, condition);
}
private static boolean verifyShapeParameter(DynamicObject store, Shape shape) {
assert shape == null || store.getShape() == shape : "wrong shape";
return true;
}
/** @since 0.17 or earlier */
@Override
public void set(DynamicObject store, Object value, Shape shape) throws org.pkl.thirdparty.truffle.api.object.IncompatibleLocationException {
assert verifyShapeParameter(store, shape);
((LocationImpl) getLocation()).set(store, value, shape);
}
/** @since 0.17 or earlier */
@Override
public void setSafe(DynamicObject store, Object value, Shape shape) {
assert verifyShapeParameter(store, shape);
try {
((LocationImpl) getLocation()).set(store, value, shape);
} catch (org.pkl.thirdparty.truffle.api.object.IncompatibleLocationException ex) {
throw new IllegalStateException();
}
}
/** @since 0.17 or earlier */
@Override
public void setGeneric(DynamicObject store, Object value, Shape shape) {
assert verifyShapeParameter(store, shape);
try {
set(store, value, shape);
} catch (org.pkl.thirdparty.truffle.api.object.IncompatibleLocationException ex) {
setSlowCase(store, value);
}
}
/** @since 0.17 or earlier */
@Override
public void setSafe(DynamicObject store, Object value, Shape oldShape, Shape newShape) {
assert verifyShapeParameter(store, oldShape);
try {
((LocationImpl) getLocation()).set(store, value, oldShape, newShape);
} catch (org.pkl.thirdparty.truffle.api.object.IncompatibleLocationException ex) {
throw new IllegalStateException();
}
}
/** @since 0.17 or earlier */
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
PropertyImpl other = (PropertyImpl) obj;
return (key == other.key || key.equals(other.key)) && flags == other.flags && (location == other.location || location.equals(other.location));
}
/** @since 0.17 or earlier */
public boolean isSame(Property obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
PropertyImpl other = (PropertyImpl) obj;
return key.equals(other.key) && flags == other.flags;
}
/** @since 0.17 or earlier */
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + key.hashCode();
result = prime * result + location.hashCode();
result = prime * result + flags;
return result;
}
/** @since 0.17 or earlier */
@Override
public String toString() {
return "\"" + key + "\"" + ":" + location + (flags == 0 ? "" : "%" + flags);
}
/** @since 0.17 or earlier */
@Override
public Location getLocation() {
return location;
}
private void setSlowCase(DynamicObject store, Object value) {
ShapeImpl oldShape = (ShapeImpl) store.getShape();
oldShape.getLayoutStrategy().propertySetFallback(this, store, value, oldShape);
}
/** @since 0.17 or earlier */
@Override
public boolean isHidden() {
return key instanceof HiddenKey;
}
/** @since 0.17 or earlier */
public Property copyWithFlags(int newFlags) {
return new PropertyImpl(key, location, newFlags);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy