net.spy.memcached.protocol.ascii.DeleteOperationImpl 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.
*/
// Copyright (c) 2006 Dustin Sallings
package net.spy.memcached.protocol.ascii;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.util.Collection;
import java.util.Collections;
import net.spy.memcached.KeyUtil;
import net.spy.memcached.ops.APIType;
import net.spy.memcached.ops.DeleteOperation;
import net.spy.memcached.ops.OperationCallback;
import net.spy.memcached.ops.OperationState;
import net.spy.memcached.ops.OperationStatus;
import net.spy.memcached.ops.OperationType;
import net.spy.memcached.ops.StatusCode;
/**
* Operation to delete an item from the cache.
*/
final class DeleteOperationImpl extends OperationImpl
implements DeleteOperation {
private static final int OVERHEAD = 32;
private static final OperationStatus DELETED =
new OperationStatus(true, "DELETED", StatusCode.SUCCESS);
private static final OperationStatus NOT_FOUND =
new OperationStatus(false, "NOT_FOUND", StatusCode.ERR_NOT_FOUND);
private final String key;
public DeleteOperationImpl(String k, OperationCallback cb) {
super(cb);
key = k;
setAPIType(APIType.DELETE);
setOperationType(OperationType.WRITE);
}
@Override
public void handleLine(String line) {
getLogger().debug("Delete of %s returned %s", key, line);
/* ENABLE_REPLICATION if */
if (line.equals("SWITCHOVER") || line.equals("REPL_SLAVE")) {
receivedMoveOperations(line);
return;
}
/* ENABLE_REPLICATION end */
getCallback().receivedStatus(matchStatus(line, DELETED, NOT_FOUND));
transitionState(OperationState.COMPLETE);
}
@Override
public void initialize() {
ByteBuffer b = ByteBuffer.allocate(
KeyUtil.getKeyBytes(key).length + OVERHEAD);
setArguments(b, "delete", key);
((Buffer) b).flip();
setBuffer(b);
}
public Collection getKeys() {
return Collections.singleton(key);
}
@Override
public boolean isBulkOperation() {
return false;
}
@Override
public boolean isPipeOperation() {
return false;
}
}