All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.navercorp.pinpoint.grpc.server.AgentHeaderReader Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/*
 * Copyright 2019 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.grpc.server;

import com.navercorp.pinpoint.common.PinpointConstants;
import com.navercorp.pinpoint.common.trace.ServiceType;
import com.navercorp.pinpoint.common.util.IdValidateUtils;
import com.navercorp.pinpoint.common.util.StringUtils;
import com.navercorp.pinpoint.grpc.Header;
import com.navercorp.pinpoint.grpc.HeaderReader;

import io.grpc.Metadata;
import io.grpc.Status;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Objects;

/**
 * @author Woonduk Kang(emeroad)
 * @author jaehong.kim
 */
public class AgentHeaderReader implements HeaderReader
{ // for debug protected final String name; public AgentHeaderReader(String name) { this.name = Objects.requireNonNull(name, "name"); } @Override public Header extract(Metadata headers) { final String agentId = getId(headers, Header.AGENT_ID_KEY); final String agentName = getAgentName(headers, Header.AGENT_NAME_KEY); final String applicationName = getId(headers, Header.APPLICATION_NAME_KEY); final long startTime = getTime(headers, Header.AGENT_START_TIME_KEY); final int serviceType = getServiceType(headers); final long socketId = getSocketId(headers); final List supportCommandCodeList = getSupportCommandCodeList(headers); final Map properties = newProperties(headers); return new Header(name, agentId, agentName, applicationName, serviceType, startTime, socketId, supportCommandCodeList, properties); } protected Map newProperties(Metadata headers) { return Collections.emptyMap(); } protected long getTime(Metadata headers, Metadata.Key timeKey) { final String timeStr = headers.get(timeKey); if (timeStr == null) { throw Status.INVALID_ARGUMENT.withDescription(timeKey.name() + " header is missing").asRuntimeException(); } try { // check number format return Long.parseLong(timeStr); } catch (NumberFormatException e) { throw new IllegalArgumentException("unsupported format"); } } protected String getId(Metadata headers, Metadata.Key idKey) { final String id = headers.get(idKey); if (id == null) { throw Status.INVALID_ARGUMENT.withDescription(idKey.name() + " header is missing").asRuntimeException(); } return validateId(id, idKey); } protected String getAgentName(Metadata headers, Metadata.Key idKey) { final String name = headers.get(idKey); if (!StringUtils.isEmpty(name)) { if (!IdValidateUtils.checkPattern(name)) { throw Status.INVALID_ARGUMENT.withDescription("invalid " + idKey.name()).asRuntimeException(); } if (!IdValidateUtils.checkLength(name, PinpointConstants.AGENT_NAME_MAX_LEN)) { throw Status.INVALID_ARGUMENT.withDescription("invalid " + idKey.name() + ".length").asRuntimeException(); } } return name; } protected long getSocketId(Metadata headers) { final String socketIdStr = headers.get(Header.SOCKET_ID); if (socketIdStr == null) { return Header.SOCKET_ID_NOT_EXIST; } try { return Long.parseLong(socketIdStr); } catch (NumberFormatException e) { return Header.SOCKET_ID_NOT_EXIST; } } protected List getSupportCommandCodeList(Metadata headers) { List supportCommandCodeList = new ArrayList<>(); final String value = headers.get(Header.SUPPORT_COMMAND_CODE); if (value == null) { return Header.SUPPORT_COMMAND_CODE_LIST_NOT_EXIST; } final List codeValueList = StringUtils.tokenizeToStringList(value, Header.SUPPORT_COMMAND_CODE_DELIMITER); try { for (String codeValue : codeValueList) { if (StringUtils.isEmpty(codeValue)) { continue; } final String trimmedCodeValue = codeValue.trim(); final int code = Integer.parseInt(trimmedCodeValue); supportCommandCodeList.add(code); } return Collections.unmodifiableList(supportCommandCodeList); } catch (NumberFormatException e) { return Header.SUPPORT_COMMAND_CODE_LIST_PARSE_ERROR; } } String validateId(String id, Metadata.Key key) { if (!IdValidateUtils.validateId(id)) { throw Status.INVALID_ARGUMENT.withDescription("invalid " + key.name()).asRuntimeException(); } return id; } protected int getServiceType(Metadata headers) { final String serviceTypeStr = headers.get(Header.SERVICE_TYPE_KEY); if (serviceTypeStr == null) { return ServiceType.UNDEFINED.getCode(); } try { return Integer.parseInt(serviceTypeStr); } catch (NumberFormatException ignored) { return ServiceType.UNDEFINED.getCode(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy