/* * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.oracle.truffle.object.dsl.processor.model; import javax.lang.model.type.TypeMirror; import com.oracle.truffle.object.dsl.processor.LayoutParser; public class PropertyModel { private String name; private final TypeMirror type; private final boolean hasObjectTypeGetter; private final boolean hasShapeGetter; private final boolean hasShapeSetter; private final boolean hasGetter; private final boolean hasSetter; private final boolean hasUnsafeSetter; private final boolean nullable; private final boolean volatileSemantics; private final boolean hasCompareAndSet; private final boolean hasGetAndSet; private final boolean hasIdentifier; private final boolean isShapeProperty; public PropertyModel(String name, TypeMirror type, boolean hasObjectTypeGetter, boolean hasShapeGetter, boolean hasShapeSetter, boolean hasGetter, boolean hasSetter, boolean hasUnsafeSetter, boolean nullable, boolean volatileSemantics, boolean hasCompareAndSet, boolean hasGetAndSet, boolean hasIdentifier, boolean isShapeProperty) { this.name = name; this.hasObjectTypeGetter = hasObjectTypeGetter; this.hasShapeGetter = hasShapeGetter; this.hasShapeSetter = hasShapeSetter; this.hasGetter = hasGetter; this.hasSetter = hasSetter; this.hasUnsafeSetter = hasUnsafeSetter; this.type = type; this.nullable = nullable; this.volatileSemantics = volatileSemantics; this.hasCompareAndSet = hasCompareAndSet; this.hasGetAndSet = hasGetAndSet; this.hasIdentifier = hasIdentifier; this.isShapeProperty = isShapeProperty; } public String getName() { return name; } public void fixName(String realName) { this.name = realName; } public boolean hasGeneratedName() { return LayoutParser.isGeneratedName(name); } public TypeMirror getType() { return type; } public boolean hasObjectTypeGetter() { return hasObjectTypeGetter; } public boolean hasShapeSetter() { return hasShapeSetter; } public boolean hasShapeGetter() { return hasShapeGetter; } public boolean hasGetter() { return hasGetter; } public boolean hasSetter() { return hasSetter; } public boolean isFinal() { return !(hasSetter || hasGetAndSet || hasCompareAndSet); } public boolean hasUnsafeSetter() { return hasUnsafeSetter; } public boolean isNullable() { return nullable; } public boolean isVolatile() { return volatileSemantics; } public boolean hasCompareAndSet() { return hasCompareAndSet; } public boolean hasGetAndSet() { return hasGetAndSet; } public boolean hasIdentifier() { return hasIdentifier; } public boolean isInstanceProperty() { return !isShapeProperty; } public boolean isShapeProperty() { return isShapeProperty; } @Override public String toString() { return name + " type=" + type + " shape=" + isShapeProperty; } }