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

org.glowroot.agent.weaving.ImmutableAnalyzedClass Maven / Gradle / Ivy

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

import org.glowroot.agent.shaded.fasterxml.jackson.annotation.JsonCreator;
import org.glowroot.agent.shaded.fasterxml.jackson.annotation.JsonProperty;
import org.glowroot.agent.shaded.google.common.base.MoreObjects;
import org.glowroot.agent.shaded.google.common.base.Objects;
import org.glowroot.agent.shaded.google.common.base.Preconditions;
import org.glowroot.agent.shaded.google.common.collect.ImmutableList;
import org.glowroot.agent.shaded.google.common.collect.Lists;
import java.util.List;
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 AnalyzedClass}.
 * 

* Use builder to create immutable instances: * {@code ImmutableAnalyzedClass.builder()}. */ @SuppressWarnings("all") @ParametersAreNonnullByDefault @Generated({"Immutables.generator", "AnalyzedClass"}) @Immutable final class ImmutableAnalyzedClass extends AnalyzedClass { 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 ImmutableAnalyzedClass( 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; } /** * @return value of {@code modifiers} attribute */ @JsonProperty @Override int modifiers() { return modifiers; } /** * @return value of {@code name} attribute */ @JsonProperty @Override String name() { return name; } /** * @return value of {@code superName} attribute */ @JsonProperty @Override @Nullable String superName() { return superName; } /** * @return value of {@code interfaceNames} attribute */ @JsonProperty @Override ImmutableList interfaceNames() { return interfaceNames; } /** * @return value of {@code analyzedMethods} attribute */ @JsonProperty @Override ImmutableList analyzedMethods() { return analyzedMethods; } /** * @return value of {@code shimTypes} attribute */ @JsonProperty @Override ImmutableList shimTypes() { return shimTypes; } /** * @return value of {@code mixinTypes} attribute */ @JsonProperty @Override ImmutableList mixinTypes() { return mixinTypes; } /** * Copy current immutable object by setting value for {@link AnalyzedClass#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 ImmutableAnalyzedClass withModifiers(int value) { if (this.modifiers == value) return this; int newValue = value; return new ImmutableAnalyzedClass( newValue, this.name, this.superName, this.interfaceNames, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object by setting value for {@link AnalyzedClass#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 ImmutableAnalyzedClass withName(String value) { if (this.name == value) return this; String newValue = Preconditions.checkNotNull(value); return new ImmutableAnalyzedClass( this.modifiers, newValue, this.superName, this.interfaceNames, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object by setting value for {@link AnalyzedClass#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 ImmutableAnalyzedClass withSuperName(@Nullable String value) { if (this.superName == value) return this; @Nullable String newValue = value; return new ImmutableAnalyzedClass( this.modifiers, this.name, newValue, this.interfaceNames, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClass#interfaceNames() interfaceNames}. * @param elements elements to set * @return modified copy of {@code this} object */ public final ImmutableAnalyzedClass withInterfaceNames(String... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableAnalyzedClass( this.modifiers, this.name, this.superName, newValue, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClass#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 ImmutableAnalyzedClass withInterfaceNames(Iterable elements) { if (this.interfaceNames == elements) return this; ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableAnalyzedClass( this.modifiers, this.name, this.superName, newValue, this.analyzedMethods, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClass#analyzedMethods() analyzedMethods}. * @param elements elements to set * @return modified copy of {@code this} object */ public final ImmutableAnalyzedClass withAnalyzedMethods(AnalyzedMethod... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableAnalyzedClass( this.modifiers, this.name, this.superName, this.interfaceNames, newValue, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClass#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 ImmutableAnalyzedClass withAnalyzedMethods(Iterable elements) { if (this.analyzedMethods == elements) return this; ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableAnalyzedClass( this.modifiers, this.name, this.superName, this.interfaceNames, newValue, this.shimTypes, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClass#shimTypes() shimTypes}. * @param elements elements to set * @return modified copy of {@code this} object */ public final ImmutableAnalyzedClass withShimTypes(ShimType... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableAnalyzedClass( this.modifiers, this.name, this.superName, this.interfaceNames, this.analyzedMethods, newValue, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClass#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 ImmutableAnalyzedClass withShimTypes(Iterable elements) { if (this.shimTypes == elements) return this; ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableAnalyzedClass( this.modifiers, this.name, this.superName, this.interfaceNames, this.analyzedMethods, newValue, this.mixinTypes); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClass#mixinTypes() mixinTypes}. * @param elements elements to set * @return modified copy of {@code this} object */ public final ImmutableAnalyzedClass withMixinTypes(MixinType... elements) { ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableAnalyzedClass( this.modifiers, this.name, this.superName, this.interfaceNames, this.analyzedMethods, this.shimTypes, newValue); } /** * Copy current immutable object with elements that replace content of {@link AnalyzedClass#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 ImmutableAnalyzedClass withMixinTypes(Iterable elements) { if (this.mixinTypes == elements) return this; ImmutableList newValue = ImmutableList.copyOf(elements); return new ImmutableAnalyzedClass( this.modifiers, this.name, this.superName, this.interfaceNames, this.analyzedMethods, this.shimTypes, newValue); } /** * This instance is equal to instances of {@code ImmutableAnalyzedClass} with equal attribute values. * @return {@code true} if {@code this} is equal to {@code another} instance */ @Override public boolean equals(@Nullable Object another) { if (this == another) return true; return another instanceof ImmutableAnalyzedClass && equalTo((ImmutableAnalyzedClass) another); } private boolean equalTo(ImmutableAnalyzedClass 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(); } /** * Simple representation of this value type suitable Jackson binding * @deprecated Do not use this type directly, it exists only for Jackson-binding infrastructure */ @Deprecated static final class Json { @JsonProperty @Nullable Integer modifiers; @JsonProperty @Nullable String name; @JsonProperty @Nullable String superName; @JsonProperty @Nullable ImmutableList interfaceNames; @JsonProperty @Nullable ImmutableList analyzedMethods; @JsonProperty @Nullable ImmutableList shimTypes; @JsonProperty @Nullable ImmutableList mixinTypes; } /** * @param json JSON-bindable data structure * @return immutable value type * @deprecated Do not use this method directly, it exists only for Jackson-binding infrastructure */ @Deprecated @JsonCreator static ImmutableAnalyzedClass fromJson(Json json) { ImmutableAnalyzedClass.Builder builder = ImmutableAnalyzedClass.builder(); if (json.modifiers != null) { builder.modifiers(json.modifiers); } if (json.name != null) { builder.name(json.name); } if (json.superName != null) { builder.superName(json.superName); } if (json.interfaceNames != null) { builder.addAllInterfaceNames(json.interfaceNames); } if (json.analyzedMethods != null) { builder.addAllAnalyzedMethods(json.analyzedMethods); } if (json.shimTypes != null) { builder.addAllShimTypes(json.shimTypes); } if (json.mixinTypes != null) { builder.addAllMixinTypes(json.mixinTypes); } return builder.build(); } /** * Creates immutable copy of {@link AnalyzedClass}. * Uses accessors to get values to initialize immutable instance. * If an instance is already immutable, it is returned as is. * @param instance instance to copy * @return copied immutable AnalyzedClass instance */ static ImmutableAnalyzedClass copyOf(AnalyzedClass instance) { if (instance instanceof ImmutableAnalyzedClass) { return (ImmutableAnalyzedClass) instance; } return ImmutableAnalyzedClass.builder() .copyFrom(instance) .build(); } /** * Creates builder for {@link org.glowroot.agent.weaving.ImmutableAnalyzedClass ImmutableAnalyzedClass}. * @return new ImmutableAnalyzedClass builder */ static ImmutableAnalyzedClass.Builder builder() { return new ImmutableAnalyzedClass.Builder(); } /** * Builds instances of {@link org.glowroot.agent.weaving.ImmutableAnalyzedClass ImmutableAnalyzedClass}. * Initialize attributes and then invoke {@link #build()} method to create * immutable instance. *

{@code 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 INIT_BIT_MODIFIERS = 0x1L; private static final long INIT_BIT_NAME = 0x2L; private long initBits = 0x3; 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() {} /** * Fill builder with attribute values from provided {@link AnalyzedClass} instance. * Regular attribute values will be replaced with ones of an instance. * Instance's absent optional values will not replace present values. * 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 copyFrom(AnalyzedClass 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 AnalyzedClass#modifiers() modifiers}. * @param modifiers value for modifiers * @return {@code this} builder for chained invocation */ public final Builder modifiers(int modifiers) { this.modifiers = modifiers; initBits &= ~INIT_BIT_MODIFIERS; return this; } /** * Initializes value for {@link AnalyzedClass#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); initBits &= ~INIT_BIT_NAME; return this; } /** * Initializes value for {@link AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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 AnalyzedClass#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.agent.weaving.ImmutableAnalyzedClass ImmutableAnalyzedClass}. * @return immutable instance of AnalyzedClass * @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing */ public ImmutableAnalyzedClass build() throws IllegalStateException { checkRequiredAttributes(); return new ImmutableAnalyzedClass( modifiers, name, superName, interfaceNamesBuilder.build(), analyzedMethodsBuilder.build(), shimTypesBuilder.build(), mixinTypesBuilder.build()); } private boolean modifiersIsSet() { return (initBits & INIT_BIT_MODIFIERS) == 0; } private boolean nameIsSet() { return (initBits & INIT_BIT_NAME) == 0; } private void checkRequiredAttributes() throws IllegalStateException { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } } private String formatRequiredAttributesMessage() { List 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 - 2025 Weber Informatics LLC | Privacy Policy