
org.sonar.plugins.javascript.utils.ProgressReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-javascript-plugin Show documentation
Show all versions of sonar-javascript-plugin Show documentation
Code Analyzer for JavaScript/TypeScript/CSS
/*
* SonarQube JavaScript Plugin
* Copyright (C) 2011-2025 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the Sonar Source-Available License for more details.
*
* You should have received a copy of the Sonar Source-Available License
* along with this program; if not, see https://sonarsource.com/license/ssal/
*/
package org.sonar.plugins.javascript.utils;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.Consumer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class ProgressReport implements Runnable {
private final long period;
private final Consumer logger;
private long count;
private long currentFileNumber = -1;
private String currentFilename;
private final Thread thread;
private final String adjective;
private final AtomicBoolean success = new AtomicBoolean(false);
/**
* The report loop can not rely only on Thread.interrupted() to end, according to
* interrupted() javadoc, a thread interruption can be ignored because a thread was
* not alive at the time of the interrupt. This could happen if stop() is being called
* before ProgressReport's thread becomes alive.
* So this boolean flag ensures that ProgressReport never enter an infinite loop when
* Thread.interrupted() failed to be set to true.
*/
private final AtomicBoolean interrupted = new AtomicBoolean();
public ProgressReport(String threadName, long period, Consumer logger, String adjective) {
interrupted.set(false);
this.period = period;
this.logger = logger;
this.adjective = adjective;
thread = new Thread(this);
thread.setName(threadName);
thread.setDaemon(true);
}
public ProgressReport(String threadName, long period, Logger logger, String adjective) {
this(threadName, period, logger::info, adjective);
}
public ProgressReport(String threadName, long period, String adjective) {
this(threadName, period, LoggerFactory.getLogger(ProgressReport.class), adjective);
}
public ProgressReport(String threadName, long period) {
this(threadName, period, "analyzed");
}
@Override
public void run() {
log(count + " source " + pluralizeFile(count) + " to be " + adjective);
while (!(interrupted.get() || Thread.currentThread().isInterrupted())) {
try {
Thread.sleep(period);
log(
currentFileNumber +
"/" +
count +
" " +
pluralizeFile(currentFileNumber) +
" " +
adjective +
", current file: " +
currentFilename
);
} catch (InterruptedException e) {
interrupted.set(true);
thread.interrupt();
break;
}
}
if (success.get()) {
log(
count +
"/" +
count +
" source " +
pluralizeFile(count) +
" " +
pluralizeHas(count) +
" been " +
adjective
);
}
}
private static String pluralizeFile(long count) {
if (count == 1L) {
return "file";
}
return "files";
}
private static String pluralizeHas(long count) {
if (count == 1L) {
return "has";
}
return "have";
}
public synchronized void start(long count, String currentFilename) {
this.count = count;
nextFile(currentFilename);
thread.start();
}
public synchronized void nextFile(String currentFilename) {
currentFileNumber++;
this.currentFilename = currentFilename;
}
public synchronized void stop() {
success.set(true);
interrupted.set(true);
thread.interrupt();
join();
}
public synchronized void cancel() {
interrupted.set(true);
thread.interrupt();
join();
}
private void join() {
try {
thread.join();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
}
private void log(String message) {
logger.accept(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy