blob: 7f28c8f73187b98cafe2a464eab48aced10ad55c [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* 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.intellij.openapi.diagnostic;
import com.intellij.util.ExceptionUtil;
import org.jetbrains.annotations.NotNull;
import java.util.concurrent.atomic.AtomicInteger;
/**
* @author peter
*/
public class FrequentEventDetector {
private static final Logger LOG = Logger.getInstance("#com.intellij.openapi.diagnostic.FrequentEventDetector");
public enum Level {INFO, WARN, ERROR}
private long myStartedCounting = System.currentTimeMillis();
private final AtomicInteger myEventsPosted = new AtomicInteger();
private final int myEventCountThreshold;
private final int myTimeSpanMs;
private final Level myLevel;
public FrequentEventDetector(int eventCountThreshold, int timeSpanMs) {
this(eventCountThreshold, timeSpanMs, Level.INFO);
}
public FrequentEventDetector(int eventCountThreshold, int timeSpanMs, @NotNull Level level) {
myEventCountThreshold = eventCountThreshold;
myTimeSpanMs = timeSpanMs;
myLevel = level;
}
public void eventHappened() {
if (myEventsPosted.incrementAndGet() > myEventCountThreshold) {
boolean shouldLog = false;
synchronized (myEventsPosted) {
if (myEventsPosted.get() > myEventCountThreshold) {
long timeNow = System.currentTimeMillis();
shouldLog = timeNow - myStartedCounting < myTimeSpanMs;
myEventsPosted.set(0);
myStartedCounting = timeNow;
}
}
if (shouldLog) {
String message = "Too many events posted\n" + ExceptionUtil.getThrowableText(new Throwable());
if (myLevel == Level.INFO) {
LOG.info(message);
}
else if (myLevel == Level.WARN) {
LOG.warn(message);
}
else {
LOG.error(message);
}
}
}
}
}