You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
5.1 KiB
145 lines
5.1 KiB
6 years ago
|
package com.fr.plugin.db.redis.core;
|
||
|
|
||
|
import com.fr.base.Parameter;
|
||
|
import com.fr.base.TableData;
|
||
|
import com.fr.config.holder.Conf;
|
||
|
import com.fr.config.holder.factory.Holders;
|
||
|
import com.fr.config.holder.factory.XmlHolders;
|
||
|
import com.fr.data.AbstractParameterTableData;
|
||
|
import com.fr.data.core.DataCoreXmlUtils;
|
||
|
import com.fr.data.impl.Connection;
|
||
|
import com.fr.data.impl.NameDatabaseConnection;
|
||
|
import com.fr.file.DatasourceManager;
|
||
|
import com.fr.general.data.DataModel;
|
||
|
import com.fr.general.xml.GeneralXMLTools;
|
||
|
import com.fr.intelli.record.Focus;
|
||
|
import com.fr.log.FineLoggerFactory;
|
||
|
import com.fr.plugin.db.redis.core.order.OrderValue;
|
||
|
import com.fr.plugin.db.redis.core.order.impl.NumberOrderValue;
|
||
|
import com.fr.plugin.db.redis.util.RedisUtils;
|
||
|
import com.fr.record.analyzer.EnableMetrics;
|
||
|
import com.fr.script.Calculator;
|
||
|
import com.fr.stable.ParameterProvider;
|
||
|
import com.fr.stable.StringUtils;
|
||
|
import com.fr.stable.xml.XMLPrintWriter;
|
||
|
import com.fr.stable.xml.XMLableReader;
|
||
|
|
||
|
/**
|
||
|
* @author richie
|
||
|
* @version 10.0
|
||
|
* Created by richie on 2019-03-18
|
||
|
*/
|
||
|
@EnableMetrics
|
||
|
public class RedisScriptTableData extends AbstractParameterTableData {
|
||
|
|
||
|
private static final long serialVersionUID = 1525853354993816818L;
|
||
|
|
||
|
private Conf<Connection> database = Holders.obj(null, Connection.class);
|
||
|
private Conf<OrderValue> dbIndex = XmlHolders.obj(new NumberOrderValue(0), OrderValue.class, OrderValue.XML_TAG);
|
||
|
private Conf<String> script = Holders.simple(StringUtils.EMPTY);
|
||
|
|
||
|
public void setDatabase(Connection c) {
|
||
|
this.database.set(c);
|
||
|
}
|
||
|
|
||
|
public Connection getDatabase() {
|
||
|
return database.get();
|
||
|
}
|
||
|
|
||
|
public OrderValue getOrderValue() {
|
||
|
return dbIndex.get();
|
||
|
}
|
||
|
|
||
|
public void setOrderValue(OrderValue dbIndex) {
|
||
|
this.dbIndex.set(dbIndex);
|
||
|
}
|
||
|
|
||
|
public String getScript() {
|
||
|
return script.get();
|
||
|
}
|
||
|
|
||
|
public void setScript(String script) {
|
||
|
this.script.set(script);
|
||
|
}
|
||
|
|
||
|
public void setParameters(ParameterProvider[] providers) {
|
||
|
super.setDefaultParameters(providers);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public DataModel createDataModel(Calculator calculator) {
|
||
|
return createDataModel(calculator, TableData.RESULT_ALL);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
@Focus(id = RedisConstants.PLUGIN_ID, text = "Plugin-Redis_Script_Table_Data")
|
||
|
public DataModel createDataModel(Calculator calculator, int rowCount) {
|
||
|
long start = System.currentTimeMillis();
|
||
|
Parameter[] ps = Parameter.providers2Parameter(getParameters(calculator));
|
||
|
Connection connection = database.get();
|
||
|
if (connection instanceof NameDatabaseConnection) {
|
||
|
String name = ((NameDatabaseConnection) connection).getName();
|
||
|
RedisDatabaseConnection rc = DatasourceManager.getProviderInstance().getConnection(name, RedisDatabaseConnection.class);
|
||
|
if (rc != null) {
|
||
|
OrderValue orderValue = dbIndex.get();
|
||
|
DataModel model = new RedisScriptTableDataModel(rc,
|
||
|
orderValue == null ? 0 : orderValue.toIndex(calculator, ps),
|
||
|
RedisUtils.calculateQuery(script.get(), ps),
|
||
|
rowCount);
|
||
|
FineLoggerFactory.getLogger().info("Build data model spend time {} ms.", System.currentTimeMillis() - start);
|
||
|
return model;
|
||
|
}
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public void readXML(XMLableReader reader) {
|
||
|
super.readXML(reader);
|
||
|
|
||
|
if (reader.isChildNode()) {
|
||
|
String tmpName = reader.getTagName();
|
||
|
String tmpVal;
|
||
|
|
||
|
if (OrderValue.XML_TAG.equals(tmpName)) {
|
||
|
OrderValue orderValue = (OrderValue) GeneralXMLTools.readXMLable(reader);
|
||
|
if (orderValue != null) {
|
||
|
setOrderValue(orderValue);
|
||
|
}
|
||
|
} else if (com.fr.data.impl.Connection.XML_TAG.equals(tmpName)) {
|
||
|
if (reader.getAttrAsString("class", null) != null) {
|
||
|
com.fr.data.impl.Connection con = DataCoreXmlUtils.readXMLConnection(reader);
|
||
|
this.setDatabase(con);
|
||
|
}
|
||
|
} else if ("Script".equals(tmpName)) {
|
||
|
tmpVal = reader.getElementValue();
|
||
|
if (isNotNullValue(tmpVal)) {
|
||
|
this.setScript(tmpVal);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void writeXML(XMLPrintWriter writer) {
|
||
|
super.writeXML(writer);
|
||
|
GeneralXMLTools.writeXMLable(writer, dbIndex.get(), OrderValue.XML_TAG);
|
||
|
if (this.database.get() != null) {
|
||
|
DataCoreXmlUtils.writeXMLConnection(writer, this.database.get());
|
||
|
}
|
||
|
writer.startTAG("Script").textNode(getScript()).end();
|
||
|
}
|
||
|
|
||
|
private boolean isNotNullValue(String value) {
|
||
|
return value != null && !"null".equals(value);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Object clone() throws CloneNotSupportedException {
|
||
|
RedisScriptTableData cloned = (RedisScriptTableData) super.clone();
|
||
|
cloned.database = (Conf<Connection>) database.clone();
|
||
|
cloned.script = (Conf<String>) script.clone();
|
||
|
cloned.dbIndex = (Conf<OrderValue>) dbIndex.clone();
|
||
|
return cloned;
|
||
|
}
|
||
|
}
|