blob: 01bf0ac4513a5f6768def416f4ae2c88110d888d [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;
import java.util.Collection;
import org.apache.geode.cache.Region;
import org.apache.geode.redis.internal.GeodeRedisServer;
import org.apache.geode.redis.internal.data.ByteArrayWrapper;
import org.apache.geode.redis.internal.data.RedisData;
import org.apache.geode.redis.internal.executor.key.RedisKeyCommands;
import org.apache.geode.redis.internal.executor.key.RedisKeyCommandsFunctionInvoker;
import org.apache.geode.redis.internal.netty.ExecutionHandlerContext;
/**
* The AbstractExecutor is the base of all {@link Executor} types for the {@link GeodeRedisServer}.
*/
public abstract class AbstractExecutor implements Executor {
protected RedisResponse respondBulkStrings(Object message) {
if (message instanceof Collection) {
return RedisResponse.array((Collection<?>) message);
} else {
return RedisResponse.bulkString(message);
}
}
protected RedisKeyCommands getRedisKeyCommands(ExecutionHandlerContext context) {
return new RedisKeyCommandsFunctionInvoker(context.getRegionProvider().getDataRegion());
}
protected Region<ByteArrayWrapper, RedisData> getDataRegion(ExecutionHandlerContext context) {
return context.getRegionProvider().getDataRegion();
}
}