All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eolang.jeo.representation.directives.DirectivesField Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2016-2024 Objectionary.com
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall 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 NON-INFRINGEMENT. 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.eolang.jeo.representation.directives;

import java.util.Iterator;
import java.util.Optional;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.eolang.jeo.representation.PrefixedName;
import org.objectweb.asm.Opcodes;
import org.xembly.Directive;

/**
 * Field directives.
 * Any java field will be transformed into the following EO object.
 *  

* {@code * [access descriptor signature value] > field * } *

* The name of the "field" object is a name of the field in Java class. * For example, the following Java field *

* {@code * private final int bar = 1; * } *

* will be transformed into the following EO object: *

* {@code * field 18 "I" "" "01" > bar * } *

* * @since 0.1 */ @ToString @EqualsAndHashCode public final class DirectivesField implements Iterable { /** * Access. */ private final int access; /** * Name. */ private final String name; /** * Descriptor. */ private final String descriptor; /** * Signature. */ private final String signature; /** * Initial value. */ private final Object value; /** * Annotations. */ private final DirectivesAnnotations annotations; /** * Constructor. */ public DirectivesField() { this(Opcodes.ACC_PUBLIC, "unknown", "I", "", 0); } /** * Constructor. * @param annotations Annotations. */ public DirectivesField(final DirectivesAnnotation... annotations) { this( Opcodes.ACC_PUBLIC, "unknown", "I", "", 0, new DirectivesAnnotations("annotations-unknown", annotations) ); } /** * Constructor. * @param access Access * @param name Name * @param descriptor Descriptor * @param signature Signature * @param value Initial value * @checkstyle ParameterNumberCheck (5 lines) */ public DirectivesField( final int access, final String name, final String descriptor, final String signature, final Object value ) { this( access, name, descriptor, signature, value, new DirectivesAnnotations(String.format("annotations-%s", name)) ); } /** * Constructor. * @param access Access modifiers * @param name Name * @param descriptor Descriptor * @param signature Signature * @param value Initial value * @param annotations Annotations * @checkstyle ParameterNumberCheck (5 lines) */ public DirectivesField( final int access, final String name, final String descriptor, final String signature, final Object value, final DirectivesAnnotations annotations ) { this.access = access; this.name = name; this.descriptor = Optional.ofNullable(descriptor).orElse(""); this.signature = Optional.ofNullable(signature).orElse(""); this.value = value; this.annotations = annotations; } @Override public Iterator iterator() { return new DirectivesJeoObject( "field", new PrefixedName(this.name).encode(), new DirectivesValue(this.title("access"), this.access), new DirectivesValue(this.title("descriptor"), this.descriptor), new DirectivesValue(this.title("signature"), this.signature), new DirectivesValue(this.title("value"), this.value), this.annotations ).iterator(); } /** * Field property title. * It is used to create a title for the field property to make XMIR more readable. * @param prefix Prefix * @return Title */ private String title(final String prefix) { final String template = "%s-%s"; return String.format(template, prefix, this.name); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy