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

org.infinispan.persistence.sifs.LogRequest Maven / Gradle / Ivy

package org.infinispan.persistence.sifs;

import java.util.concurrent.CompletableFuture;

import org.infinispan.commons.io.ByteBuffer;
import org.infinispan.persistence.spi.MarshallableEntry;

/**
 * Request to persist entry in log file or request executed by the log appender thread.
 *
 * @author Radim Vansa <[email protected]>
 * @author William Burns <[email protected]>
 */
class LogRequest extends CompletableFuture {

   enum Type {
      STORE,
      DELETE,
      CLEAR_ALL,
      PAUSE,
      RESUME
   }

   private final Type type;
   private final int segment;
   private final Object key;
   private final long expirationTime;
   private final ByteBuffer serializedKey;
   private final ByteBuffer serializedMetadata;
   private final ByteBuffer serializedValue;
   private final ByteBuffer serializedInternalMetadata;
   private final long created;
   private final long lastUsed;
   private volatile int file;
   private volatile int fileOffset;
   private volatile IndexRequest indexRequest;

   private LogRequest(Type type, int segment, Object key, long expirationTime, ByteBuffer serializedKey, ByteBuffer serializedMetadata,
                      ByteBuffer serializedInternalMetadata, ByteBuffer serializedValue, long created, long lastUsed) {
      this.segment = segment;
      this.key = key;
      this.expirationTime = expirationTime;
      this.serializedKey = serializedKey;
      this.serializedMetadata = serializedMetadata;
      this.serializedInternalMetadata = serializedInternalMetadata;
      this.serializedValue = serializedValue;
      this.created = created;
      this.lastUsed = lastUsed;
      this.type = type;
   }

   private LogRequest(Type type) {
      this(type, -1, null, 0, null, null, null, null, -1, -1);
   }

   public static LogRequest storeRequest(int segment, MarshallableEntry entry) {
      return new LogRequest(Type.STORE, segment, entry.getKey(), entry.expiryTime(), entry.getKeyBytes(), entry.getMetadataBytes(),
            entry.getInternalMetadataBytes(), entry.getValueBytes(), entry.created(), entry.lastUsed());
   }

   public static LogRequest deleteRequest(int segment, Object key, ByteBuffer serializedKey) {
      return new LogRequest(Type.DELETE, segment, key, -1, serializedKey, null, null, null, -1, -1);
   }

   public static LogRequest clearRequest() {
      return new LogRequest(Type.CLEAR_ALL);
   }

   public static LogRequest pauseRequest() {
      return new LogRequest(Type.PAUSE);
   }

   public static LogRequest resumeRequest() {
      return new LogRequest(Type.RESUME);
   }

   public int length() {
      return EntryHeader.HEADER_SIZE_11_0 + serializedKey.getLength()
            + (serializedValue != null ? serializedValue.getLength() : 0)
            + EntryMetadata.size(serializedMetadata)
            + (serializedInternalMetadata != null ? serializedInternalMetadata.getLength() : 0);
   }

   public Object getKey() {
      return key;
   }

   public int getSement() {
      return segment;
   }

   public ByteBuffer getSerializedKey() {
      return serializedKey;
   }

   public ByteBuffer getSerializedMetadata() {
      return serializedMetadata;
   }

   public ByteBuffer getSerializedInternalMetadata() {
      return serializedInternalMetadata;
   }

   public ByteBuffer getSerializedValue() {
      return serializedValue;
   }

   public long getCreated() {
      return created;
   }

   public long getLastUsed() {
      return lastUsed;
   }

   public long getExpiration() {
      return expirationTime;
   }

   public boolean isClear() {
      return type == Type.CLEAR_ALL;
   }

   public boolean isPause() {
      return type == Type.PAUSE;
   }

   public boolean isResume() {
      return type == Type.RESUME;
   }

   public void setIndexRequest(IndexRequest indexRequest) {
      this.indexRequest = indexRequest;
   }

   public int getFile() {
      return file;
   }

   public void setFile(int file) {
      this.file = file;
   }

   public int getFileOffset() {
      return fileOffset;
   }

   public void setFileOffset(int fileOffset) {
      this.fileOffset = fileOffset;
   }

   public IndexRequest getIndexRequest() {
      return indexRequest;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy