blob: 6064221d5fe491918371b3fc5bb004bc75bb5602 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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 org.apache.geode.redis.internal.executor.hash;
import java.util.ArrayList;
import java.util.List;
import org.apache.geode.redis.internal.data.ByteArrayWrapper;
import org.apache.geode.redis.internal.executor.RedisResponse;
import org.apache.geode.redis.internal.netty.Command;
import org.apache.geode.redis.internal.netty.ExecutionHandlerContext;
/**
* <pre>
* Implements the Redis HDEL command.
*
* Removes the specified fields from the hash for a given key.
*
* Examples:
*
* redis> HSET myhash field1 "foo"
* (integer) 1
* redis> HDEL myhash field1
* (integer) 1
* redis> HDEL myhash field2
* (integer) 0
*
* </pre>
*/
public class HDelExecutor extends HashExecutor {
@Override
public RedisResponse executeCommand(Command command,
ExecutionHandlerContext context) {
List<ByteArrayWrapper> commandElems = command.getProcessedCommandWrappers();
ByteArrayWrapper key = command.getKey();
RedisHashCommands redisHashCommands = createRedisHashCommands(context);
ArrayList<ByteArrayWrapper> fieldsToDelete =
new ArrayList<>(commandElems.subList(2, commandElems.size()));
int numDeleted = redisHashCommands.hdel(key, fieldsToDelete);
return RedisResponse.integer(numDeleted);
}
}