/* * Copyright 2014 NAVER Corp. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.navercorp.pinpoint.web.applicationmap; import java.util.*; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import com.navercorp.pinpoint.web.view.ServerInstanceListSerializer; /** * @author emeroad * @author netspider * @author minwoo.jung * @author HyunGil Jeong */ @JsonSerialize(using = ServerInstanceListSerializer.class) public class ServerInstanceList { private final Map<String, List<ServerInstance>> serverInstanceList = new TreeMap<>(); public ServerInstanceList() { } public Map<String, List<ServerInstance>> getServerInstanceList() { // XXX list sorting problem exist return serverInstanceList; } public List<String> getAgentIdList() { final Collection<List<ServerInstance>> serverInstanceValueList = this.serverInstanceList.values(); final List<String> agentList = new ArrayList<>(); for (List<ServerInstance> serverInstanceList : serverInstanceValueList) { for (ServerInstance serverInstance : serverInstanceList) { agentList.add(serverInstance.getName()); } } return agentList; } public int getInstanceCount() { int count = 0; for (List<ServerInstance> entry : serverInstanceList.values()) { count += entry.size(); } return count; } private void addServerInstance(List<ServerInstance> nodeList, ServerInstance serverInstance) { for (ServerInstance node : nodeList) { boolean equalsNode = node.equals(serverInstance); if (equalsNode) { return; } } nodeList.add(serverInstance); } private List<ServerInstance> getServerInstanceList(String hostName) { List<ServerInstance> find = serverInstanceList.get(hostName); if (find == null) { find = new ArrayList<>(); serverInstanceList.put(hostName, find); } return find; } void addServerInstance(ServerInstance serverInstance) { List<ServerInstance> find = getServerInstanceList(serverInstance.getHostName()); addServerInstance(find, serverInstance); } }