forked from fanruan/demo-tabledata-redis
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.
151 lines
4.8 KiB
151 lines
4.8 KiB
package com.fr.plugin.db.redis.core; |
|
|
|
import com.fr.base.Parameter; |
|
import com.fr.base.TableData; |
|
import com.fr.base.TemplateUtils; |
|
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.Inter; |
|
import com.fr.general.data.DataModel; |
|
import com.fr.general.xml.GeneralXMLTools; |
|
import com.fr.intelli.record.Focus; |
|
import com.fr.intelli.record.Original; |
|
import com.fr.plugin.ExtraClassManager; |
|
import com.fr.plugin.db.redis.core.order.OrderValue; |
|
import com.fr.record.analyzer.EnableMetrics; |
|
import com.fr.script.Calculator; |
|
import com.fr.stable.ArrayUtils; |
|
import com.fr.stable.ParameterProvider; |
|
import com.fr.stable.fun.FunctionHelper; |
|
import com.fr.stable.fun.FunctionProcessor; |
|
import com.fr.stable.fun.impl.AbstractFunctionProcessor; |
|
import com.fr.stable.xml.XMLPrintWriter; |
|
import com.fr.stable.xml.XMLableReader; |
|
|
|
import java.util.HashMap; |
|
import java.util.Map; |
|
|
|
|
|
@EnableMetrics |
|
public class RedisTableData extends AbstractParameterTableData { |
|
|
|
|
|
private Connection database; |
|
private OrderValue dbIndex; |
|
private String query; |
|
|
|
|
|
public void setDatabase(Connection c) { |
|
this.database = c; |
|
} |
|
|
|
public Connection getDatabase() { |
|
return database; |
|
} |
|
|
|
public OrderValue getOrderValue() { |
|
return dbIndex; |
|
} |
|
|
|
public void setOrderValue(OrderValue dbIndex) { |
|
this.dbIndex = dbIndex; |
|
} |
|
|
|
public String getQuery() { |
|
return query; |
|
} |
|
|
|
public void setQuery(String query) { |
|
this.query = query; |
|
} |
|
|
|
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_DB", source = Original.PLUGIN) |
|
public DataModel createDataModel(Calculator calculator, int rowCount) { |
|
Parameter[] ps = Parameter.providers2Parameter(getParameters(calculator)); |
|
if (database instanceof NameDatabaseConnection) { |
|
String name = ((NameDatabaseConnection) database).getName(); |
|
RedisDatabaseConnection rc = DatasourceManager.getProviderInstance().getConnection(name, RedisDatabaseConnection.class); |
|
if (rc != null) { |
|
return new RedisTableDataModel(calculator, ps, rc, |
|
dbIndex == null ? 0 : dbIndex.toIndex(calculator, ps), |
|
calculateQuery(query, ps), |
|
rowCount); |
|
} |
|
} |
|
return null; |
|
} |
|
|
|
private String calculateQuery(String query, Parameter[] ps) { |
|
if (ArrayUtils.isEmpty(ps)) { |
|
return query; |
|
} |
|
Map<String, Object> map = new HashMap<String, Object>(); |
|
for (Parameter p : ps) { |
|
map.put(p.getName(), p.getValue()); |
|
} |
|
try { |
|
return TemplateUtils.renderParameter4Tpl(query, map); |
|
} catch (Exception e) { |
|
return query; |
|
} |
|
} |
|
|
|
public void readXML(XMLableReader reader) { |
|
super.readXML(reader); |
|
|
|
if (reader.isChildNode()) { |
|
String tmpName = reader.getTagName(); |
|
String tmpVal; |
|
|
|
if (OrderValue.XML_TAG.equals(tmpName)) { |
|
this.dbIndex = (OrderValue) GeneralXMLTools.readXMLable(reader); |
|
} 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 ("Query".equals(tmpName)) { |
|
tmpVal = reader.getElementValue(); |
|
if (isNotNullValue(tmpVal)) { |
|
this.setQuery(tmpVal); |
|
} |
|
} |
|
} |
|
} |
|
|
|
@Override |
|
public void writeXML(XMLPrintWriter writer) { |
|
super.writeXML(writer); |
|
GeneralXMLTools.writeXMLable(writer, dbIndex, OrderValue.XML_TAG); |
|
if (this.database != null) { |
|
DataCoreXmlUtils.writeXMLConnection(writer, this.database); |
|
} |
|
writer.startTAG("Query").textNode(getQuery()).end(); |
|
} |
|
|
|
private boolean isNotNullValue(String value) { |
|
return value != null && !"null".equals(value); |
|
} |
|
|
|
@Override |
|
public Object clone() throws CloneNotSupportedException { |
|
RedisTableData cloned = (RedisTableData) super.clone(); |
|
cloned.database = (Connection) database.clone(); |
|
cloned.query = query; |
|
cloned.dbIndex = dbIndex; |
|
return cloned; |
|
} |
|
} |