org.glowroot.agent.impl.TimerNameCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glowroot-agent-it-harness Show documentation
Show all versions of glowroot-agent-it-harness Show documentation
Glowroot Agent Integration Test Harness
/*
* Copyright 2012-2019 the original author or authors.
*
* 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 org.glowroot.agent.impl;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.cache.CacheBuilder;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.cache.CacheLoader;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.com.google.common.cache.LoadingCache;
import org.glowroot.agent.shaded.org.glowroot.agent.shaded.org.slf4j.Logger;
import org.glowroot.agent.shaded.org.glowroot.agent.shaded.org.slf4j.LoggerFactory;
import org.glowroot.agent.model.ImmutableTimerNameImpl;
import org.glowroot.agent.model.TimerNameImpl;
import org.glowroot.agent.plugin.api.TimerName;
import org.glowroot.agent.plugin.api.weaving.Pointcut;
// used to ensure one instance per name so that pointer equality can be used instead of String
// equality
//
// also used to ensure @Pointcut timer name matches the timer name passed to TransactionService
public class TimerNameCache {
public static final String AUXILIARY_THREAD_ROOT_TIMER_NAME = "auxiliary thread";
private static final Logger logger = LoggerFactory.getLogger(TimerNameCache.class);
// weak values is to support dynamically named timers
private final LoadingCache names = CacheBuilder.newBuilder()
.weakValues()
.build(new CacheLoader() {
@Override
public TimerNameImpl load(String name) {
return ImmutableTimerNameImpl.of(name, false);
}
});
private final TimerName unknownTimerName = names.getUnchecked("unknown");
private final TimerName auxThreadTimerName =
names.getUnchecked(AUXILIARY_THREAD_ROOT_TIMER_NAME);
public TimerName getTimerName(Class> adviceClass) {
if (adviceClass == null) {
logger.error("getTimerName(): argument 'adviceClass' must be non-null");
return unknownTimerName;
}
Pointcut pointcut = adviceClass.getAnnotation(Pointcut.class);
if (pointcut == null) {
logger.warn("advice has no @Pointcut: {}", adviceClass.getName());
return unknownTimerName;
} else if (pointcut.timerName().isEmpty()) {
logger.warn("advice @Pointcut has no timerName() attribute: {}", adviceClass.getName());
return unknownTimerName;
} else {
return getName(pointcut.timerName());
}
}
TimerName getTimerName(String name) {
if (name == null) {
logger.error("getTimerName(): argument 'name' must be non-null");
return unknownTimerName;
}
return getName(name);
}
TimerName getAuxThreadTimerName() {
return auxThreadTimerName;
}
private TimerName getName(String name) {
return names.getUnchecked(name);
}
}