jdeppe-pivotal commented on a change in pull request #7396: URL: https://github.com/apache/geode/pull/7396#discussion_r815016654
########## File path: geode-for-redis/src/main/java/org/apache/geode/redis/internal/data/NullRedisList.java ########## @@ -50,4 +50,9 @@ public long lpush(List<byte[]> elementsToAdd, Region<RedisKey, RedisData> region public int llen() { return 0; } + + @Override + public boolean lset(Region<RedisKey, RedisData> region, RedisKey key, int index, byte[] value) { + return false; Review comment: Instead I think you should do `throw new RedisException(ERROR_NO_SUCH_KEY)` ########## File path: geode-for-redis/src/main/java/org/apache/geode/redis/internal/commands/executor/list/LSetExecutor.java ########## @@ -0,0 +1,58 @@ +/* + * 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.commands.executor.list; + +import static org.apache.geode.redis.internal.RedisConstants.ERROR_INDEX_OUT_OF_RANGE; +import static org.apache.geode.redis.internal.RedisConstants.ERROR_NO_SUCH_KEY; + +import java.util.List; + +import org.apache.geode.cache.Region; +import org.apache.geode.redis.internal.commands.Command; +import org.apache.geode.redis.internal.commands.executor.CommandExecutor; +import org.apache.geode.redis.internal.commands.executor.RedisResponse; +import org.apache.geode.redis.internal.data.RedisData; +import org.apache.geode.redis.internal.data.RedisKey; +import org.apache.geode.redis.internal.data.RedisList; +import org.apache.geode.redis.internal.netty.Coder; +import org.apache.geode.redis.internal.netty.ExecutionHandlerContext; + +public class LSetExecutor implements CommandExecutor { + @Override + public RedisResponse executeCommand(Command command, ExecutionHandlerContext context) { + Region<RedisKey, RedisData> region = context.getRegion(); + List<byte[]> commandElements = command.getProcessedCommand(); + + RedisKey key = command.getKey(); + if (!context.listLockedExecute(key, false, RedisData::exists)) { + return RedisResponse.error(ERROR_NO_SUCH_KEY); + } + + long index = Coder.bytesToLong(commandElements.get(2)); + byte[] value = commandElements.get(3); + long listSize = (long) context.listLockedExecute(key, false, RedisList::llen); Review comment: There is a race here between this line and the actual call to `lset` on line 54. If we're`LSET`ting on the last element but the list is popped (and thus one element shorter) before getting to line 54 it will cause an IndexOutOfBounds exception. Prefer to do all of your checking within one 'locked' call - i.e. do this adjustment in the actual `lset` method. ########## File path: geode-for-redis/src/main/java/org/apache/geode/redis/internal/commands/executor/list/LSetExecutor.java ########## @@ -0,0 +1,58 @@ +/* + * 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.commands.executor.list; + +import static org.apache.geode.redis.internal.RedisConstants.ERROR_INDEX_OUT_OF_RANGE; +import static org.apache.geode.redis.internal.RedisConstants.ERROR_NO_SUCH_KEY; + +import java.util.List; + +import org.apache.geode.cache.Region; +import org.apache.geode.redis.internal.commands.Command; +import org.apache.geode.redis.internal.commands.executor.CommandExecutor; +import org.apache.geode.redis.internal.commands.executor.RedisResponse; +import org.apache.geode.redis.internal.data.RedisData; +import org.apache.geode.redis.internal.data.RedisKey; +import org.apache.geode.redis.internal.data.RedisList; +import org.apache.geode.redis.internal.netty.Coder; +import org.apache.geode.redis.internal.netty.ExecutionHandlerContext; + +public class LSetExecutor implements CommandExecutor { + @Override + public RedisResponse executeCommand(Command command, ExecutionHandlerContext context) { + Region<RedisKey, RedisData> region = context.getRegion(); + List<byte[]> commandElements = command.getProcessedCommand(); + + RedisKey key = command.getKey(); + if (!context.listLockedExecute(key, false, RedisData::exists)) { + return RedisResponse.error(ERROR_NO_SUCH_KEY); + } Review comment: I think this can be removed in favor of my comment on `NullRedisList.lset` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@geode.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org