/* * 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.collector.cluster.route; import java.util.ArrayList; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.navercorp.pinpoint.collector.cluster.ClusterPointLocator; import com.navercorp.pinpoint.collector.cluster.TargetClusterPoint; import com.navercorp.pinpoint.thrift.dto.command.TCommandTransfer; /** * @author koo.taejin */ public abstract class AbstractRouteHandler<T extends RouteEvent> implements RouteHandler<T> { private final Logger logger = LoggerFactory.getLogger(this.getClass()); private final ClusterPointLocator<TargetClusterPoint> targetClusterPointLocator; public AbstractRouteHandler(ClusterPointLocator<TargetClusterPoint> targetClusterPointLocator) { this.targetClusterPointLocator = targetClusterPointLocator; } protected TargetClusterPoint findClusterPoint(TCommandTransfer deliveryCommand) { String applicationName = deliveryCommand.getApplicationName(); String agentId = deliveryCommand.getAgentId(); long startTimeStamp = deliveryCommand.getStartTime(); List<TargetClusterPoint> result = new ArrayList<>(); for (TargetClusterPoint targetClusterPoint : targetClusterPointLocator.getClusterPointList()) { if (!targetClusterPoint.getApplicationName().equals(applicationName)) { continue; } if (!targetClusterPoint.getAgentId().equals(agentId)) { continue; } if (!(targetClusterPoint.getStartTimeStamp() == startTimeStamp)) { continue; } result.add(targetClusterPoint); } if (result.size() == 1) { return result.get(0); } if (result.size() > 1) { logger.warn("Ambiguous ClusterPoint {}, {}, {} (Valid Agent list={}).", applicationName, agentId, startTimeStamp, result); return null; } return null; } }