com.navercorp.pinpoint.grpc.ManagedChannelUtils Maven / Gradle / Ivy
/*
* 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;
import io.grpc.Channel;
import io.grpc.InternalWithLogId;
import io.grpc.ManagedChannel;
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import java.util.concurrent.TimeUnit;
/**
* @author Woonduk Kang(emeroad)
*/
public final class ManagedChannelUtils {
public static final long DEFAULT_SHUTDOWN_TIMEOUT = 3000;
private static final Logger logger = LogManager.getLogger(ManagedChannelUtils.class);
private ManagedChannelUtils() {
}
public static boolean shutdownManagedChannel(String name, ManagedChannel managedChannel) {
return shutdownManagedChannel(name, managedChannel, DEFAULT_SHUTDOWN_TIMEOUT, TimeUnit.MILLISECONDS);
}
public static boolean shutdownManagedChannel(String name, ManagedChannel managedChannel, long timeout, TimeUnit unit) {
if (managedChannel == null) {
return false;
}
logger.debug("shutdown {}", name);
managedChannel.shutdown();
try {
final boolean success = managedChannel.awaitTermination(timeout, unit);
if (!success) {
logger.warn("shutdown timeout {}", name);
}
return success;
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
return false;
}
}
private static final String LOG_ID_STR = "logId=";
public static long getLogId(Channel channel) {
if (channel == null) {
return -1;
}
if (channel instanceof InternalWithLogId) {
InternalWithLogId logId = (InternalWithLogId) channel;
return logId.getLogId().getId();
}
final String channelString = channel.toString();
final int start = channelString.indexOf(LOG_ID_STR);
if (start == -1) {
return -1;
}
final int end = channelString.indexOf(',', start + LOG_ID_STR.length());
if (end == -1) {
return -1;
}
final String logId = channelString.substring(start + LOG_ID_STR.length(), end);
return Long.parseLong(logId);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy