
org.glowroot.agent.impl.ImmutablePendingTransaction Maven / Gradle / Ivy
package org.glowroot.agent.impl;
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.Preconditions;
import org.glowroot.agent.shaded.google.common.collect.Lists;
import org.glowroot.agent.shaded.google.common.primitives.Longs;
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;
import org.glowroot.agent.model.Transaction;
/**
* Immutable implementation of {@link Aggregator.PendingTransaction}.
*
* Use builder to create immutable instances:
* {@code ImmutablePendingTransaction.builder()}.
* Use static factory method to create immutable instances:
* {@code ImmutablePendingTransaction.of()}.
*/
@SuppressWarnings("all")
@ParametersAreNonnullByDefault
@Generated({"Immutables.generator", "Aggregator.PendingTransaction"})
@Immutable
final class ImmutablePendingTransaction
implements Aggregator.PendingTransaction {
private final long captureTime;
private final Transaction transaction;
private ImmutablePendingTransaction(long captureTime, Transaction transaction) {
this.captureTime = captureTime;
this.transaction = Preconditions.checkNotNull(transaction);
}
private ImmutablePendingTransaction(
ImmutablePendingTransaction original,
long captureTime,
Transaction transaction) {
this.captureTime = captureTime;
this.transaction = transaction;
}
/**
* @return value of {@code captureTime} attribute
*/
@JsonProperty
@Override
public long captureTime() {
return captureTime;
}
/**
* @return value of {@code transaction} attribute
*/
@JsonProperty
@Override
public Transaction transaction() {
return transaction;
}
/**
* Copy current immutable object by setting value for {@link Aggregator.PendingTransaction#captureTime() captureTime}.
* Value equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for captureTime
* @return modified copy of the {@code this} object
*/
public final ImmutablePendingTransaction withCaptureTime(long value) {
if (this.captureTime == value) return this;
long newValue = value;
return new ImmutablePendingTransaction(this, newValue, this.transaction);
}
/**
* Copy current immutable object by setting value for {@link Aggregator.PendingTransaction#transaction() transaction}.
* Shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for transaction
* @return modified copy of the {@code this} object
*/
public final ImmutablePendingTransaction withTransaction(Transaction value) {
if (this.transaction == value) return this;
Transaction newValue = Preconditions.checkNotNull(value);
return new ImmutablePendingTransaction(this, this.captureTime, newValue);
}
/**
* This instance is equal to instances of {@code ImmutablePendingTransaction} 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 ImmutablePendingTransaction
&& equalTo((ImmutablePendingTransaction) another);
}
private boolean equalTo(ImmutablePendingTransaction another) {
return captureTime == another.captureTime
&& transaction.equals(another.transaction);
}
/**
* Computes hash code from attributes: {@code captureTime}, {@code transaction}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 31;
h = h * 17 + Longs.hashCode(captureTime);
h = h * 17 + transaction.hashCode();
return h;
}
/**
* Prints immutable value {@code PendingTransaction...} with attribute values,
* excluding any non-generated and auxiliary attributes.
* @return string representation of value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("PendingTransaction")
.add("captureTime", captureTime)
.add("transaction", transaction)
.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 Long captureTime;
@JsonProperty
@Nullable Transaction transaction;
}
/**
* @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 ImmutablePendingTransaction fromJson(Json json) {
ImmutablePendingTransaction.Builder builder = ImmutablePendingTransaction.builder();
if (json.captureTime != null) {
builder.captureTime(json.captureTime);
}
if (json.transaction != null) {
builder.transaction(json.transaction);
}
return builder.build();
}
/**
* Construct new immutable {@code PendingTransaction} instance.
* @param captureTime value for {@code captureTime}
* @param transaction value for {@code transaction}
* @return immutable PendingTransaction instance
*/
public static ImmutablePendingTransaction of(long captureTime, Transaction transaction) {
return new ImmutablePendingTransaction(captureTime, transaction);
}
/**
* Creates immutable copy of {@link Aggregator.PendingTransaction}.
* 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 PendingTransaction instance
*/
static ImmutablePendingTransaction copyOf(Aggregator.PendingTransaction instance) {
if (instance instanceof ImmutablePendingTransaction) {
return (ImmutablePendingTransaction) instance;
}
return ImmutablePendingTransaction.builder()
.copyFrom(instance)
.build();
}
/**
* Creates builder for {@link org.glowroot.agent.impl.ImmutablePendingTransaction ImmutablePendingTransaction}.
* @return new ImmutablePendingTransaction builder
*/
static ImmutablePendingTransaction.Builder builder() {
return new ImmutablePendingTransaction.Builder();
}
/**
* Builds instances of {@link org.glowroot.agent.impl.ImmutablePendingTransaction ImmutablePendingTransaction}.
* 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_CAPTURE_TIME = 0x1L;
private static final long INIT_BIT_TRANSACTION = 0x2L;
private long initBits = 0x3;
private long captureTime;
private @Nullable Transaction transaction;
private Builder() {}
/**
* Fill builder with attribute values from provided {@link Aggregator.PendingTransaction} instance.
* Regular attribute values will be replaced with ones of an instance.
* Instance's absent optional values will not replace present values.
* @param instance instance to copy values from
* @return {@code this} builder for chained invocation
*/
public final Builder copyFrom(Aggregator.PendingTransaction instance) {
Preconditions.checkNotNull(instance);
captureTime(instance.captureTime());
transaction(instance.transaction());
return this;
}
/**
* Initializes value for {@link Aggregator.PendingTransaction#captureTime() captureTime}.
* @param captureTime value for captureTime
* @return {@code this} builder for chained invocation
*/
public final Builder captureTime(long captureTime) {
this.captureTime = captureTime;
initBits &= ~INIT_BIT_CAPTURE_TIME;
return this;
}
/**
* Initializes value for {@link Aggregator.PendingTransaction#transaction() transaction}.
* @param transaction value for transaction
* @return {@code this} builder for chained invocation
*/
public final Builder transaction(Transaction transaction) {
this.transaction = Preconditions.checkNotNull(transaction);
initBits &= ~INIT_BIT_TRANSACTION;
return this;
}
/**
* Builds new {@link org.glowroot.agent.impl.ImmutablePendingTransaction ImmutablePendingTransaction}.
* @return immutable instance of PendingTransaction
* @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing
*/
public ImmutablePendingTransaction build()
throws IllegalStateException {
checkRequiredAttributes();
return new ImmutablePendingTransaction(null, captureTime, transaction);
}
private boolean captureTimeIsSet() {
return (initBits & INIT_BIT_CAPTURE_TIME) == 0;
}
private boolean transactionIsSet() {
return (initBits & INIT_BIT_TRANSACTION) == 0;
}
private void checkRequiredAttributes() throws IllegalStateException {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
}
private String formatRequiredAttributesMessage() {
List attributes = Lists.newArrayList();
if (!captureTimeIsSet()) attributes.add("captureTime");
if (!transactionIsSet()) attributes.add("transaction");
return "Cannot build PendingTransaction, some of required attributes are not set " + attributes;
}
}
}