use of com.cubrid.cubridmanager.core.monstatistic.model.StatisticChartItem in project cubrid-manager by CUBRID.
the class MonitorStatisticPersistManager method saveStatistic.
/**
*
* Save MonitorStatistic nodes
*
*/
public void saveStatistic() {
synchronized (this) {
XMLMemento memento = XMLMemento.createWriteRoot("monitors");
Iterator<String> keySetIterator = monitorStatisticMap.keySet().iterator();
while (keySetIterator.hasNext()) {
String hostId = keySetIterator.next();
boolean isMultiHost = HOST_ID_FOR_MULTI_HOST.equals(hostId);
IXMLMemento monsPerHostMemento = memento.createChild("monitorsPerHost");
monsPerHostMemento.putBoolean("isMultihost", isMultiHost);
if (!isMultiHost) {
monsPerHostMemento.putString("hostId", hostId);
}
List<MonitorStatistic> monitorStatisticList = monitorStatisticMap.get(hostId);
if (monitorStatisticList == null) {
continue;
}
Iterator<MonitorStatistic> nodeIterator = monitorStatisticList.iterator();
while (nodeIterator.hasNext()) {
MonitorStatistic node = nodeIterator.next();
IXMLMemento monMemento = monsPerHostMemento.createChild("monitor");
monMemento.putString("name", node.getId());
//save StatisticItem list
List<StatisticChartItem> statisticItemList = node.getStatisticItemList();
Iterator<StatisticChartItem> itemIterator = statisticItemList.iterator();
while (itemIterator.hasNext()) {
if (!node.isMultiHost()) {
SingleHostChartItem item = (SingleHostChartItem) itemIterator.next();
IXMLMemento chartMemento = monMemento.createChild("chart");
chartMemento.putInteger("series", item.getSeries());
chartMemento.putString("name", item.getName());
chartMemento.putString("type", item.getType().toString());
chartMemento.putString("dtype", item.getDType());
chartMemento.putString("metrics", ArrayUtil.collectionToCSString(item.getMetricList()));
switch(item.getType()) {
case DB:
chartMemento.putString("dbname", item.getDbName());
break;
case DB_VOL:
chartMemento.putString("dbname", item.getDbName());
chartMemento.putString("volname", item.getVolName());
break;
case BROKER:
chartMemento.putString("bname", item.getBrokerName());
break;
case OS:
break;
default:
break;
}
} else {
MultiHostChartItem item = (MultiHostChartItem) itemIterator.next();
IXMLMemento chartMemento = monMemento.createChild("chart");
chartMemento.putInteger("series", item.getSeries());
chartMemento.putString("name", item.getName());
chartMemento.putString("type", item.getType().toString());
chartMemento.putString("dtype", item.getDType());
//save HostInfo list
List<StatisticChartHost> hostList = item.getHostList();
Iterator<StatisticChartHost> hostIterator = hostList.iterator();
while (hostIterator.hasNext()) {
StatisticChartHost host = (StatisticChartHost) hostIterator.next();
IXMLMemento hostMemento = chartMemento.createChild("host");
hostMemento.putString("cubridServerId", host.getCubridServerId());
hostMemento.putString("ip", host.getIp());
hostMemento.putInteger("port", host.getPort());
hostMemento.putString("user", host.getUser());
hostMemento.putString("password", CipherUtils.encrypt(host.getPassword()));
hostMemento.putString("metric", host.getMetric());
switch(item.getType()) {
case DB:
hostMemento.putString("dbname", host.getDbName());
break;
case DB_VOL:
hostMemento.putString("dbname", host.getDbName());
hostMemento.putString("volname", host.getVolName());
break;
case BROKER:
hostMemento.putString("bname", host.getBrokerName());
break;
case OS:
break;
default:
break;
}
}
}
}
}
}
PersistUtils.saveXMLMemento(CubridManagerUIPlugin.PLUGIN_ID, MONITOR_STATISTIC_XML_CONTENT, memento);
}
}
Aggregations