use of com.cubrid.common.ui.spi.model.MonitorStatistic in project cubrid-manager by CUBRID.
the class MonitorDashboardPersistManager method saveDashboard.
/**
*
* Save dash boards
*
*/
public void saveDashboard() {
synchronized (this) {
XMLMemento memento = XMLMemento.createWriteRoot("dashboards");
Iterator<ICubridNode> iterator = monitorDashboardList.iterator();
while (iterator.hasNext()) {
ICubridNode node = (ICubridNode) iterator.next();
if (node instanceof MonitorStatistic) {
continue;
}
Dashboard dashboard = (Dashboard) node.getAdapter(Dashboard.class);
IXMLMemento dashboardChild = memento.createChild("dashboard");
dashboardChild.putString("name", node.getName());
Iterator<HostNode> nodeIte = dashboard.getHostNodeList().iterator();
while (nodeIte.hasNext()) {
//save host node
HostNode hostNode = nodeIte.next();
IXMLMemento hostNodeChild = dashboardChild.createChild("host");
hostNodeChild.putString("aliasname", hostNode.getName());
hostNodeChild.putString("ip", hostNode.getIp());
hostNodeChild.putString("port", hostNode.getPort());
hostNodeChild.putString("username", hostNode.getUserName());
hostNodeChild.putString("password", CipherUtils.encrypt(hostNode.getPassword()));
hostNodeChild.putString("location", hostNode.getLocation().x + "," + hostNode.getLocation().y);
hostNodeChild.putString("visible", hostNode.isVisible() ? "true" : "false");
//save the database node list
List<DatabaseNode> dbNodeList = hostNode.getDbNodeList();
Iterator<DatabaseNode> dbNodeIte = dbNodeList.iterator();
while (dbNodeIte.hasNext()) {
DatabaseNode dbNode = (DatabaseNode) dbNodeIte.next();
IXMLMemento databaseNodeChild = hostNodeChild.createChild("database");
databaseNodeChild.putString("aliasname", dbNode.getName());
databaseNodeChild.putString("dbname", dbNode.getDbName());
databaseNodeChild.putString("username", dbNode.getDbUser());
databaseNodeChild.putString("password", CipherUtils.encrypt(dbNode.getDbPassword()));
databaseNodeChild.putString("location", dbNode.getLocation().x + "," + dbNode.getLocation().y);
}
//save broker node list
List<BrokerNode> brokerNodeList = hostNode.getBrokerNodeList();
Iterator<BrokerNode> brokerNodeIte = brokerNodeList.iterator();
while (brokerNodeIte.hasNext()) {
BrokerNode brokerNode = (BrokerNode) brokerNodeIte.next();
IXMLMemento brokerNodeChild = hostNodeChild.createChild("broker");
brokerNodeChild.putString("aliasname", brokerNode.getName());
brokerNodeChild.putString("brokername", brokerNode.getBrokerName());
brokerNodeChild.putString("location", brokerNode.getLocation().x + "," + brokerNode.getLocation().y);
//save the client IP list
ClientNode ipListNode = dashboard.getClientNodeByBroker(brokerNode);
Point point = null;
String clientIpName = null;
if (ipListNode == null) {
brokerNodeChild.putString("show_ip_list", "false");
point = brokerNode.getClientsLocation();
} else {
brokerNodeChild.putString("show_ip_list", ipListNode.isVisible() ? "true" : "false");
point = ipListNode.getLocation();
clientIpName = ipListNode.getName();
}
if (point != null) {
brokerNodeChild.putString("client_ip_location", point.x + "," + point.y);
}
if (clientIpName != null) {
brokerNodeChild.putString("client_ip_name", clientIpName);
}
//save the database list
BrokerDBListNode dbListNode = dashboard.getBrokerDBListNodeByBroker(brokerNode);
String clientDbName = null;
if (dbListNode == null) {
brokerNodeChild.putString("show_db_list", "false");
point = brokerNode.getDatabasesLocation();
} else {
brokerNodeChild.putString("show_db_list", dbListNode.isVisible() ? "true" : "false");
point = dbListNode.getLocation();
clientDbName = dbListNode.getName();
}
if (point != null) {
brokerNodeChild.putString("client_db_location", point.x + "," + point.y);
}
if (clientDbName != null) {
brokerNodeChild.putString("client_db_name", clientDbName);
}
}
}
}
PersistUtils.saveXMLMemento(CubridManagerUIPlugin.PLUGIN_ID, MONITOR_DASHBOARD_XML_CONTENT, memento);
}
}
use of com.cubrid.common.ui.spi.model.MonitorStatistic in project cubrid-manager by CUBRID.
the class MonitorStatisticPersistManager method loadMonitorStatistic.
/**
*
* Load MonitorStatistic nodes
*
*/
protected void loadMonitorStatistic() {
synchronized (this) {
IXMLMemento memento = PersistUtils.getXMLMemento(CubridManagerUIPlugin.PLUGIN_ID, MONITOR_STATISTIC_XML_CONTENT);
if (memento != null) {
IXMLMemento[] monitorsPerHost = memento.getChildren("monitorsPerHost");
for (int i = 0; i < monitorsPerHost.length; i++) {
boolean isMultiHost = monitorsPerHost[i].getBoolean("isMultihost");
String hostId = HOST_ID_FOR_MULTI_HOST;
if (!isMultiHost) {
hostId = monitorsPerHost[i].getString("hostId");
}
IXMLMemento[] children = monitorsPerHost[i].getChildren("monitor");
List<MonitorStatistic> monitorStatisticList = new ArrayList<MonitorStatistic>();
for (int j = 0; j < children.length; j++) {
String id = children[j].getString("name");
String label = id;
if (!isMultiHost && id.indexOf("@") != -1) {
label = id.substring(0, id.indexOf("@"));
}
MonitorStatistic node = new MonitorStatistic(id, label, iconPath);
node.setType(CubridNodeType.MONITOR_STATISTIC_PAGE);
node.setMultiHost(isMultiHost);
IXMLMemento[] chartChildren = children[j].getChildren("chart");
for (int k = 0; chartChildren != null && k < chartChildren.length; k++) {
String typeStr = chartChildren[k].getString("type");
StatisticType type = StatisticType.valueOf(typeStr);
int series = chartChildren[k].getInteger("series");
String dType = chartChildren[k].getString("dtype");
if (!isMultiHost) {
SingleHostChartItem item = new SingleHostChartItem(id, type);
item.setSeries(series);
item.setDType(dType);
String metrics = chartChildren[k].getString("metrics");
String[] metricAr = metrics.split(",");
for (String metric : metricAr) {
item.addMetric(metric);
}
String dbName = null;
switch(type) {
case DB:
dbName = chartChildren[k].getString("dbname");
item.setDbName(dbName);
break;
case DB_VOL:
dbName = chartChildren[k].getString("dbname");
String volName = chartChildren[k].getString("volname");
item.setDbName(dbName);
item.setVolName(volName);
break;
case BROKER:
String brokerName = chartChildren[k].getString("bname");
item.setBrokerName(brokerName);
break;
case OS:
break;
default:
break;
}
node.addStatisticItem(item);
} else {
IXMLMemento[] hostChildren = chartChildren[k].getChildren("host");
MultiHostChartItem item = new MultiHostChartItem(id, type);
item.setSeries(series);
item.setDType(dType);
for (int m = 0; hostChildren != null && m < hostChildren.length; m++) {
String cubridServerId = hostChildren[m].getString("cubridServerId");
String ip = hostChildren[m].getString("ip");
int port = hostChildren[m].getInteger("port");
String user = hostChildren[m].getString("user");
String pass = hostChildren[m].getString("password");
StatisticChartHost host;
if (cubridServerId != null) {
host = new StatisticChartHost(cubridServerId);
} else {
host = new StatisticChartHost(ip, port, user, CipherUtils.decrypt(pass));
}
String metric = hostChildren[m].getString("metric");
host.setMetric(metric);
String dbName = null;
switch(type) {
case DB:
dbName = hostChildren[m].getString("dbname");
host.setDbName(dbName);
break;
case DB_VOL:
dbName = hostChildren[m].getString("dbname");
String volName = hostChildren[m].getString("volname");
host.setDbName(dbName);
host.setVolName(volName);
break;
case BROKER:
String brokerName = hostChildren[m].getString("bname");
host.setBrokerName(brokerName);
break;
case OS:
break;
default:
break;
}
item.addStatisticChartHost(host);
}
node.addStatisticItem(item);
}
}
monitorStatisticList.add(node);
}
monitorStatisticMap.put(hostId, monitorStatisticList);
}
}
}
}
use of com.cubrid.common.ui.spi.model.MonitorStatistic 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