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

redis.clients.jedis.Transaction Maven / Gradle / Ivy

package redis.clients.jedis;

import java.io.Closeable;
import java.util.ArrayList;
import java.util.List;

import redis.clients.jedis.exceptions.JedisDataException;

/**
 * Transaction is nearly identical to Pipeline, only differences are the multi/discard behaviors
 */
public class Transaction extends MultiKeyPipelineBase implements Closeable {

  protected boolean inTransaction = true;

  protected Transaction() {
    // client will be set later in transaction block
  }

  public Transaction(final Client client) {
    this.client = client;
  }

  @Override
  protected Client getClient(String key) {
    return client;
  }

  @Override
  protected Client getClient(byte[] key) {
    return client;
  }

  public void clear() {
    if (inTransaction) {
      discard();
    }
  }

  public List exec() {
    // Discard QUEUED or ERROR
    client.getMany(getPipelinedResponseLength());
    client.exec();
    inTransaction = false;

    List unformatted = client.getObjectMultiBulkReply();
    if (unformatted == null) {
      return null;
    }
    List formatted = new ArrayList<>();
    for (Object o : unformatted) {
      try {
        formatted.add(generateResponse(o).get());
      } catch (JedisDataException e) {
        formatted.add(e);
      }
    }
    return formatted;
  }

  /**
   * @deprecated This method will be removed in next major release.
   */
  @Deprecated
  public List> execGetResponse() {
    // Discard QUEUED or ERROR
    client.getMany(getPipelinedResponseLength());
    client.exec();
    inTransaction = false;

    List unformatted = client.getObjectMultiBulkReply();
    if (unformatted == null) {
      return null;
    }
    List> response = new ArrayList<>();
    for (Object o : unformatted) {
      response.add(generateResponse(o));
    }
    return response;
  }

  public String discard() {
    client.getMany(getPipelinedResponseLength());
    client.discard();
    inTransaction = false;
    clean();
    return client.getStatusCodeReply();
  }

  public void setClient(Client client) {
    this.client = client;
  }

  @Override
  public void close() {
    clear();
  }

  private static final String WATCH_INSIDE_MULTI_MESSAGE = "WATCH inside MULTI is not allowed";

  /**
   * @param keys
   * @return
   * @throws UnsupportedOperationException
   * @deprecated {@value #WATCH_INSIDE_MULTI_MESSAGE}
   */
  @Override
  @Deprecated
  public Response watch(String... keys) throws UnsupportedOperationException {
    throw new UnsupportedOperationException(WATCH_INSIDE_MULTI_MESSAGE);
  }

  /**
   * @param keys
   * @return
   * @throws UnsupportedOperationException
   * @deprecated {@value #WATCH_INSIDE_MULTI_MESSAGE}
   */
  @Override
  @Deprecated
  public Response watch(byte[]... keys) throws UnsupportedOperationException {
    throw new UnsupportedOperationException(WATCH_INSIDE_MULTI_MESSAGE);
  }
}