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

net.spy.memcached.protocol.binary.GetConfigOperationImpl Maven / Gradle / Ivy

Go to download

Amazon ElastiCache Cluster Client is an enhanced Java library to connect to ElastiCache clusters. This client library has been built upon Spymemcached and is released under the Amazon Software License.

The newest version!
/**
 * Copyright (C) 2012-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. 
 *
 * SPDX-License-Identifier: Apache-2.0
 */
package net.spy.memcached.protocol.binary;

import net.spy.memcached.ops.ConfigurationType;
import net.spy.memcached.ops.GetConfigOperation;

/**
 * Binary protocol implementation for "config get ".
 * 
 */
class GetConfigOperationImpl extends OperationImpl implements GetConfigOperation {

  protected final ConfigurationType type;
  
  static final byte CONFIG_GET_CMD = 0x60;

  /**
   * Length of the extra header stuff for a GET CONFIG response.
   * 4 bytes is used for flags.
   */
  static final int EXTRA_HDR_LEN = 4;

  public GetConfigOperationImpl(ConfigurationType type, GetConfigOperation.Callback cb) {
    super(CONFIG_GET_CMD, generateOpaque(), cb);
    this.type = type;
  }

  @Override
  public void initialize() {
    prepareBuffer(type.getValue(), 0, EMPTY_BYTES);
  }

  @Override
  protected void decodePayload(byte[] pl) {
    final int flags = decodeInt(pl, 0);
    final byte[] data = new byte[pl.length - EXTRA_HDR_LEN];
    System.arraycopy(pl, EXTRA_HDR_LEN, data, 0, pl.length - EXTRA_HDR_LEN);
    GetConfigOperation.Callback gcb = (GetConfigOperation.Callback) getCallback();
    gcb.gotData(type, flags, data);
    getCallback().receivedStatus(STATUS_OK);
  }

  @Override
  public ConfigurationType getType() {
    return type;
  }

  @Override
  public String toString() {
    return super.toString() + " Type: " + type.getValue();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy