
org.snapscript.tree.define.EnumBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
The newest version!
package org.snapscript.tree.define;
import static org.snapscript.core.ModifierType.ENUM;
import static org.snapscript.core.constraint.Constraint.NONE;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicReference;
import org.snapscript.core.module.Module;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.scope.ScopeState;
import org.snapscript.core.type.Type;
import org.snapscript.core.type.TypeBody;
import org.snapscript.core.variable.Value;
import org.snapscript.tree.constraint.EnumName;
public class EnumBuilder {
private final AtomicReference reference;
private final EnumPropertyGenerator generator;
private final ConstantPropertyBuilder builder;
private final TypeHierarchy hierarchy;
private final EnumName name;
private final List values;
public EnumBuilder(EnumName name, TypeHierarchy hierarchy) {
this.reference = new AtomicReference();
this.generator = new EnumPropertyGenerator();
this.builder = new ConstantPropertyBuilder();
this.values = new ArrayList();
this.hierarchy = hierarchy;
this.name = name;
}
public Type create(TypeBody body, Scope outer) throws Exception {
Module module = outer.getModule();
String alias = name.getName(outer);
Type enclosing = outer.getType();
Type type = module.addType(alias, ENUM.mask);
if(enclosing != null) {
String name = type.getName();
String prefix = enclosing.getName();
String key = name.replace(prefix + '$', ""); // get the class name
Value value = Value.getConstant(type);
ScopeState state = outer.getState();
builder.createStaticProperty(body, key, enclosing, NONE);
state.addValue(key, value);
}
reference.set(type);
return type;
}
public Type define(TypeBody body, Scope outer) throws Exception {
Type type = reference.get();
Scope scope = type.getScope();
generator.generate(body, scope, type, values);
hierarchy.define(scope, type); // this may throw exception if missing type
return type;
}
public Type compile(TypeBody body, Scope outer) throws Exception {
Type type = reference.get();
hierarchy.compile(outer, type);
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy