use of com.cubrid.cubridmanager.ui.mondashboard.editor.dispatcher.DataGeneratorPool in project cubrid-manager by CUBRID.
the class HostDashboardViewPart method init.
/**
* Initializes
*
* @param hostNode The HostNode
*/
public void init(HostNode hostNode) {
this.hostNode = hostNode;
String partName = getPartName();
String postfix = " - " + hostNode.getIp() + ":" + hostNode.getPort();
if (!partName.endsWith(postfix)) {
setPartName(partName + postfix);
}
ServerInfo serverInfo = hostNode.getServerInfo();
ServerType serverType = null;
if (serverInfo != null) {
serverType = serverInfo.getServerType();
}
if (serverType != ServerType.DATABASE && brokerChartPart == null) {
loadBrokerChart(chartComp);
chartComp.layout();
composite.layout();
}
if (serverInfo != null) {
String hostAddress = serverInfo.getHostAddress();
int monPort = serverInfo.getHostMonPort();
historyFileName = HistoryComposite.HOSTDASHBOARD_HISTORY_FILE_PREFIX + hostAddress + "_" + monPort + HistoryComposite.HISTORY_SUFFIX;
IPath histPath = CubridManagerCorePlugin.getDefault().getStateLocation();
historyPath = histPath.toOSString() + File.separator + historyFileName;
historyFileHelp = new HistoryFileHelp();
historyFileHelp.setHistoryPath(historyPath);
isNewBrokerDiag = CompatibleUtil.isNewBrokerDiag(serverInfo);
}
List<String> typeLst = new ArrayList<String>();
for (HostStatEnum hostEnum : HostStatEnum.values()) {
typeLst.add(hostEnum.getName());
}
for (BrokerDiagEnum brokerEnum : BrokerDiagEnum.values()) {
typeLst.add(brokerEnum.getName());
}
typeNames = typeLst.toArray(new String[typeLst.size()]);
DataGeneratorPool pool = DataGeneratorPool.getInstance();
String generatorName = hostNode.getUserName() + "@" + hostNode.getIp() + ":" + hostNode.getPort();
generator = pool.getDataGenerator(generatorName, new DataProvider());
generator.addDataUpdateListener(this);
}
use of com.cubrid.cubridmanager.ui.mondashboard.editor.dispatcher.DataGeneratorPool in project cubrid-manager by CUBRID.
the class DatabaseDashboardViewPart method init.
/**
* Initializes
*
* @param dbNode The DatabaseNode
*/
public void init(DatabaseNode dbNode) {
this.dbNode = dbNode;
HostNode hostNode = dbNode.getParent();
String partName = getPartName();
String suffix = " - " + dbNode.getDbName() + "@" + hostNode.getIp() + ":" + hostNode.getPort();
if (!partName.endsWith(suffix)) {
setPartName(partName + suffix);
}
ServerInfo serverInfo = hostNode.getServerInfo();
if (serverInfo != null) {
String hostAddress = serverInfo.getHostAddress();
int monPort = serverInfo.getHostMonPort();
historyFileName = HistoryComposite.DBDASHBOARD_HISTORY_FILE_PREFIX + dbNode.getDbName() + "@" + hostAddress + "_" + monPort + HistoryComposite.HISTORY_SUFFIX;
IPath histPath = CubridManagerCorePlugin.getDefault().getStateLocation();
historyPath = histPath.toOSString() + File.separator + historyFileName;
historyFileHelp = new HistoryFileHelp();
historyFileHelp.setHistoryPath(historyPath);
}
List<String> typeLst = new ArrayList<String>();
for (DbProcStatEnum dbProcEnum : DbProcStatEnum.values()) {
typeLst.add(dbProcEnum.getName());
}
for (StandbyServerStatEnum standbyEnum : StandbyServerStatEnum.values()) {
typeLst.add(standbyEnum.getName());
}
for (DbStatDumpEnum dbDumpEnum : DbStatDumpEnum.values()) {
typeLst.add(dbDumpEnum.getName());
}
typeNames = typeLst.toArray(new String[typeLst.size()]);
DataGeneratorPool pool = DataGeneratorPool.getInstance();
String generatorName = hostNode.getUserName() + "@" + hostNode.getIp() + ":" + hostNode.getPort();
generator = pool.getDataGenerator(generatorName, new DataProvider());
generator.addDataUpdateListener(this);
}
use of com.cubrid.cubridmanager.ui.mondashboard.editor.dispatcher.DataGeneratorPool in project cubrid-manager by CUBRID.
the class HostMonitorPartHelper method active.
/**
*
* Active this listener
*
*/
public void active() {
if (hostNode == null) {
return;
}
DataGeneratorPool pool = DataGeneratorPool.getInstance();
String generatorName = hostNode.getUserName() + "@" + hostNode.getIp() + ":" + hostNode.getPort();
generator = pool.getDataGenerator(generatorName, new DataProvider());
generator.addDataUpdateListener(this);
}
Aggregations