forked from fanruan/design
白岳
5 years ago
12 changed files with 772 additions and 64 deletions
@ -0,0 +1,256 @@
|
||||
package com.fr.design.mainframe.chart.info; |
||||
|
||||
import com.fr.base.io.BaseBook; |
||||
import com.fr.config.MarketConfig; |
||||
import com.fr.design.DesignModelAdapter; |
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.file.HistoryTemplateListCache; |
||||
import com.fr.general.GeneralUtils; |
||||
import com.fr.json.JSONObject; |
||||
import com.fr.stable.ProductConstants; |
||||
import com.fr.stable.StringUtils; |
||||
import com.fr.stable.xml.XMLPrintWriter; |
||||
import com.fr.stable.xml.XMLReadable; |
||||
import com.fr.stable.xml.XMLWriter; |
||||
import com.fr.stable.xml.XMLableReader; |
||||
|
||||
import java.text.SimpleDateFormat; |
||||
import java.util.Calendar; |
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* @author Bjorn |
||||
* @version 10.0 |
||||
* Created by Bjorn on 2020-02-17 |
||||
*/ |
||||
public class ChartInfo implements XMLReadable, XMLWriter { |
||||
public static final String XML_TAG = "ChartInfo"; |
||||
|
||||
private static final String XML_CHART_CONSUMING_MAP = "chartConsumingMap"; |
||||
private static final String ATTR_TEST_TEMPLATE = "testTemplate"; |
||||
private static final String ATTR_DAY_COUNT = "day_count"; |
||||
private static final String ATTR_USERNAME = "username"; |
||||
private static final String ATTR_UUID = "uuid"; |
||||
private static final String ATTR_ACTIVITYKEY = "activityKey"; |
||||
private static final String ATTR_TEMPLATE_ID = "templateID"; |
||||
private static final String ATTR_REPORT_TYPE = "type"; |
||||
private static final String ATTR_CHART_ID = "chartId"; |
||||
private static final String ATTR_CHART_TYPE = "chartType"; |
||||
private static final String ATTR_CHART_CREATE_TIME = "chartCreateTime"; |
||||
private static final String ATTR_CHART_TYPE_TIME = "chartTypeTime"; |
||||
private static final String ATTR_CHART_PROPERTY_FIRST_TIME = "chartPropertyFirstTime"; |
||||
private static final String ATTR_CHART_PROPERTY_END_TIME = "chartPropertyEndTime"; |
||||
private static final String ATTR_JAR_TIME = "jarTime"; |
||||
private static final String ATTR_VERSION = "version"; |
||||
|
||||
private static final int COMPLETE_DAY_COUNT = 3; // 判断图表是否可以上传的天数
|
||||
|
||||
private int idleDayCount; // 到现在为止,图表闲置(上次保存后没有再编辑过)的天数
|
||||
|
||||
private String chartId = StringUtils.EMPTY; |
||||
|
||||
private String templateId = StringUtils.EMPTY; |
||||
|
||||
private Map<String, Object> chartConsumingMap = new HashMap<>(); |
||||
|
||||
private BaseBook book; |
||||
|
||||
private boolean testTemplate; |
||||
|
||||
private ChartInfo() { |
||||
} |
||||
|
||||
private ChartInfo(String chartId, String templateId, BaseBook book) { |
||||
this.chartId = chartId; |
||||
this.templateId = templateId; |
||||
this.book = book; |
||||
} |
||||
|
||||
public String getChartId() { |
||||
return chartId; |
||||
} |
||||
|
||||
public String getTemplateId() { |
||||
return templateId; |
||||
} |
||||
|
||||
public void setTemplateId(String templateId) { |
||||
this.templateId = templateId; |
||||
this.chartConsumingMap.put(ATTR_TEMPLATE_ID, templateId); |
||||
} |
||||
|
||||
|
||||
public BaseBook getBook() { |
||||
return book; |
||||
} |
||||
|
||||
public boolean isTestTemplate() { |
||||
return testTemplate; |
||||
} |
||||
|
||||
public void setTestTemplate(boolean testTemplate) { |
||||
this.testTemplate = testTemplate; |
||||
} |
||||
|
||||
static ChartInfo newInstanceByRead(XMLableReader reader) { |
||||
ChartInfo chartInfo = new ChartInfo(); |
||||
reader.readXMLObject(chartInfo); |
||||
return chartInfo; |
||||
} |
||||
|
||||
public static ChartInfo newInstance(String chartId, String chartType) { |
||||
return newInstance(chartId, chartType, null); |
||||
} |
||||
|
||||
public static ChartInfo newInstance(String chartId, String chartType, String createTime) { |
||||
HashMap<String, Object> chartConsumingMap = new HashMap<>(); |
||||
|
||||
String username = MarketConfig.getInstance().getBbsUsername(); |
||||
String uuid = DesignerEnvManager.getEnvManager().getUUID(); |
||||
String activitykey = DesignerEnvManager.getEnvManager().getActivationKey(); |
||||
|
||||
BaseBook book = DesignModelAdapter.getCurrentModelAdapter().getBook(); |
||||
String templateId = book.getTemplateID(); |
||||
int reportType = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate().getProcessInfo().getReportType(); |
||||
|
||||
String typeTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(Calendar.getInstance().getTime()); |
||||
|
||||
createTime = createTime == null ? typeTime : createTime; |
||||
|
||||
String jarTime = GeneralUtils.readBuildNO(); |
||||
String version = ProductConstants.VERSION; |
||||
chartConsumingMap.put(ATTR_USERNAME, username); |
||||
chartConsumingMap.put(ATTR_UUID, uuid); |
||||
chartConsumingMap.put(ATTR_ACTIVITYKEY, activitykey); |
||||
chartConsumingMap.put(ATTR_TEMPLATE_ID, templateId); |
||||
chartConsumingMap.put(ATTR_REPORT_TYPE, reportType); |
||||
chartConsumingMap.put(ATTR_CHART_ID, chartId); |
||||
chartConsumingMap.put(ATTR_CHART_TYPE, chartType); |
||||
chartConsumingMap.put(ATTR_CHART_CREATE_TIME, createTime); |
||||
chartConsumingMap.put(ATTR_CHART_TYPE_TIME, typeTime); |
||||
chartConsumingMap.put(ATTR_CHART_PROPERTY_FIRST_TIME, ""); |
||||
chartConsumingMap.put(ATTR_CHART_PROPERTY_END_TIME, ""); |
||||
chartConsumingMap.put(ATTR_JAR_TIME, jarTime); |
||||
chartConsumingMap.put(ATTR_VERSION, version); |
||||
|
||||
ChartInfo chartInfo = new ChartInfo(chartId, templateId, book); |
||||
chartInfo.chartConsumingMap = chartConsumingMap; |
||||
|
||||
return chartInfo; |
||||
} |
||||
|
||||
|
||||
public void writeXML(XMLPrintWriter writer) { |
||||
writer.startTAG(XML_TAG); |
||||
if (StringUtils.isNotEmpty(chartId)) { |
||||
writer.attr(ATTR_CHART_ID, this.chartId); |
||||
} |
||||
if (StringUtils.isNotEmpty(templateId)) { |
||||
writer.attr(ATTR_TEMPLATE_ID, this.templateId); |
||||
} |
||||
if (idleDayCount >= 0) { |
||||
writer.attr(ATTR_DAY_COUNT, this.idleDayCount); |
||||
} |
||||
writer.attr(ATTR_TEST_TEMPLATE, this.testTemplate); |
||||
writer.startTAG(XML_CHART_CONSUMING_MAP); |
||||
writer.attr(ATTR_USERNAME, (String) chartConsumingMap.get(ATTR_USERNAME)); |
||||
writer.attr(ATTR_UUID, (String) chartConsumingMap.get(ATTR_UUID)); |
||||
writer.attr(ATTR_ACTIVITYKEY, (String) chartConsumingMap.get(ATTR_ACTIVITYKEY)); |
||||
writer.attr(ATTR_REPORT_TYPE, (int) chartConsumingMap.get(ATTR_REPORT_TYPE)); |
||||
writer.attr(ATTR_CHART_TYPE, (String) chartConsumingMap.get(ATTR_CHART_TYPE)); |
||||
writer.attr(ATTR_CHART_CREATE_TIME, (String) chartConsumingMap.get(ATTR_CHART_CREATE_TIME)); |
||||
writer.attr(ATTR_CHART_TYPE_TIME, (String) chartConsumingMap.get(ATTR_CHART_TYPE_TIME)); |
||||
writer.attr(ATTR_CHART_PROPERTY_FIRST_TIME, (String) chartConsumingMap.get(ATTR_CHART_PROPERTY_FIRST_TIME)); |
||||
writer.attr(ATTR_CHART_PROPERTY_END_TIME, (String) chartConsumingMap.get(ATTR_CHART_PROPERTY_END_TIME)); |
||||
writer.attr(ATTR_JAR_TIME, (String) chartConsumingMap.get(ATTR_JAR_TIME)); |
||||
writer.attr(ATTR_VERSION, (String) chartConsumingMap.get(ATTR_VERSION)); |
||||
writer.end(); |
||||
writer.end(); |
||||
} |
||||
|
||||
public void readXML(XMLableReader reader) { |
||||
|
||||
if (!reader.isChildNode()) { |
||||
idleDayCount = reader.getAttrAsInt(ATTR_DAY_COUNT, 0); |
||||
chartId = reader.getAttrAsString(ATTR_CHART_ID, StringUtils.EMPTY); |
||||
templateId = reader.getAttrAsString(ATTR_TEMPLATE_ID, StringUtils.EMPTY); |
||||
testTemplate = reader.getAttrAsBoolean(ATTR_TEST_TEMPLATE, true); |
||||
} else { |
||||
try { |
||||
String name = reader.getTagName(); |
||||
if (XML_CHART_CONSUMING_MAP.equals(name)) { |
||||
chartConsumingMap.put(ATTR_USERNAME, reader.getAttrAsString(ATTR_USERNAME, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_UUID, reader.getAttrAsString(ATTR_UUID, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_ACTIVITYKEY, reader.getAttrAsString(ATTR_ACTIVITYKEY, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_TEMPLATE_ID, templateId); |
||||
chartConsumingMap.put(ATTR_REPORT_TYPE, reader.getAttrAsInt(ATTR_REPORT_TYPE, 0)); |
||||
chartConsumingMap.put(ATTR_CHART_ID, chartId); |
||||
chartConsumingMap.put(ATTR_CHART_TYPE, reader.getAttrAsString(ATTR_CHART_TYPE, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_CHART_CREATE_TIME, reader.getAttrAsString(ATTR_CHART_CREATE_TIME, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_CHART_TYPE_TIME, reader.getAttrAsString(ATTR_CHART_TYPE_TIME, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_CHART_PROPERTY_FIRST_TIME, reader.getAttrAsString(ATTR_CHART_PROPERTY_FIRST_TIME, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_CHART_PROPERTY_END_TIME, reader.getAttrAsString(ATTR_CHART_PROPERTY_END_TIME, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_JAR_TIME, reader.getAttrAsString(ATTR_JAR_TIME, StringUtils.EMPTY)); |
||||
chartConsumingMap.put(ATTR_VERSION, reader.getAttrAsString(ATTR_VERSION, "8.0")); |
||||
} |
||||
} catch (Exception ex) { |
||||
// 什么也不做,使用默认值
|
||||
} |
||||
} |
||||
} |
||||
|
||||
public void resetIdleDayCount() { |
||||
this.idleDayCount = 0; |
||||
} |
||||
|
||||
public void addIdleDayCountByOne() { |
||||
this.idleDayCount += 1; |
||||
} |
||||
|
||||
public int getIdleDayCount() { |
||||
return this.idleDayCount; |
||||
} |
||||
|
||||
boolean isComplete() { |
||||
// 连续3天打开了设计器但是没有编辑
|
||||
return idleDayCount > COMPLETE_DAY_COUNT; |
||||
} |
||||
|
||||
String getChartConsumingMapJsonString() { |
||||
return new JSONObject(chartConsumingMap).toString(); |
||||
} |
||||
|
||||
public void updatePropertyTime() { |
||||
String propertyTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(Calendar.getInstance().getTime()); |
||||
|
||||
if (StringUtils.isEmpty((String) chartConsumingMap.get(ATTR_CHART_PROPERTY_FIRST_TIME))) { |
||||
chartConsumingMap.put(ATTR_CHART_PROPERTY_FIRST_TIME, propertyTime); |
||||
} |
||||
chartConsumingMap.put(ATTR_CHART_PROPERTY_END_TIME, propertyTime); |
||||
} |
||||
|
||||
public void updateChartType(String chartType) { |
||||
String typeTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(Calendar.getInstance().getTime()); |
||||
|
||||
chartConsumingMap.put(ATTR_CHART_TYPE_TIME, typeTime); |
||||
chartConsumingMap.put(ATTR_CHART_TYPE, chartType); |
||||
chartConsumingMap.put(ATTR_CHART_PROPERTY_FIRST_TIME, ""); |
||||
chartConsumingMap.put(ATTR_CHART_PROPERTY_END_TIME, ""); |
||||
} |
||||
|
||||
@Override |
||||
public ChartInfo clone() { |
||||
ChartInfo chartInfo = new ChartInfo(); |
||||
chartInfo.chartId = this.chartId; |
||||
chartInfo.idleDayCount = this.idleDayCount; |
||||
chartInfo.templateId = this.templateId; |
||||
chartInfo.testTemplate = this.testTemplate; |
||||
Map<String, Object> chartConsumingMap = new HashMap<>(); |
||||
for (Map.Entry<String, Object> entry : this.chartConsumingMap.entrySet()) { |
||||
chartConsumingMap.put(entry.getKey(), entry.getValue()); |
||||
} |
||||
chartInfo.chartConsumingMap = chartConsumingMap; |
||||
return chartInfo; |
||||
} |
||||
} |
@ -0,0 +1,333 @@
|
||||
package com.fr.design.mainframe.chart.info; |
||||
|
||||
import com.fr.base.FRContext; |
||||
import com.fr.base.io.BaseBook; |
||||
import com.fr.base.io.XMLReadHelper; |
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.mainframe.template.info.TemplateProcessInfo; |
||||
import com.fr.general.ComparatorUtils; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import com.fr.stable.ProductConstants; |
||||
import com.fr.stable.StableUtils; |
||||
import com.fr.stable.StringUtils; |
||||
import com.fr.stable.xml.XMLPrintWriter; |
||||
import com.fr.stable.xml.XMLReadable; |
||||
import com.fr.stable.xml.XMLTools; |
||||
import com.fr.stable.xml.XMLWriter; |
||||
import com.fr.stable.xml.XMLableReader; |
||||
import com.fr.third.javax.xml.stream.XMLStreamException; |
||||
import com.fr.third.org.apache.commons.io.FileUtils; |
||||
|
||||
import java.io.ByteArrayOutputStream; |
||||
import java.io.File; |
||||
import java.io.FileInputStream; |
||||
import java.io.FileNotFoundException; |
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import java.nio.charset.StandardCharsets; |
||||
import java.text.SimpleDateFormat; |
||||
import java.util.ArrayList; |
||||
import java.util.Calendar; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import java.util.concurrent.ConcurrentHashMap; |
||||
|
||||
/** |
||||
* @author Bjorn |
||||
* @version 10.0 |
||||
* Created by Bjorn on 2020-02-18 |
||||
*/ |
||||
public class ChartInfoCollector implements XMLReadable, XMLWriter { |
||||
private static final String XML_TAG = "ChartInfoCollector"; |
||||
private static final String XML_LAST_EDIT_DAY = "lastEditDay"; |
||||
|
||||
private static final String XML_CHART_INFO_LIST = "ChartInfoList"; |
||||
private static final String XML_FILE_NAME = "chart.info"; |
||||
|
||||
private static final int VALID_CELL_COUNT = 5; // 有效报表模板的格子数
|
||||
private static final int VALID_WIDGET_COUNT = 5; // 有效报表模板的控件数
|
||||
|
||||
private static ChartInfoCollector instance; |
||||
private static final int MAX_SIZE = 512 * 1024 * 1024; |
||||
private Map<String, ChartInfo> chartInfoMap; |
||||
|
||||
private Map<String, ChartInfo> chartInfoCacheMap; |
||||
|
||||
private String lastEditDay = StringUtils.EMPTY; |
||||
|
||||
private ChartInfoCollector() { |
||||
init(); |
||||
} |
||||
|
||||
private void init() { |
||||
chartInfoMap = new ConcurrentHashMap<>(); |
||||
chartInfoCacheMap = new HashMap<>(); |
||||
loadFromFile(); |
||||
} |
||||
|
||||
public static ChartInfoCollector getInstance() { |
||||
if (instance == null) { |
||||
instance = new ChartInfoCollector(); |
||||
} |
||||
return instance; |
||||
} |
||||
|
||||
/** |
||||
* 新建图表,保存状态 |
||||
*/ |
||||
public void collection(String chartId, String chartType, String createTime) { |
||||
if (!shouldCollectInfo()) { |
||||
return; |
||||
} |
||||
|
||||
ChartInfo chartInfo = ChartInfo.newInstance(chartId, chartType, createTime); |
||||
chartInfoCacheMap.put(chartId, chartInfo); |
||||
} |
||||
|
||||
/** |
||||
* 图表编辑,更新编辑时间 |
||||
*/ |
||||
public void updateChartPropertyTime(String chartId, String chartType) { |
||||
if (!shouldCollectInfo()) { |
||||
return; |
||||
} |
||||
ChartInfo chartInfo = getOrCreateChartInfo(chartId, chartType); |
||||
|
||||
//更新编辑时间
|
||||
chartInfo.updatePropertyTime(); |
||||
|
||||
//重置计数
|
||||
chartInfo.resetIdleDayCount(); |
||||
} |
||||
|
||||
/** |
||||
* 图表类型变化,更新类型和类型确认时间 |
||||
*/ |
||||
public void updateChartTypeTime(String chartId, String chartType) { |
||||
if (!shouldCollectInfo()) { |
||||
return; |
||||
} |
||||
|
||||
ChartInfo chartInfo = getOrCreateChartInfo(chartId, chartType); |
||||
|
||||
//更新类型确认时间和类型
|
||||
chartInfo.updateChartType(chartType); |
||||
|
||||
//重置计数
|
||||
chartInfo.resetIdleDayCount(); |
||||
} |
||||
|
||||
private ChartInfo getOrCreateChartInfo(String chartId, String chartType) { |
||||
//缓存中有从缓存中拿
|
||||
if (chartInfoCacheMap.containsKey(chartId)) { |
||||
return chartInfoCacheMap.get(chartId); |
||||
} |
||||
//缓存中没有从文件中读取的信息中拷贝到缓存
|
||||
if (chartInfoMap.containsKey(chartId)) { |
||||
ChartInfo chartInfo = chartInfoMap.get(chartId).clone(); |
||||
chartInfoCacheMap.put(chartId, chartInfo); |
||||
return chartInfo; |
||||
} |
||||
//都有的话创建一个并加入到缓存中
|
||||
ChartInfo chartInfo = ChartInfo.newInstance(chartId, chartType); |
||||
chartInfoCacheMap.put(chartId, chartInfo); |
||||
return chartInfo; |
||||
} |
||||
|
||||
/** |
||||
* 保存模板的时候将该模板中的图表埋点信息保存 |
||||
*/ |
||||
public void collectInfo(String templateId, String originID, TemplateProcessInfo processInfo) { |
||||
if (!shouldCollectInfo()) { |
||||
return; |
||||
} |
||||
if (StringUtils.isEmpty(originID)) { |
||||
originID = templateId; |
||||
} |
||||
boolean testTemplate = isTestTemplate(processInfo); |
||||
|
||||
for (ChartInfo chartInfo : chartInfoMap.values()) { |
||||
if (originID.equals(chartInfo.getTemplateId())) { |
||||
chartInfo.setTemplateId(templateId); |
||||
chartInfo.setTestTemplate(testTemplate); |
||||
} |
||||
} |
||||
|
||||
for (ChartInfo chartInfo : chartInfoCacheMap.values()) { |
||||
BaseBook book = chartInfo.getBook(); |
||||
if ((book != null && templateId.equals(book.getTemplateID())) || |
||||
originID.equals(chartInfo.getTemplateId())) { |
||||
chartInfo.setTemplateId(templateId); |
||||
chartInfo.setTestTemplate(testTemplate); |
||||
chartInfoMap.put(chartInfo.getChartId(), chartInfo); |
||||
} |
||||
} |
||||
|
||||
|
||||
|
||||
// 每次更新之后,都同步到暂存文件中
|
||||
saveInfo(); |
||||
} |
||||
|
||||
private boolean isTestTemplate(TemplateProcessInfo processInfo) { |
||||
int reportType = processInfo.getReportType(); |
||||
int cellCount = processInfo.getCellCount(); |
||||
int floatCount = processInfo.getFloatCount(); |
||||
int blockCount = processInfo.getBlockCount(); |
||||
int widgetCount = processInfo.getWidgetCount(); |
||||
|
||||
boolean isTestTemplate; |
||||
if (reportType == 0) { // 普通报表
|
||||
isTestTemplate = cellCount <= VALID_CELL_COUNT && floatCount <= 1 && widgetCount <= VALID_WIDGET_COUNT; |
||||
} else if (reportType == 1) { // 聚合报表
|
||||
isTestTemplate = blockCount <= 1 && widgetCount <= VALID_WIDGET_COUNT; |
||||
} else { // 表单(reportType == 2)
|
||||
isTestTemplate = widgetCount <= 1; |
||||
} |
||||
return isTestTemplate; |
||||
} |
||||
|
||||
/** |
||||
* 发送本地图表信息到服务器,并清空已发送图表的本地记录 |
||||
*/ |
||||
public void sendChartInfo() { |
||||
|
||||
addIdleDayCount(); |
||||
|
||||
List<String> removeLaterList = new ArrayList<>(); |
||||
|
||||
for (String key : chartInfoMap.keySet()) { |
||||
ChartInfo chartInfo = chartInfoMap.get(key); |
||||
if (chartInfo.isComplete()) { |
||||
if (!chartInfo.isTestTemplate()) { |
||||
if (ChartSendHelper.sendChartInfo(chartInfo)) { |
||||
removeLaterList.add(key); |
||||
} |
||||
} else { |
||||
removeLaterList.add(key); |
||||
} |
||||
} |
||||
} |
||||
|
||||
// 清空记录
|
||||
for (String key : removeLaterList) { |
||||
chartInfoMap.remove(key); |
||||
} |
||||
|
||||
saveInfo(); |
||||
} |
||||
|
||||
/** |
||||
* 更新 day_count:打开设计器却未编辑图表的连续日子 |
||||
*/ |
||||
private void addIdleDayCount() { |
||||
// 判断今天是否第一次打开设计器,为了防止同一天内,多次 addIdleDayCount
|
||||
String today = new SimpleDateFormat("yyyy-MM-dd").format(Calendar.getInstance().getTime()); |
||||
if (ComparatorUtils.equals(today, lastEditDay)) { |
||||
return; |
||||
} |
||||
for (ChartInfo chartInfo : chartInfoMap.values()) { |
||||
chartInfo.addIdleDayCountByOne(); |
||||
} |
||||
lastEditDay = today; |
||||
} |
||||
|
||||
private void loadFromFile() { |
||||
if (!getInfoFile().exists()) { |
||||
return; |
||||
} |
||||
|
||||
XMLableReader reader = null; |
||||
try (InputStream in = new FileInputStream(getInfoFile())) { |
||||
// XMLableReader 还是应该考虑实现 Closable 接口的,这样就能使用 try-with 语句了
|
||||
reader = XMLReadHelper.createXMLableReader(in, XMLPrintWriter.XML_ENCODER); |
||||
if (reader == null) { |
||||
return; |
||||
} |
||||
reader.readXMLObject(this); |
||||
} catch (FileNotFoundException e) { |
||||
// do nothing
|
||||
} catch (XMLStreamException | IOException e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} finally { |
||||
try { |
||||
if (reader != null) { |
||||
reader.close(); |
||||
} |
||||
} catch (XMLStreamException e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* 获取缓存文件存放路径 |
||||
*/ |
||||
private static File getInfoFile() { |
||||
File file = new File(StableUtils.pathJoin(ProductConstants.getEnvHome(), XML_FILE_NAME)); |
||||
try { |
||||
if (!file.exists()) { |
||||
file.createNewFile(); |
||||
} |
||||
} catch (Exception ex) { |
||||
FineLoggerFactory.getLogger().error(ex.getMessage(), ex); |
||||
} |
||||
return file; |
||||
} |
||||
|
||||
private boolean shouldCollectInfo() { |
||||
return FileUtils.sizeOf(getInfoFile()) <= MAX_SIZE && DesignerEnvManager.getEnvManager().isJoinProductImprove() && FRContext.isChineseEnv(); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 将包含所有信息的对象保存到文件 |
||||
*/ |
||||
private void saveInfo() { |
||||
try { |
||||
ByteArrayOutputStream out = new ByteArrayOutputStream(); |
||||
XMLTools.writeOutputStreamXML(this, out); |
||||
out.flush(); |
||||
out.close(); |
||||
String fileContent = new String(out.toByteArray(), StandardCharsets.UTF_8); |
||||
FileUtils.writeStringToFile(getInfoFile(), fileContent, StandardCharsets.UTF_8); |
||||
} catch (Exception ex) { |
||||
FineLoggerFactory.getLogger().error(ex.getMessage()); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void readXML(XMLableReader reader) { |
||||
if (reader.isChildNode()) { |
||||
try { |
||||
String name = reader.getTagName(); |
||||
if (ChartInfo.XML_TAG.equals(name)) { |
||||
ChartInfo chartInfo = ChartInfo.newInstanceByRead(reader); |
||||
chartInfoMap.put(chartInfo.getChartId(), chartInfo); |
||||
} else if (XML_LAST_EDIT_DAY.equals(name)) { |
||||
lastEditDay = reader.getElementValue(); |
||||
} |
||||
} catch (Exception ex) { |
||||
// 什么也不做,使用默认值
|
||||
} |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void writeXML(XMLPrintWriter writer) { |
||||
writer.startTAG(XML_TAG); |
||||
|
||||
writer.startTAG(XML_LAST_EDIT_DAY); |
||||
writer.textNode(lastEditDay); |
||||
writer.end(); |
||||
|
||||
writer.startTAG(XML_CHART_INFO_LIST); |
||||
for (ChartInfo chartInfo : chartInfoMap.values()) { |
||||
chartInfo.writeXML(writer); |
||||
} |
||||
writer.end(); |
||||
|
||||
writer.end(); |
||||
} |
||||
} |
@ -0,0 +1,40 @@
|
||||
package com.fr.design.mainframe.chart.info; |
||||
|
||||
import com.fr.design.mainframe.SiteCenterToken; |
||||
import com.fr.general.CloudCenter; |
||||
import com.fr.general.ComparatorUtils; |
||||
import com.fr.general.http.HttpToolbox; |
||||
import com.fr.json.JSONObject; |
||||
import com.fr.log.FineLoggerFactory; |
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* @author Bjorn |
||||
* @version 10.0 |
||||
* Created by Bjorn on 2020-02-19 |
||||
*/ |
||||
class ChartSendHelper { |
||||
private static final String CHART_CONSUMING_URL = CloudCenter.getInstance().acquireUrlByKind("chartinfo.consuming") + "/single"; |
||||
|
||||
static boolean sendChartInfo(ChartInfo chartInfo) { |
||||
return sendSingleChartInfo(CHART_CONSUMING_URL, chartInfo.getChartConsumingMapJsonString()); |
||||
} |
||||
|
||||
private static boolean sendSingleChartInfo(String url, String content) { |
||||
Map<String, Object> para = new HashMap<>(); |
||||
para.put("token", SiteCenterToken.generateToken()); |
||||
para.put("content", content); |
||||
|
||||
try { |
||||
String res = HttpToolbox.post(url, para); |
||||
return ComparatorUtils.equals(new JSONObject(res).get("status"), "success"); |
||||
} catch (Throwable e) { |
||||
// 客户不需要关心,错误等级为 debug 就行了
|
||||
FineLoggerFactory.getLogger().debug(e.getMessage(), e); |
||||
} |
||||
return false; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue