org.sonar.api.utils.Durations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-plugin-api Show documentation
Show all versions of sonar-plugin-api Show documentation
Plugin API for SonarQube, SonarCloud and SonarLint
/*
* Sonar Plugin API
* Copyright (C) 2009-2023 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 GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* 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 GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.api.utils;
import org.sonar.api.ce.ComputeEngineSide;
import org.sonar.api.server.ServerSide;
/**
* @since 4.3
*/
@ServerSide
@ComputeEngineSide
public class Durations {
private static final String MINUTES_FORMAT = "%smin";
private static final String HOURS_FORMAT = "%sh";
private static final String DAYS_FORMAT = "%sd";
private static final int HOURS_IN_DAY = 8;
/**
* Create a Duration object from a number of minutes
*/
public Duration create(long minutes) {
return Duration.create(minutes);
}
/**
* Convert the text to a Duration
*
* Example : decode("9d 10 h") -> Duration.encode("10d2h")
*
* @throws IllegalArgumentException
*/
public Duration decode(String duration) {
return Duration.decode(duration, HOURS_IN_DAY);
}
/**
* Return the string value of the Duration.
*
* Example : encode(Duration.encode("9d 10h")) -> "10d2h"
*/
public String encode(Duration duration) {
return duration.encode(HOURS_IN_DAY);
}
/**
* Return the formatted work duration using the english bundles.
*
* Example : format(Duration.encode("9d 10h")) -> 10d 2h
*
*/
public String format(Duration duration) {
long durationInMinutes = duration.toMinutes();
if (durationInMinutes == 0) {
return "0";
}
boolean isNegative = durationInMinutes < 0;
long absDuration = Math.abs(durationInMinutes);
int days = ((Double) ((double) absDuration / HOURS_IN_DAY / 60)).intValue();
long remainingDuration = absDuration - (days * HOURS_IN_DAY * 60);
int hours = ((Double) ((double) remainingDuration / 60)).intValue();
remainingDuration = remainingDuration - (hours * 60);
int minutes = (int) remainingDuration;
return format(days, hours, minutes, isNegative);
}
private static String format(int days, int hours, int minutes, boolean isNegative) {
StringBuilder message = new StringBuilder();
if (days > 0) {
message.append(String.format(DAYS_FORMAT, isNegative ? (-1 * days) : days));
}
if (displayHours(days, hours)) {
addSpaceIfNeeded(message);
message.append(String.format(HOURS_FORMAT, isNegative && message.length() == 0 ? (-1 * hours) : hours));
}
if (displayMinutes(days, hours, minutes)) {
addSpaceIfNeeded(message);
message.append(String.format(MINUTES_FORMAT, isNegative && message.length() == 0 ? (-1 * minutes) : minutes));
}
return message.toString();
}
private static boolean displayHours(int days, int hours) {
return hours > 0 && days < 10;
}
private static boolean displayMinutes(int days, int hours, int minutes) {
return minutes > 0 && hours < 10 && days == 0;
}
private static void addSpaceIfNeeded(StringBuilder message) {
if (message.length() > 0) {
message.append(" ");
}
}
}