blob: 9a3e52cc750b18fa00e5e714f5c9a77fd0dfe80e [file] [log] [blame]
/*
* Copyright 2000-2013 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.codeInsight.daemon.impl;
import com.intellij.openapi.progress.util.AbstractProgressIndicatorBase;
import com.intellij.openapi.util.TraceableDisposable;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.TestOnly;
/**
* @author cdr
*/
public class DaemonProgressIndicator extends AbstractProgressIndicatorBase {
private static boolean debug;
private final TraceableDisposable myTraceableDisposable = new TraceableDisposable(debug ? new Throwable() : null);
@Override
public synchronized void stop() {
super.stop();
super.cancel();
}
public synchronized void stopIfRunning() {
if (isRunning()) {
stop();
}
else {
super.cancel();
}
}
@Override
public void cancel() {
myTraceableDisposable.kill("Daemon Progress Canceled");
super.cancel();
}
public void cancel(@NotNull Throwable cause) {
myTraceableDisposable.kill("Daemon Progress Canceled because of "+cause);
super.cancel();
}
@Override
public void start() {
assert !isCanceled() : "canceled";
assert !isRunning() : "running";
super.start();
}
@TestOnly
public static void setDebug(boolean debug) {
DaemonProgressIndicator.debug = debug;
}
@Override
public final boolean equals(Object obj) {
return super.equals(obj);
}
@Override
public final int hashCode() {
return super.hashCode();
}
}