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

com.strobel.reflection.emit.ConstructorBuilder Maven / Gradle / Ivy

/*
 * ConstructorBuilder.java
 *
 * Copyright (c) 2012 Mike Strobel
 *
 * This source code is subject to terms and conditions of the Apache License, Version 2.0.
 * A copy of the license can be found in the License.html file at the root of this distribution.
 * By using this source code in any fashion, you are agreeing to be bound by the terms of the
 * Apache License, Version 2.0.
 *
 * You must not remove this notice, or any other, from this software.
 */

package com.strobel.reflection.emit;

import com.strobel.annotations.NotNull;
import com.strobel.core.ReadOnlyList;
import com.strobel.reflection.*;

import java.lang.annotation.Annotation;
import java.lang.reflect.Constructor;
import java.util.List;

/**
 * @author Mike Strobel
 */
@SuppressWarnings({ "PackageVisibleField", "DuplicatedCode" })
public final class ConstructorBuilder extends ConstructorInfo {
    private final MethodBuilder _methodBuilder;

    boolean returnCodeGenerator = true;
    ConstructorInfo generatedConstructor;

    public ConstructorBuilder(
        final int modifiers,
        final TypeList parameterTypes,
        final TypeList thrownTypes,
        final TypeBuilder declaringType) {

        _methodBuilder = new MethodBuilder(
            "",
            modifiers,
            null,
            parameterTypes,
            thrownTypes,
            declaringType
        );

        declaringType.addMethodToList(_methodBuilder);
    }

    private void verifyTypeCreated() {
        _methodBuilder.getDeclaringType().verifyCreated();
    }

    public boolean isFinished() {
        return _methodBuilder.isFinished();
    }

    public boolean isTypeCreated() {
        return _methodBuilder.isTypeCreated();
    }

    public MethodBuilder getMethodBuilder() {
        return _methodBuilder;
    }

    public CodeGenerator getCodeGenerator() {
        if (!returnCodeGenerator) {
            throw Error.noCodeGeneratorForDefaultConstructor();
        }
        return _methodBuilder.getCodeGenerator();
    }

    @Override
    public Constructor getRawConstructor() {
        verifyTypeCreated();
        return null;
    }

    @Override
    public StringBuilder appendErasedSignature(final StringBuilder sb) {
        final TypeList parameterTypes = getParameterTypes();

        StringBuilder s = sb;
        s.append('(');

        for (int i = 0, n = parameterTypes.size(); i < n; ++i) {
            s = parameterTypes.get(i).getErasedType().appendErasedSignature(s);
        }

        s.append(')');
        s = PrimitiveTypes.Void.appendErasedSignature(s);

        return s;
    }

    @Override
    public StringBuilder appendSimpleDescription(final StringBuilder sb) {
        for (final javax.lang.model.element.Modifier modifier : Flags.asModifierSet(getModifiers())) {
            sb.append(modifier.toString());
            sb.append(' ');
        }

        StringBuilder s = PrimitiveTypes.Void.appendBriefDescription(sb);

        s.append(' ');
        s.append(getName());
        s.append('(');

        final ParameterBuilder[] parameters = _methodBuilder.parameterBuilders;

        for (int i = 0, n = parameters.length; i < n; ++i) {
            final ParameterBuilder p = parameters[i];
            if (i != 0) {
                s.append(", ");
            }
            s = p.getParameterType().appendSimpleDescription(s);
        }

        s.append(')');

        final TypeList thrownTypes = getThrownTypes();

        if (!thrownTypes.isEmpty()) {
            s.append(" throws ");

            for (int i = 0, n = thrownTypes.size(); i < n; ++i) {
                final Type t = thrownTypes.get(i);
                if (i != 0) {
                    s.append(", ");
                }
                s = t.appendSimpleDescription(s);
            }
        }

        return s;
    }

    @Override
    public TypeBuilder getDeclaringType() {
        return _methodBuilder.getDeclaringType();
    }

    @Override
    public int getModifiers() {
        return _methodBuilder.getModifiers();
    }

    @Override
    public SignatureType getSignatureType() {
        return _methodBuilder.getSignatureType();
    }

    @Override
    public ParameterList getParameters() {
        return isTypeCreated() ? generatedConstructor.getParameters() : _methodBuilder.createParameters();
    }

    public TypeList getParameterTypes() {
        return _methodBuilder.getParameterTypes();
    }

    public void setParameterTypes(final TypeList parameterTypes) {
        _methodBuilder.setSignature(null, parameterTypes);
        invalidateCaches();
    }

    public List getDefinedParameters() {
        return _methodBuilder.getDefinedParameters();
    }

    public void defineParameter(final int position, final String name) {
        _methodBuilder.defineParameter(position, name);
    }

    @Override
    public Type getReflectedType() {
        return _methodBuilder.getReflectedType();
    }

    @Override
    public  T getAnnotation(final Class annotationClass) {
        return _methodBuilder.getAnnotation(annotationClass);
    }

    @NotNull
    @Override
    public Annotation[] getAnnotations() {
        return _methodBuilder.getAnnotations();
    }

    @NotNull
    @Override
    public Annotation[] getDeclaredAnnotations() {
        return _methodBuilder.getDeclaredAnnotations();
    }

    @Override
    public boolean isAnnotationPresent(final Class annotationClass) {
        return _methodBuilder.isAnnotationPresent(annotationClass);
    }

    public void addCustomAnnotation(final AnnotationBuilder annotation) {
        _methodBuilder.addCustomAnnotation(annotation);
    }

    public ReadOnlyList> getCustomAnnotations() {
        return _methodBuilder.getCustomAnnotations();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy