org.glowroot.transaction.WeavingTimerServiceImpl Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2013-2015 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.transaction;
import org.glowroot.config.ConfigService;
import org.glowroot.plugin.api.config.ConfigListener;
import org.glowroot.plugin.api.transaction.TimerName;
import org.glowroot.plugin.api.weaving.Pointcut;
import org.glowroot.transaction.model.TimerImpl;
import org.glowroot.transaction.model.Transaction;
import org.glowroot.weaving.WeavingTimerService;
class WeavingTimerServiceImpl implements WeavingTimerService {
private final TransactionRegistry transactionRegistry;
private final TimerName timerName;
private volatile boolean enabled;
WeavingTimerServiceImpl(TransactionRegistry transactionRegistry,
final ConfigService configService, TimerNameCache timerNameCache) {
this.transactionRegistry = transactionRegistry;
configService.addConfigListener(new ConfigListener() {
@Override
public void onChange() {
enabled = configService.getAdvancedConfig().weavingTimer();
}
});
this.timerName = timerNameCache.getName(OnlyForTheTimerName.class);
}
@Override
public WeavingTimer start() {
if (!enabled) {
return NopWeavingTimer.INSTANCE;
}
Transaction transaction = transactionRegistry.getCurrentTransaction();
if (transaction == null) {
return NopWeavingTimer.INSTANCE;
}
TimerImpl currentTimer = transaction.getCurrentTimer();
if (currentTimer == null) {
return NopWeavingTimer.INSTANCE;
}
final TimerImpl timer = currentTimer.startNestedTimer(timerName);
return new WeavingTimer() {
@Override
public void stop() {
timer.stop();
}
};
}
private static class NopWeavingTimer implements WeavingTimer {
private static final NopWeavingTimer INSTANCE = new NopWeavingTimer();
@Override
public void stop() {}
}
@Pointcut(className = "", methodName = "", methodParameterTypes = {},
timerName = "glowroot weaving")
private static class OnlyForTheTimerName {
private OnlyForTheTimerName() {}
}
}