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

org.glowroot.weaving.AnalyzedClass Maven / Gradle / Ivy

There is a newer version: 0.8.4
Show newest version
package org.glowroot.weaving;

import org.glowroot.shaded.google.common.base.MoreObjects;
import org.glowroot.shaded.google.common.base.Objects;
import org.glowroot.shaded.google.common.base.Preconditions;
import org.glowroot.shaded.google.common.collect.ImmutableList;
import org.glowroot.shaded.google.common.collect.Lists;
import java.util.Collection;
import javax.annotation.Generated;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;

/**
 * Immutable implementation of {@link AnalyzedClassBase}.
 * 

* Use builder to create immutable instances: * {@code AnalyzedClass.builder()}. */ @SuppressWarnings("all") @ParametersAreNonnullByDefault @Generated({"Immutables.generator", "AnalyzedClassBase"}) @Immutable final class AnalyzedClass extends AnalyzedClassBase { private final int modifiers; private final String name; private final @Nullable String superName; private final ImmutableList interfaceNames; private final ImmutableList analyzedMethods; private final ImmutableList shimTypes; private final ImmutableList mixinTypes; private AnalyzedClass(AnalyzedClass.Builder builder) { this.modifiers = builder.modifiers; this.name = builder.name; this.superName = builder.superName; this.interfaceNames = builder.interfaceNamesBuilder.build(); this.analyzedMethods = builder.analyzedMethodsBuilder.build(); this.shimTypes = builder.shimTypesBuilder.build(); this.mixinTypes = builder.mixinTypesBuilder.build(); } private AnalyzedClass( AnalyzedClass original, int modifiers, String name, @Nullable String superName, ImmutableList interfaceNames, ImmutableList analyzedMethods, ImmutableList shimTypes, ImmutableList mixinTypes) { this.modifiers = modifiers; this.name = name; this.superName = superName; this.interfaceNames = interfaceNames; this.analyzedMethods = analyzedMethods; this.shimTypes = shimTypes; this.mixinTypes = mixinTypes; } /** * {@inheritDoc} * @return value of {@code modifiers} attribute */ @Override public int modifiers() { return modifiers; } /** * {@inheritDoc} * @return value of {@code name} attribute */ @Override public String name() { return name; } /** * {@inheritDoc} * @return value of {@code superName} attribute */ @Nullable @Override public String superName() { return superName; } /** * {@inheritDoc} * @return value of {@code interfaceNames} attribute */ @Override public ImmutableList interfaceNames() { return interfaceNames; } /** * {@inheritDoc} * @return value of {@code analyzedMethods} attribute */ @Override public ImmutableList analyzedMethods() { return analyzedMethods; } /** * {@inheritDoc} * @return value of {@code shimTypes} attribute */ @Override public ImmutableList shimTypes() { return shimTypes; } /** * {@inheritDoc} * @return value of {@code mixinTypes} attribute */ @Override public ImmutableList mixinTypes() { return mixinTypes; } /** * Copy current immutable object by setting value for {@link AnalyzedClassBase#modifiers() modifiers}. * Value equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for modifiers * @return modified copy of the {@code this} object */ public final AnalyzedClass withModifiers(int value) { if (this.modifiers == value) { return this; } int newValue = value; return new AnalyzedClass( this, newValue, this.name, this.superName, this.interfaceNames, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object by setting value for {@link AnalyzedClassBase#name() name}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for name * @return modified copy of the {@code this} object */ public final AnalyzedClass withName(String value) { if (this.name == value) { return this; } String newValue = Preconditions.checkNotNull(value); return new AnalyzedClass( this, this.modifiers, newValue, this.superName, this.interfaceNames, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object by setting value for {@link AnalyzedClassBase#superName() superName}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value new value for superName, can be {@code null} * @return modified copy of the {@code this} object */ public final AnalyzedClass withSuperName(@Nullable String value) { if (this.superName == value) { return this; } @Nullable String newValue = value; return new AnalyzedClass( this, this.modifiers, this.name, newValue, this.interfaceNames, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClassBase#interfaceNames() interfaceNames}. * @param elements elements to set * @return modified copy of {@code this} object */ public final AnalyzedClass withInterfaceNames(String... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new AnalyzedClass( this, this.modifiers, this.name, this.superName, newValue, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClassBase#interfaceNames() interfaceNames}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements iterable of interfaceNames elements to set * @return modified copy of {@code this} object */ public final AnalyzedClass withInterfaceNames(Iterable elements) { if (this.interfaceNames == elements) { return this; } ImmutableList newValue = ImmutableList.copyOf(elements); return new AnalyzedClass( this, this.modifiers, this.name, this.superName, newValue, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClassBase#analyzedMethods() analyzedMethods}. * @param elements elements to set * @return modified copy of {@code this} object */ public final AnalyzedClass withAnalyzedMethods(AnalyzedMethod... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new AnalyzedClass( this, this.modifiers, this.name, this.superName, this.interfaceNames, newValue, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClassBase#analyzedMethods() analyzedMethods}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements iterable of analyzedMethods elements to set * @return modified copy of {@code this} object */ public final AnalyzedClass withAnalyzedMethods(Iterable elements) { if (this.analyzedMethods == elements) { return this; } ImmutableList newValue = ImmutableList.copyOf(elements); return new AnalyzedClass( this, this.modifiers, this.name, this.superName, this.interfaceNames, newValue, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClassBase#shimTypes() shimTypes}. * @param elements elements to set * @return modified copy of {@code this} object */ public final AnalyzedClass withShimTypes(ShimType... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new AnalyzedClass( this, this.modifiers, this.name, this.superName, this.interfaceNames, this.analyzedMethods, newValue, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClassBase#shimTypes() shimTypes}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements iterable of shimTypes elements to set * @return modified copy of {@code this} object */ public final AnalyzedClass withShimTypes(Iterable elements) { if (this.shimTypes == elements) { return this; } ImmutableList newValue = ImmutableList.copyOf(elements); return new AnalyzedClass( this, this.modifiers, this.name, this.superName, this.interfaceNames, this.analyzedMethods, newValue, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClassBase#mixinTypes() mixinTypes}. * @param elements elements to set * @return modified copy of {@code this} object */ public final AnalyzedClass withMixinTypes(MixinType... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new AnalyzedClass( this, this.modifiers, this.name, this.superName, this.interfaceNames, this.analyzedMethods, this.shimTypes, newValue); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClassBase#mixinTypes() mixinTypes}. * Shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param elements iterable of mixinTypes elements to set * @return modified copy of {@code this} object */ public final AnalyzedClass withMixinTypes(Iterable elements) { if (this.mixinTypes == elements) { return this; } ImmutableList newValue = ImmutableList.copyOf(elements); return new AnalyzedClass( this, this.modifiers, this.name, this.superName, this.interfaceNames, this.analyzedMethods, this.shimTypes, newValue); } /** * This instance is equal to instances of {@code AnalyzedClass} with equal attribute values. * @return {@code true} if {@code this} is equal to {@code another} instance */ @Override public boolean equals(@Nullable Object another) { return this == another || (another instanceof AnalyzedClass && equalTo((AnalyzedClass) another)); } private boolean equalTo(AnalyzedClass another) { return modifiers == another.modifiers && name.equals(another.name) && Objects.equal(superName, another.superName) && interfaceNames.equals(another.interfaceNames) && analyzedMethods.equals(another.analyzedMethods) && shimTypes.equals(another.shimTypes) && mixinTypes.equals(another.mixinTypes); } /** * Computes hash code from attributes: {@code modifiers}, {@code name}, {@code superName}, {@code interfaceNames}, {@code analyzedMethods}, {@code shimTypes}, {@code mixinTypes}. * @return hashCode value */ @Override public int hashCode() { int h = 31; h = h * 17 + modifiers; h = h * 17 + name.hashCode(); h = h * 17 + Objects.hashCode(superName); h = h * 17 + interfaceNames.hashCode(); h = h * 17 + analyzedMethods.hashCode(); h = h * 17 + shimTypes.hashCode(); h = h * 17 + mixinTypes.hashCode(); return h; } /** * Prints immutable value {@code AnalyzedClass{...}} with attribute values, * excluding any non-generated and auxiliary attributes. * @return string representation of value */ @Override public String toString() { return MoreObjects.toStringHelper("AnalyzedClass") .add("modifiers", modifiers) .add("name", name) .add("superName", superName) .add("interfaceNames", interfaceNames) .add("analyzedMethods", analyzedMethods) .add("shimTypes", shimTypes) .add("mixinTypes", mixinTypes) .toString(); } /** * Creates immutable copy of {@link AnalyzedClassBase}. * Uses accessors to get values to initialize immutable instance. * If an instance is already immutable, it is returned as is. * @return copied immutable AnalyzedClass instance */ static AnalyzedClass copyOf(AnalyzedClassBase instance) { if (instance instanceof AnalyzedClass) { return (AnalyzedClass) instance; } return AnalyzedClass.builder() .from(instance) .build(); } /** * Creates builder for {@link org.glowroot.weaving.AnalyzedClass}. * @return new AnalyzedClass builder */ static AnalyzedClass.Builder builder() { return new AnalyzedClass.Builder(); } /** * Builds instances of {@link org.glowroot.weaving.AnalyzedClass}. * Initialized attributes and then invoke {@link #build()} method to create * immutable instance. *

Builder is not thread safe and generally should not be stored in field or collection, * but used immediately to create instances. */ @NotThreadSafe static final class Builder { private static final long INITIALIZED_BITSET_ALL = 0x3; private static final long INITIALIZED_BIT_MODIFIERS = 0x1L; private static final long INITIALIZED_BIT_NAME = 0x2L; private long initializedBitset; private int modifiers; private @Nullable String name; private @Nullable String superName; private ImmutableList.Builder interfaceNamesBuilder = ImmutableList.builder(); private ImmutableList.Builder analyzedMethodsBuilder = ImmutableList.builder(); private ImmutableList.Builder shimTypesBuilder = ImmutableList.builder(); private ImmutableList.Builder mixinTypesBuilder = ImmutableList.builder(); private Builder() {} /** * Adjust builder with values from provided {@link AnalyzedClassBase} instance. * Regular attribute values will be overridden, i.e. replaced with ones of an instance. * Instance's absent optional values will not be copied (will not override current). * Collection elements and entries will be added, not replaced. * @param instance instance to copy values from * @return {@code this} builder for chained invocation */ public final Builder from(AnalyzedClassBase instance) { Preconditions.checkNotNull(instance); modifiers(instance.modifiers()); name(instance.name()); @Nullable String superNameValue = instance.superName(); if (superNameValue != null) { superName(superNameValue); } addAllInterfaceNames(instance.interfaceNames()); addAllAnalyzedMethods(instance.analyzedMethods()); addAllShimTypes(instance.shimTypes()); addAllMixinTypes(instance.mixinTypes()); return this; } /** * Initializes value for {@link AnalyzedClassBase#modifiers() modifiers}. * @param modifiers value for modifiers * @return {@code this} builder for chained invocation */ public final Builder modifiers(int modifiers) { this.modifiers = modifiers; initializedBitset |= INITIALIZED_BIT_MODIFIERS; return this; } /** * Initializes value for {@link AnalyzedClassBase#name() name}. * @param name value for name * @return {@code this} builder for chained invocation */ public final Builder name(String name) { this.name = Preconditions.checkNotNull(name); initializedBitset |= INITIALIZED_BIT_NAME; return this; } /** * Initializes value for {@link AnalyzedClassBase#superName() superName}. * @param superName value for superName, can be {@code null} * @return {@code this} builder for chained invocation */ public final Builder superName(@Nullable String superName) { this.superName = superName; return this; } /** * Adds one element to {@link AnalyzedClassBase#interfaceNames() interfaceNames} list. * @param element interfaceNames element * @return {@code this} builder for chained invocation */ public final Builder addInterfaceNames(String element) { interfaceNamesBuilder.add(element); return this; } /** * Adds elements to {@link AnalyzedClassBase#interfaceNames() interfaceNames} list. * @param elements array of interfaceNames elements * @return {@code this} builder for chained invocation */ public final Builder addInterfaceNames(String... elements) { interfaceNamesBuilder.add(elements); return this; } /** * Sets or replaces all elements for {@link AnalyzedClassBase#interfaceNames() interfaceNames} list. * @param elements iterable of interfaceNames elements * @return {@code this} builder for chained invocation */ public final Builder interfaceNames(Iterable elements) { interfaceNamesBuilder = ImmutableList.builder(); return addAllInterfaceNames(elements); } /** * Adds elements to {@link AnalyzedClassBase#interfaceNames() interfaceNames} list. * @param elements iterable of interfaceNames elements * @return {@code this} builder for chained invocation */ public final Builder addAllInterfaceNames(Iterable elements) { interfaceNamesBuilder.addAll(elements); return this; } /** * Adds one element to {@link AnalyzedClassBase#analyzedMethods() analyzedMethods} list. * @param element analyzedMethods element * @return {@code this} builder for chained invocation */ public final Builder addAnalyzedMethods(AnalyzedMethod element) { analyzedMethodsBuilder.add(element); return this; } /** * Adds elements to {@link AnalyzedClassBase#analyzedMethods() analyzedMethods} list. * @param elements array of analyzedMethods elements * @return {@code this} builder for chained invocation */ public final Builder addAnalyzedMethods(AnalyzedMethod... elements) { analyzedMethodsBuilder.add(elements); return this; } /** * Sets or replaces all elements for {@link AnalyzedClassBase#analyzedMethods() analyzedMethods} list. * @param elements iterable of analyzedMethods elements * @return {@code this} builder for chained invocation */ public final Builder analyzedMethods(Iterable elements) { analyzedMethodsBuilder = ImmutableList.builder(); return addAllAnalyzedMethods(elements); } /** * Adds elements to {@link AnalyzedClassBase#analyzedMethods() analyzedMethods} list. * @param elements iterable of analyzedMethods elements * @return {@code this} builder for chained invocation */ public final Builder addAllAnalyzedMethods(Iterable elements) { analyzedMethodsBuilder.addAll(elements); return this; } /** * Adds one element to {@link AnalyzedClassBase#shimTypes() shimTypes} list. * @param element shimTypes element * @return {@code this} builder for chained invocation */ public final Builder addShimTypes(ShimType element) { shimTypesBuilder.add(element); return this; } /** * Adds elements to {@link AnalyzedClassBase#shimTypes() shimTypes} list. * @param elements array of shimTypes elements * @return {@code this} builder for chained invocation */ public final Builder addShimTypes(ShimType... elements) { shimTypesBuilder.add(elements); return this; } /** * Sets or replaces all elements for {@link AnalyzedClassBase#shimTypes() shimTypes} list. * @param elements iterable of shimTypes elements * @return {@code this} builder for chained invocation */ public final Builder shimTypes(Iterable elements) { shimTypesBuilder = ImmutableList.builder(); return addAllShimTypes(elements); } /** * Adds elements to {@link AnalyzedClassBase#shimTypes() shimTypes} list. * @param elements iterable of shimTypes elements * @return {@code this} builder for chained invocation */ public final Builder addAllShimTypes(Iterable elements) { shimTypesBuilder.addAll(elements); return this; } /** * Adds one element to {@link AnalyzedClassBase#mixinTypes() mixinTypes} list. * @param element mixinTypes element * @return {@code this} builder for chained invocation */ public final Builder addMixinTypes(MixinType element) { mixinTypesBuilder.add(element); return this; } /** * Adds elements to {@link AnalyzedClassBase#mixinTypes() mixinTypes} list. * @param elements array of mixinTypes elements * @return {@code this} builder for chained invocation */ public final Builder addMixinTypes(MixinType... elements) { mixinTypesBuilder.add(elements); return this; } /** * Sets or replaces all elements for {@link AnalyzedClassBase#mixinTypes() mixinTypes} list. * @param elements iterable of mixinTypes elements * @return {@code this} builder for chained invocation */ public final Builder mixinTypes(Iterable elements) { mixinTypesBuilder = ImmutableList.builder(); return addAllMixinTypes(elements); } /** * Adds elements to {@link AnalyzedClassBase#mixinTypes() mixinTypes} list. * @param elements iterable of mixinTypes elements * @return {@code this} builder for chained invocation */ public final Builder addAllMixinTypes(Iterable elements) { mixinTypesBuilder.addAll(elements); return this; } /** * Builds new {@link org.glowroot.weaving.AnalyzedClass}. * @return immutable instance of AnalyzedClass */ public org.glowroot.weaving.AnalyzedClass build() { checkRequiredAttributes(); return new AnalyzedClass(this); } private boolean modifiersIsSet() { return (initializedBitset & INITIALIZED_BIT_MODIFIERS) != 0; } private boolean nameIsSet() { return (initializedBitset & INITIALIZED_BIT_NAME) != 0; } private void checkRequiredAttributes() { if (initializedBitset != INITIALIZED_BITSET_ALL) { throw new IllegalStateException(formatRequiredAttributesMessage()); } } private String formatRequiredAttributesMessage() { Collection attributes = Lists.newArrayList(); if (!modifiersIsSet()) { attributes.add("modifiers"); } if (!nameIsSet()) { attributes.add("name"); } return "Cannot build AnalyzedClass, some of required attributes are not set " + attributes; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy