Java tutorial
/* Copyright (C) 2006 NTT DATA Corporation This program is free software; you can redistribute it and/or Modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ package com.clustercontrol.repository.action; import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import com.clustercontrol.bean.Property; import com.clustercontrol.repository.util.NodePropertyUtil; import com.clustercontrol.repository.util.RepositoryEndpointWrapper; import com.clustercontrol.util.EndpointManager; import com.clustercontrol.util.HinemosMessage; import com.clustercontrol.util.Messages; import com.clustercontrol.util.PropertyUtil; import com.clustercontrol.util.UIManager; import com.clustercontrol.ws.repository.InvalidRole_Exception; import com.clustercontrol.ws.repository.NodeInfo; /** * ????<BR> * * @version 1.0.0 * @since 1.0.0 */ public class GetNodeList { // private static Log m_log = LogFactory.getLog(GetNodeList.class); // ----- instance ----- // /** * ?????? * * @param managerName ??? * @return */ public List<NodeInfo> getAll(String managerName) { List<NodeInfo> records = null; Map<String, String> errorMsgs = new ConcurrentHashMap<>(); try { RepositoryEndpointWrapper wrapper = RepositoryEndpointWrapper.getWrapper(managerName); records = wrapper.getNodeListAll(); } catch (InvalidRole_Exception e) { errorMsgs.put(managerName, Messages.getString("message.accesscontrol.16")); } catch (Exception e) { m_log.warn("getAll(), " + e.getMessage(), e); errorMsgs.put(managerName, Messages.getString("message.hinemos.failure.unexpected") + ", " + HinemosMessage.replace(e.getMessage())); } // if (0 < errorMsgs.size()) { UIManager.showMessageBox(errorMsgs, true); } return records; } /** * property???????? * * @param managerName ??? * @param property * @return */ public List<NodeInfo> get(String managerName, Property property) { PropertyUtil.deletePropertyDefine(property); List<NodeInfo> records = null; Map<String, String> errorMsgs = new ConcurrentHashMap<>(); try { RepositoryEndpointWrapper wrapper = RepositoryEndpointWrapper.getWrapper(managerName); NodeInfo nodeInfo = null; nodeInfo = NodePropertyUtil.property2node(property); records = wrapper.getFilterNodeList(nodeInfo); } catch (InvalidRole_Exception e) { errorMsgs.put(managerName, Messages.getString("message.accesscontrol.16")); } catch (Exception e) { m_log.warn("getAll(), " + e.getMessage(), e); errorMsgs.put(managerName, Messages.getString("message.hinemos.failure.unexpected") + ", " + HinemosMessage.replace(e.getMessage())); } // if (0 < errorMsgs.size()) { UIManager.showMessageBox(errorMsgs, true); } return records; } /** * ?????? * * @return */ public Map<String, List<NodeInfo>> getAll() { Map<String, List<NodeInfo>> dispDataMap = new ConcurrentHashMap<>(); List<NodeInfo> records = null; Map<String, String> errorMsgs = new ConcurrentHashMap<>(); for (String managerName : EndpointManager.getActiveManagerSet()) { try { RepositoryEndpointWrapper wrapper = RepositoryEndpointWrapper.getWrapper(managerName); records = wrapper.getNodeListAll(); dispDataMap.put(managerName, records); } catch (InvalidRole_Exception e) { errorMsgs.put(managerName, Messages.getString("message.accesscontrol.16")); } catch (Exception e) { m_log.warn("getAll(), " + e.getMessage(), e); errorMsgs.put(managerName, Messages.getString("message.hinemos.failure.unexpected") + ", " + HinemosMessage.replace(e.getMessage())); } } // if (0 < errorMsgs.size()) { UIManager.showMessageBox(errorMsgs, true); } return dispDataMap; } /** * property???????? * * @param property * @return */ public Map<String, List<NodeInfo>> get(Property property) { PropertyUtil.deletePropertyDefine(property); Map<String, List<NodeInfo>> dispDataMap = new ConcurrentHashMap<>(); List<NodeInfo> records = null; Map<String, String> errorMsgs = new ConcurrentHashMap<>(); for (String managerName : EndpointManager.getActiveManagerSet()) { try { RepositoryEndpointWrapper wrapper = RepositoryEndpointWrapper.getWrapper(managerName); NodeInfo nodeInfo = null; nodeInfo = NodePropertyUtil.property2node(property); records = wrapper.getFilterNodeList(nodeInfo); dispDataMap.put(managerName, records); } catch (InvalidRole_Exception e) { errorMsgs.put(managerName, Messages.getString("message.accesscontrol.16")); } catch (Exception e) { m_log.warn("getAll(), " + e.getMessage(), e); errorMsgs.put(managerName, Messages.getString("message.hinemos.failure.unexpected") + ", " + HinemosMessage.replace(e.getMessage())); } } // if (0 < errorMsgs.size()) { UIManager.showMessageBox(errorMsgs, true); } return dispDataMap; } }