use of doitincloud.rdbcache.models.KeyInfo in project rdbcache by rdbcache.
the class Query method executeDelete.
public boolean executeDelete() {
boolean allOk = true;
for (int i = 0; i < pairs.size(); i++) {
KvPair pair = pairs.get(i);
KeyInfo keyInfo = anyKey.getAny(i);
String table = keyInfo.getTable();
if (!keyInfo.getIsNew() && !keyInfo.hasParams() && keyInfo.ifJustCreated()) {
waitForParamsUpdate(pair.getIdType(), keyInfo);
}
if (!Parser.prepareStandardClauseParams(context, pair, keyInfo)) {
String msg = "executeDelete failed when calling prepareStandardClauseParams for " + pair.getId();
LOGGER.error(msg);
context.logTraceMessage(msg);
if (context.isSync()) {
throw new ServerErrorException(context, msg);
}
continue;
}
params = keyInfo.getParams();
String clause = keyInfo.getClause();
sql = "delete from " + table + " where " + clause + " limit 1";
LOGGER.trace("sql: " + sql);
LOGGER.trace("params: " + params.toString());
StopWatch stopWatch = context.startStopWatch("dbase", "jdbcTemplate.delete");
try {
if (jdbcTemplate.update(sql, params.toArray()) > 0) {
if (stopWatch != null)
stopWatch.stopNow();
LOGGER.trace("delete " + pair.getId() + " from " + table);
continue;
} else {
if (stopWatch != null)
stopWatch.stopNow();
allOk = false;
}
} catch (Exception e) {
if (stopWatch != null)
stopWatch.stopNow();
allOk = false;
String msg = e.getCause().getMessage();
LOGGER.error(msg);
context.logTraceMessage(msg);
e.printStackTrace();
if (context.isSync()) {
throw new ServerErrorException(context, msg);
}
}
keyInfo.setQueryKey(null);
}
return allOk;
}
use of doitincloud.rdbcache.models.KeyInfo in project rdbcache by rdbcache.
the class Query method ifSelectOk.
public boolean ifSelectOk() {
Assert.isTrue(anyKey.size() == 1, "anyKey.size() = " + anyKey.size() + ", select only supports anyKey size == 1");
KeyInfo keyInfo = anyKey.getKeyInfo();
String table = keyInfo.getTable();
if (table == null) {
return false;
}
String queryKey = keyInfo.getQueryKey();
if (queryKey == null) {
return false;
}
String clause = keyInfo.getClause();
params = keyInfo.getParams();
if (clause == null || clause.length() == 0 || params == null || params.size() == 0) {
boolean ready = false;
KvPair pair = pairs.getPair();
if (Parser.prepareQueryClauseParams(context, pair, keyInfo)) {
ready = true;
} else if (keyInfo.getQueryLimit() != null) {
ready = true;
} else if (pairs.size() > 0) {
ready = true;
} else {
if (!keyInfo.getIsNew() && !keyInfo.hasParams() && keyInfo.ifJustCreated()) {
waitForParamsUpdate(pair.getIdType(), keyInfo);
}
if (Parser.prepareStandardClauseParams(context, pair, keyInfo)) {
ready = true;
}
}
if (!ready) {
return false;
}
clause = keyInfo.getClause();
params = keyInfo.getParams();
}
int limit = getLimit();
sql = "select * from " + table;
if (clause != null && clause.length() > 0) {
sql += " where " + clause;
}
if (limit != 0) {
sql += " limit " + limit;
}
QueryInfo queryInfo = keyInfo.getQuery();
if (queryInfo != null) {
keyInfo.setQuery(null);
Utils.getExcutorService().submit(() -> {
Thread.yield();
AppCtx.getDbaseOps().saveQuery(context, queryInfo);
});
}
return true;
}
use of doitincloud.rdbcache.models.KeyInfo in project rdbcache by rdbcache.
the class Query method executeUpdate.
public boolean executeUpdate() {
params = new ArrayList<>();
boolean allOk = true;
for (int i = 0; i < pairs.size(); i++) {
KvPair pair = pairs.get(i);
KeyInfo keyInfo = anyKey.getAny(i);
String table = keyInfo.getTable();
if (!keyInfo.getIsNew() && !keyInfo.hasParams() && keyInfo.ifJustCreated()) {
waitForParamsUpdate(pair.getIdType(), keyInfo);
}
//
if (!Parser.prepareStandardClauseParams(context, pair, keyInfo)) {
allOk = false;
String msg = "executeUpdate failed when calling prepareStandardClauseParams for " + pair.getId();
LOGGER.error(msg);
context.logTraceMessage(msg);
if (context.isSync()) {
throw new ServerErrorException(context, msg);
}
continue;
}
Map<String, Object> map = pair.getData();
params.clear();
String updates = "";
for (Map.Entry<String, Object> entry : map.entrySet()) {
params.add(entry.getValue());
if (updates.length() != 0)
updates += ", ";
updates += entry.getKey() + " = ?";
}
params.addAll(keyInfo.getParams());
String clause = keyInfo.getClause();
sql = "update " + table + " set " + updates + " where " + clause + " limit 1";
LOGGER.trace("sql: " + sql);
LOGGER.trace("params: " + params.toString());
StopWatch stopWatch = context.startStopWatch("dbase", "jdbcTemplate.update");
try {
if (jdbcTemplate.update(sql, params.toArray()) > 0) {
if (stopWatch != null)
stopWatch.stopNow();
LOGGER.trace("update " + pair.getId() + " from " + table);
continue;
} else {
if (stopWatch != null)
stopWatch.stopNow();
allOk = false;
}
} catch (Exception e) {
if (stopWatch != null)
stopWatch.stopNow();
allOk = false;
String msg = e.getCause().getMessage();
LOGGER.error(msg);
context.logTraceMessage(msg);
e.printStackTrace();
if (context.isSync()) {
throw new ServerErrorException(context, msg);
}
}
keyInfo.setQueryKey(null);
}
return allOk;
}
use of doitincloud.rdbcache.models.KeyInfo in project rdbcache by rdbcache.
the class RedisConfig method redisKeyInfoTemplate.
@Bean
public RedisKeyInfoTemplate redisKeyInfoTemplate() {
RedisKeyInfoTemplate template = new RedisKeyInfoTemplate();
template.setConnectionFactory(redisConnectionFactory());
template.setKeySerializer(new StringRedisSerializer());
template.setHashKeySerializer(new StringRedisSerializer());
template.setHashValueSerializer(new Jackson2JsonRedisSerializer<KeyInfo>(KeyInfo.class));
return template;
}
use of doitincloud.rdbcache.models.KeyInfo in project rdbcache by rdbcache.
the class AnyKey method getAny.
public KeyInfo getAny(int index) {
int size = size();
if (index > size) {
throw new ServerErrorException("getAny index out of range");
}
if (size == 0 || index == size) {
KeyInfo keyInfo = null;
if (size == 0) {
keyInfo = new KeyInfo();
keyInfo.setIsNew(true);
} else {
keyInfo = get(0).clone();
keyInfo.setIsNew(true);
keyInfo.clearParams();
}
add(keyInfo);
}
return get(index);
}
Aggregations