Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015 the original author or authors.
* @https://github.com/scouter-project/scouter
*
* 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.
*
*/
package scouterx.webapp.layer.consumer;
import scouter.lang.constants.ParamConstant;
import scouter.lang.pack.MapPack;
import scouter.lang.value.ListValue;
import scouter.lang.value.MapValue;
import scouter.lang.value.Value;
import scouter.net.RequestCmd;
import scouterx.webapp.framework.client.net.TcpProxy;
import scouterx.webapp.framework.client.server.Server;
import scouterx.webapp.model.KeyValueData;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/**
* @author Gun Lee ([email protected]) on 2017. 8. 27.
*/
public class CustomKvStoreConsumer {
public boolean set(final String keySpace, final String key, final String value, final Server server) {
return set(keySpace, key, value, ParamConstant.TTL_PERMANENT, server);
}
public boolean set(final String keySpace, final String key, final String value, long ttl, final Server server) {
Value returnValue = null;
MapPack mapPack = new MapPack();
mapPack.put(ParamConstant.KEY_SPACE, keySpace);
mapPack.put(ParamConstant.KEY, key);
mapPack.put(ParamConstant.VALUE, value);
mapPack.put(ParamConstant.TTL, ttl);
try (TcpProxy tcpProxy = TcpProxy.getTcpProxy(server)) {
returnValue = tcpProxy.getSingleValue(RequestCmd.SET_CUSTOM_KV, mapPack);
}
return returnValue != null ? (Boolean) returnValue.toJavaObject() : false;
}
public boolean setTTL(final String keySpace, final String key, final long ttl, final Server server) {
Value returnValue = null;
MapPack mapPack = new MapPack();
mapPack.put(ParamConstant.KEY_SPACE, keySpace);
mapPack.put(ParamConstant.KEY, key);
mapPack.put(ParamConstant.TTL, ttl);
try (TcpProxy tcpProxy = TcpProxy.getTcpProxy(server)) {
returnValue = tcpProxy.getSingleValue(RequestCmd.SET_CUSTOM_TTL, mapPack);
}
return returnValue != null ? (Boolean) returnValue.toJavaObject() : false;
}
public String get(final String keySpace, final String key, final Server server) {
MapPack mapPack = new MapPack();
mapPack.put(ParamConstant.KEY_SPACE, keySpace);
mapPack.put(ParamConstant.KEY, key);
Value value = null;
try (TcpProxy tcpProxy = TcpProxy.getTcpProxy(server)) {
value = tcpProxy.getSingleValue(RequestCmd.GET_CUSTOM_KV, mapPack);
}
return value != null ? value.toString() : null;
}
public List setBulk(final String keySpace, final Map paramMap, final Server server) {
return setBulk(keySpace, paramMap, ParamConstant.TTL_PERMANENT, server);
}
public List setBulk(final String keySpace, final Map paramMap, long ttl, final Server server) {
MapPack mapPack = new MapPack();
mapPack.put(ParamConstant.KEY_SPACE, keySpace);
mapPack.put(ParamConstant.KEY_VALUE, MapValue.ofStringValueMap(paramMap));
mapPack.put(ParamConstant.TTL, ttl);
MapPack resultPack ;
try (TcpProxy tcpProxy = TcpProxy.getTcpProxy(server)) {
resultPack = (MapPack) tcpProxy.getSingle(RequestCmd.SET_CUSTOM_KV_BULK, mapPack);
}
List resultList = new ArrayList<>();
for (String key : resultPack.keySet()) {
resultList.add(new KeyValueData(key, resultPack.getBoolean(key)));
}
return resultList;
}
public List getBulk(final String keySpace, final List paramList, final Server server) {
MapPack paramPack = new MapPack();
paramPack.put(ParamConstant.KEY_SPACE, keySpace);
paramPack.put(ParamConstant.KEY, ListValue.ofStringValueList(paramList));
MapPack resultPack ;
try (TcpProxy tcpProxy = TcpProxy.getTcpProxy(server)) {
resultPack = (MapPack) tcpProxy.getSingle(RequestCmd.GET_CUSTOM_KV_BULK, paramPack);
}
List resultList = new ArrayList<>();
for (String key : resultPack.keySet()) {
resultList.add(new KeyValueData(key, resultPack.getText(key)));
}
return resultList;
}
}