All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scouterx.webapp.layer.consumer.CustomKvStoreConsumer Maven / Gradle / Ivy

There is a newer version: 2.20.0
Show newest version
/*
 *  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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy