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

net.spy.memcached.collection.CollectionPipedInsert Maven / Gradle / Ivy

The newest version!
/*
 * arcus-java-client : Arcus Java client
 * Copyright 2010-2014 NAVER Corp.
 * Copyright 2014-2021 JaM2in Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package net.spy.memcached.collection;

import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;

import net.spy.memcached.CachedData;
import net.spy.memcached.KeyUtil;
import net.spy.memcached.transcoders.Transcoder;

public abstract class CollectionPipedInsert extends CollectionObject {

  public static final String PIPE = "pipe";
  public static final int MAX_PIPED_ITEM_COUNT = 500;

  protected String key;
  protected boolean createKeyIfNotExists;
  protected Transcoder tc;
  protected int itemCount;

  protected CollectionAttributes attribute;

  protected int nextOpIndex = 0;

  /**
   * set next index of operation
   * that will be processed after when operation moved by switchover
   */
  public void setNextOpIndex(int i) {
    this.nextOpIndex = i;
  }

  public abstract ByteBuffer getAsciiCommand();

  public abstract ByteBuffer getBinaryCommand();

  /**
   *
   */
  public static class ListPipedInsert extends CollectionPipedInsert {

    private static final String COMMAND = "lop insert";
    private Collection list;
    private int index;

    public ListPipedInsert(String key, int index, Collection list,
                           boolean createKeyIfNotExists, CollectionAttributes attr,
                           Transcoder tc) {
      if (createKeyIfNotExists) {
        CollectionOverflowAction overflowAction = attr.getOverflowAction();
        if (overflowAction != null &&
                !CollectionType.list.isAvailableOverflowAction(overflowAction)) {
          throw new IllegalArgumentException(
              overflowAction + " is unavailable overflow action in " + CollectionType.list + ".");
        }
      }
      this.key = key;
      this.index = index;
      this.list = list;
      this.createKeyIfNotExists = createKeyIfNotExists;
      this.attribute = attr;
      this.tc = tc;
      this.itemCount = list.size();
    }

    public ByteBuffer getAsciiCommand() {
      int capacity = 0;

      // decode values
      List encodedList = new ArrayList(list.size());
      CachedData cd = null;
      for (T each : list) {
        cd = tc.encode(each);
        encodedList.add(cd.getData());
      }

      // estimate the buffer capacity
      for (byte[] each : encodedList) {
        capacity += KeyUtil.getKeyBytes(key).length;
        capacity += each.length;
        capacity += 128;
      }

      // allocate the buffer
      ByteBuffer bb = ByteBuffer.allocate(capacity);

      // create ascii operation string
      int eSize = encodedList.size();
      for (int i = this.nextOpIndex; i < eSize; i++) {
        byte[] each = encodedList.get(i);
        setArguments(bb, COMMAND, key, index, each.length,
            (createKeyIfNotExists) ?
                "create" : "",
            (createKeyIfNotExists) ?
                cd.getFlags() : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getExpireTime() != null) ?
                    attribute.getExpireTime() : CollectionAttributes.DEFAULT_EXPIRETIME : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getMaxCount() != null) ?
                    attribute.getMaxCount() : CollectionAttributes.DEFAULT_MAXCOUNT : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getOverflowAction() != null) ?
                    attribute.getOverflowAction() : "" : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getReadable() != null && !attribute.getReadable()) ?
                    "unreadable" : "" : "",
            (i < eSize - 1) ? PIPE : "");
        bb.put(each);
        bb.put(CRLF);
      }

      // flip the buffer
      ((Buffer) bb).flip();

      return bb;
    }

    public ByteBuffer getBinaryCommand() {
      throw new RuntimeException("not supported in binary protocol yet.");
    }
  }

  /**
   *
   */
  public static class SetPipedInsert extends CollectionPipedInsert {

    private static final String COMMAND = "sop insert";
    private Collection set;

    public SetPipedInsert(String key, Collection set, boolean createKeyIfNotExists,
                          CollectionAttributes attr, Transcoder tc) {
      if (createKeyIfNotExists) {
        CollectionOverflowAction overflowAction = attr.getOverflowAction();
        if (overflowAction != null &&
                !CollectionType.set.isAvailableOverflowAction(overflowAction)) {
          throw new IllegalArgumentException(
              overflowAction + " is unavailable overflow action in " + CollectionType.set + ".");
        }
      }
      this.key = key;
      this.set = set;
      this.createKeyIfNotExists = createKeyIfNotExists;
      this.attribute = attr;
      this.tc = tc;
      this.itemCount = set.size();
    }

    public ByteBuffer getAsciiCommand() {
      int capacity = 0;

      // decode values
      List encodedList = new ArrayList(set.size());
      CachedData cd = null;
      for (T each : set) {
        cd = tc.encode(each);
        encodedList.add(cd.getData());
      }

      // estimate the buffer capacity
      for (byte[] each : encodedList) {
        capacity += KeyUtil.getKeyBytes(key).length;
        capacity += each.length;
        capacity += 128;
      }

      // allocate the buffer
      ByteBuffer bb = ByteBuffer.allocate(capacity);

      // create ascii operation string
      int eSize = encodedList.size();
      for (int i = this.nextOpIndex; i < eSize; i++) {
        byte[] each = encodedList.get(i);

        setArguments(bb, COMMAND, key, each.length,
            (createKeyIfNotExists) ?
                "create" : "",
            (createKeyIfNotExists) ?
                cd.getFlags() : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getExpireTime() != null) ?
                    attribute.getExpireTime() : CollectionAttributes.DEFAULT_EXPIRETIME : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getMaxCount() != null) ?
                    attribute.getMaxCount() : CollectionAttributes.DEFAULT_MAXCOUNT : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getOverflowAction() != null) ?
                    attribute.getOverflowAction() : "" : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getReadable() != null && !attribute.getReadable()) ?
                    "unreadable" : "" : "",
            (i < eSize - 1) ? PIPE : "");
        bb.put(each);
        bb.put(CRLF);
      }
      // flip the buffer
      ((Buffer) bb).flip();

      return bb;
    }

    public ByteBuffer getBinaryCommand() {
      throw new RuntimeException("not supported in binary protocol yet.");
    }
  }

  /**
   *
   */
  public static class BTreePipedInsert extends CollectionPipedInsert {

    private static final String COMMAND = "bop insert";
    private Map map;

    public BTreePipedInsert(String key, Map map, boolean createKeyIfNotExists,
                            CollectionAttributes attr, Transcoder tc) {
      if (createKeyIfNotExists) {
        CollectionOverflowAction overflowAction = attr.getOverflowAction();
        if (overflowAction != null &&
                !CollectionType.btree.isAvailableOverflowAction(overflowAction)) {
          throw new IllegalArgumentException(
              overflowAction + " is unavailable overflow action in " + CollectionType.btree + ".");
        }
      }
      this.key = key;
      this.map = map;
      this.createKeyIfNotExists = createKeyIfNotExists;
      this.attribute = attr;
      this.tc = tc;
      this.itemCount = map.size();
    }

    public ByteBuffer getAsciiCommand() {
      int capacity = 0;

      // decode parameters
      List decodedList = new ArrayList(map.size());
      CachedData cd = null;
      for (T each : map.values()) {
        cd = tc.encode(each);
        decodedList.add(cd.getData());
      }

      // estimate the buffer capacity
      int i = 0;
      for (Long eachBkey : map.keySet()) {
        capacity += KeyUtil.getKeyBytes(key).length;
        capacity += KeyUtil.getKeyBytes(String.valueOf(eachBkey)).length;
        capacity += decodedList.get(i++).length;
        capacity += 128;
      }

      // allocate the buffer
      ByteBuffer bb = ByteBuffer.allocate(capacity);

      // create ascii operation string
      int keySize = map.keySet().size();
      List keyList = new ArrayList(map.keySet());
      for (i = this.nextOpIndex; i < keySize; i++) {
        Long bkey = keyList.get(i);
        byte[] value = decodedList.get(i);

        setArguments(bb, COMMAND, key, bkey, value.length,
            (createKeyIfNotExists) ?
                "create" : "",
            (createKeyIfNotExists) ?
                cd.getFlags() : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getExpireTime() != null) ?
                    attribute.getExpireTime() : CollectionAttributes.DEFAULT_EXPIRETIME : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getMaxCount() != null) ?
                    attribute.getMaxCount() : CollectionAttributes.DEFAULT_MAXCOUNT : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getOverflowAction() != null) ?
                    attribute.getOverflowAction() : "" : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getReadable() != null && !attribute.getReadable()) ?
                    "unreadable" : "" : "",
            (i < keySize - 1) ? PIPE : "");
        bb.put(value);
        bb.put(CRLF);
      }

      // flip the buffer
      ((Buffer) bb).flip();

      return bb;
    }

    public ByteBuffer getBinaryCommand() {
      throw new RuntimeException("not supported in binary protocol yet.");
    }
  }

  /**
   *
   */
  public static class ByteArraysBTreePipedInsert extends
          CollectionPipedInsert {

    private static final String COMMAND = "bop insert";
    private List> elements;

    public ByteArraysBTreePipedInsert(String key, List> elements,
                                      boolean createKeyIfNotExists, CollectionAttributes attr,
                                      Transcoder tc) {
      if (createKeyIfNotExists) {
        CollectionOverflowAction overflowAction = attr.getOverflowAction();
        if (overflowAction != null &&
                !CollectionType.btree.isAvailableOverflowAction(overflowAction)) {
          throw new IllegalArgumentException(
              overflowAction + " is unavailable overflow action in " + CollectionType.btree + ".");
        }
      }
      this.key = key;
      this.elements = elements;
      this.createKeyIfNotExists = createKeyIfNotExists;
      this.attribute = attr;
      this.tc = tc;
      this.itemCount = elements.size();
    }

    public ByteBuffer getAsciiCommand() {
      int capacity = 0;

      // decode parameters
      List decodedList = new ArrayList(elements.size());
      CachedData cd = null;
      for (Element each : elements) {
        cd = tc.encode(each.getValue());
        decodedList.add(cd.getData());
      }

      // estimate the buffer capacity
      int i = 0;
      for (Element each : elements) {
        capacity += KeyUtil.getKeyBytes(key).length;
        capacity += KeyUtil.getKeyBytes((each.isByteArraysBkey() ? each
                .getBkeyByHex() : String.valueOf(each.getLongBkey()))).length;
        capacity += KeyUtil.getKeyBytes(each.getFlagByHex()).length;
        capacity += decodedList.get(i++).length;
        capacity += 128;
      }

      // allocate the buffer
      ByteBuffer bb = ByteBuffer.allocate(capacity);

      // create ascii operation string
      int eSize = elements.size();
      for (i = this.nextOpIndex; i < eSize; i++) {
        Element element = elements.get(i);
        byte[] value = decodedList.get(i);

        setArguments(
                bb,
                COMMAND,
                key,
                (element.isByteArraysBkey() ? element.getBkeyByHex()
                        : String.valueOf(element.getLongBkey())),
                element.getFlagByHex(),
                value.length,
                (createKeyIfNotExists) ? "create" : "",
                (createKeyIfNotExists) ? cd.getFlags() : "",
                (createKeyIfNotExists) ? (attribute != null && attribute
                        .getExpireTime() != null) ? attribute
                        .getExpireTime()
                        : CollectionAttributes.DEFAULT_EXPIRETIME : "",
                (createKeyIfNotExists) ? (attribute != null && attribute
                        .getMaxCount() != null) ? attribute
                        .getMaxCount()
                        : CollectionAttributes.DEFAULT_MAXCOUNT : "",
                (createKeyIfNotExists) ? (attribute != null && attribute
                        .getOverflowAction() != null) ? attribute
                        .getOverflowAction().toString()
                        : "" : "",
                (createKeyIfNotExists) ? (attribute != null && attribute
                        .getReadable() != null && !attribute.getReadable()) ?
                        "unreadable" : "" : "",
                (i < eSize - 1) ? PIPE : "");
        bb.put(value);
        bb.put(CRLF);
      }

      // flip the buffer
      ((Buffer) bb).flip();

      return bb;
    }

    public ByteBuffer getBinaryCommand() {
      throw new RuntimeException("not supported in binary protocol yet.");
    }
  }

  /**
   *
   */
  public static class MapPipedInsert extends CollectionPipedInsert {

    private static final String COMMAND = "mop insert";
    private Map map;

    public MapPipedInsert(String key, Map map,
                          boolean createKeyIfNotExists, CollectionAttributes attr,
                          Transcoder tc) {
      if (createKeyIfNotExists) {
        CollectionOverflowAction overflowAction = attr.getOverflowAction();
        if (overflowAction != null &&
                !CollectionType.map.isAvailableOverflowAction(overflowAction)) {
          throw new IllegalArgumentException(
              overflowAction + " is unavailable overflow action in " + CollectionType.map + ".");
        }
      }
      this.key = key;
      this.map = map;
      this.createKeyIfNotExists = createKeyIfNotExists;
      this.attribute = attr;
      this.tc = tc;
      this.itemCount = map.size();
    }

    public ByteBuffer getAsciiCommand() {
      int capacity = 0;

      // encode values
      List encodedList = new ArrayList(map.size());
      CachedData cd = null;
      for (T each : map.values()) {
        cd = tc.encode(each);
        encodedList.add(cd.getData());
      }

      // estimate the buffer capacity
      int i = 0;
      for (String eachMkey : map.keySet()) {
        capacity += KeyUtil.getKeyBytes(key).length;
        capacity += KeyUtil.getKeyBytes(eachMkey).length;
        capacity += encodedList.get(i++).length;
        capacity += 128;
      }

      // allocate the buffer
      ByteBuffer bb = ByteBuffer.allocate(capacity);

      // create ascii operation string
      int mkeySize = map.keySet().size();
      List keyList = new ArrayList(map.keySet());
      for (i = this.nextOpIndex; i < mkeySize; i++) {
        String mkey = keyList.get(i);
        byte[] value = encodedList.get(i);

        setArguments(bb, COMMAND, key, mkey, value.length,
            (createKeyIfNotExists) ?
                "create" : "",
            (createKeyIfNotExists) ?
                cd.getFlags() : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getExpireTime() != null) ?
                    attribute.getExpireTime() : CollectionAttributes.DEFAULT_EXPIRETIME : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getMaxCount() != null) ?
                    attribute.getMaxCount() : CollectionAttributes.DEFAULT_MAXCOUNT : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getOverflowAction() != null) ?
                    attribute.getOverflowAction() : "" : "",
            (createKeyIfNotExists) ?
                (attribute != null && attribute.getReadable() != null && !attribute.getReadable()) ?
                    "unreadable" : "" : "",
            (i < mkeySize - 1) ? PIPE : "");
        bb.put(value);
        bb.put(CRLF);
      }

      // flip the buffer
      ((Buffer) bb).flip();

      return bb;
    }

    public ByteBuffer getBinaryCommand() {
      throw new RuntimeException("not supported in binary protocol yet.");
    }
  }

  public String getKey() {
    return key;
  }

  public void setKey(String key) {
    this.key = key;
  }

  public boolean iscreateKeyIfNotExists() {
    return createKeyIfNotExists;
  }

  public void setcreateKeyIfNotExists(boolean createKeyIfNotExists) {
    this.createKeyIfNotExists = createKeyIfNotExists;
  }

  public int getItemCount() {
    return this.itemCount;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy