Merge remote-tracking branch 'airsonic/pr/919'

This commit is contained in:
Andrew DeMaria
2019-03-31 20:01:31 -04:00
25 changed files with 46 additions and 74 deletions
@@ -73,7 +73,7 @@ public class TagService {
Integer trackNumber = null;
if (track != null) {
try {
trackNumber = new Integer(track);
trackNumber = Integer.valueOf(track);
} catch (NumberFormatException x) {
LOG.warn("Illegal track number: " + track, x);
}
@@ -82,7 +82,7 @@ public class TagService {
Integer yearNumber = null;
if (year != null) {
try {
yearNumber = new Integer(year);
yearNumber = Integer.valueOf(year);
} catch (NumberFormatException x) {
LOG.warn("Illegal year: " + year, x);
}
@@ -295,7 +295,7 @@ public class UserSettingsCommand {
isSettingsRole = user != null && user.isSettingsRole();
isShareRole = user != null && user.isShareRole();
isLdapAuthenticated = user != null && user.isLdapAuthenticated();
setNewUser(false);
isNewUser = false;
}
}
@@ -368,9 +368,8 @@ public class DownloadController implements LastModified {
*/
private long computeCrc(File file) throws IOException {
CRC32 crc = new CRC32();
InputStream in = new FileInputStream(file);
try {
try (InputStream in = new FileInputStream(file)) {
byte[] buf = new byte[8192];
int n = in.read(buf);
@@ -379,8 +378,6 @@ public class DownloadController implements LastModified {
n = in.read(buf);
}
} finally {
in.close();
}
return crc.getValue();
@@ -106,8 +106,9 @@ public class PlayerSettingsController {
command.setAdmin(user.isAdminRole());
command.setJavaJukeboxMixers(Arrays.stream(AudioSystemUtils.listAllMixers()).map(info -> info.getName()).toArray(String[]::new));
command.setJavaJukeboxMixer(player.getJavaJukeboxMixer());
if (player != null) {
command.setJavaJukeboxMixer(player.getJavaJukeboxMixer());
}
model.addAttribute("command",command);
}
@@ -166,9 +166,7 @@ public class UploadController {
private void unzip(File file, List<File> unzippedFiles) throws Exception {
LOG.info("Unzipping " + file);
ZipFile zipFile = new ZipFile(file);
try {
try (ZipFile zipFile = new ZipFile(file)) {
Enumeration<?> entries = zipFile.entries();
@@ -210,8 +208,6 @@ public class UploadController {
zipFile.close();
file.delete();
} finally {
zipFile.close();
}
}
@@ -24,6 +24,7 @@ import java.text.CollationKey;
import java.text.Collator;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
/**
* A music index is a mapping from an index string to a list of prefixes. A complete index consists of a list of
@@ -99,7 +100,7 @@ public class MusicIndex implements Serializable {
final MusicIndex musicIndex = (MusicIndex) o;
if (index != null ? !index.equals(musicIndex.index) : musicIndex.index != null) {
if (!Objects.equals(index, musicIndex.index)) {
return false;
}
@@ -215,9 +215,7 @@ public class PlayQueue {
}
files.remove(index);
if (index != -1) {
this.index = Math.max(0, Math.min(this.index, size() - 1));
}
this.index = Math.max(0, Math.min(this.index, size() - 1));
}
/**
@@ -85,7 +85,7 @@ public enum TranscodeScheme {
if (this == OFF) {
return "No limit";
}
return "" + getMaxBitRate() + " Kbps";
return getMaxBitRate() + " Kbps";
}
/**
@@ -21,6 +21,8 @@ package org.airsonic.player.domain;
import org.airsonic.player.util.StringUtil;
import java.util.Objects;
/**
* Contains the configuration for a transcoding, i.e., a specification of how a given media format
* should be converted to another.
@@ -213,7 +215,7 @@ public class Transcoding {
}
Transcoding that = (Transcoding) o;
return !(id != null ? !id.equals(that.id) : that.id != null);
return Objects.equals(id, that.id);
}
public int hashCode() {
@@ -234,8 +234,8 @@ public class TransferStatus {
this.active = active;
if (active) {
setBytesSkipped(0L);
setBytesTotal(0L);
bytesSkipped = 0L;
bytesTotal = 0L;
setBytesTransfered(0L);
} else {
createSample(getBytesTransfered(), true);
@@ -281,10 +281,9 @@ public class TransferStatus {
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("TransferStatus-").append(hashCode()).append(" [player: ").append(player.getId()).append(", file: ");
builder.append(file).append(", terminated: ").append(terminated).append(", active: ").append(active).append("]");
return builder.toString();
String builder = "TransferStatus-" + hashCode() + " [player: " + player.getId() + ", file: " +
file + ", terminated: " + terminated + ", active: " + active + "]";
return builder;
}
/**
@@ -206,7 +206,7 @@ public class User {
@Override
public String toString() {
StringBuffer result = new StringBuffer(username);
StringBuilder result = new StringBuilder(username);
if (isAdminRole) {
result.append(" [admin]");
@@ -56,7 +56,7 @@ public class TranscodeInputStream extends InputStream {
public TranscodeInputStream(ProcessBuilder processBuilder, final InputStream in, File tmpFile) throws IOException {
this.tmpFile = tmpFile;
StringBuffer buf = new StringBuffer("Starting transcoder: ");
StringBuilder buf = new StringBuilder("Starting transcoder: ");
for (String s : processBuilder.command()) {
buf.append('[').append(s).append("] ");
}
@@ -49,7 +49,7 @@ public class MetricsManager {
}
}
}
return metricsActivatedByConfiguration.booleanValue();
return metricsActivatedByConfiguration;
}
/**
@@ -183,9 +183,8 @@ public class LastFmService {
*/
public List<MediaFile> getSimilarSongs(org.airsonic.player.domain.Artist artist, int count,
List<MusicFolder> musicFolders) throws IOException {
List<MediaFile> similarSongs = new ArrayList<MediaFile>();
similarSongs.addAll(mediaFileDao.getSongsByArtist(artist.getName(), 0, 1000));
List<MediaFile> similarSongs = new ArrayList<MediaFile>(mediaFileDao.getSongsByArtist(artist.getName(), 0, 1000));
for (org.airsonic.player.domain.Artist similarArtist : getSimilarArtists(artist, 100, false, musicFolders)) {
similarSongs.addAll(mediaFileDao.getSongsByArtist(similarArtist.getName(), 0, 1000));
}
@@ -347,10 +347,6 @@ public class MediaFileService {
/**
* Returns random songs matching search criteria.
*
* @param criteria Random search criteria.
* @param count Max number of songs to return.
* @return Random songs
* @see SearchService.getRandomSongs
*/
public List<MediaFile> getRandomSongs(RandomSearchCriteria criteria, String username) {
return mediaFileDao.getRandomSongs(criteria, username);
@@ -265,13 +265,7 @@ public class MusicIndexService {
indexB = Integer.MAX_VALUE;
}
if (indexA < indexB) {
return -1;
}
if (indexA > indexB) {
return 1;
}
return 0;
return Integer.compare(indexA, indexB);
}
}
}
@@ -450,7 +450,7 @@ public class PodcastService {
if (getEpisodeByUrl(url) == null) {
Long length = null;
try {
length = new Long(enclosure.getAttributeValue("length"));
length = Long.valueOf(enclosure.getAttributeValue("length"));
} catch (Exception x) {
LOG.warn("Failed to parse enclosure length.", x);
}
@@ -470,13 +470,7 @@ public class PodcastService {
long timeA = a.getPublishDate() == null ? 0L : a.getPublishDate().getTime();
long timeB = b.getPublishDate() == null ? 0L : b.getPublishDate().getTime();
if (timeA < timeB) {
return 1;
}
if (timeA > timeB) {
return -1;
}
return 0;
return Long.compare(timeB, timeA);
}
});
@@ -96,8 +96,8 @@ public class SecurityService implements UserDetailsService {
List<GrantedAuthority> authorities = new ArrayList<>();
authorities.add(new SimpleGrantedAuthority("IS_AUTHENTICATED_ANONYMOUSLY"));
authorities.add(new SimpleGrantedAuthority("ROLE_USER"));
for (int i = 0; i < roles.length; i++) {
authorities.add(new SimpleGrantedAuthority("ROLE_" + roles[i].toUpperCase()));
for (String role : roles) {
authorities.add(new SimpleGrantedAuthority("ROLE_" + role.toUpperCase()));
}
return authorities;
}
@@ -606,7 +606,7 @@ public class SettingsService {
* @param limit The download bitrate limit in Kbit/s. Zero if unlimited.
*/
public void setDownloadBitrateLimit(long limit) {
setProperty(KEY_DOWNLOAD_BITRATE_LIMIT, "" + limit);
setProperty(KEY_DOWNLOAD_BITRATE_LIMIT, String.valueOf(limit));
}
/**
@@ -464,7 +464,7 @@ public class SonosService implements SonosSoap {
if (StringUtils.isNumeric(part)) {
result.add(Integer.parseInt(part));
} else {
int dashIndex = part.indexOf("-");
int dashIndex = part.indexOf('-');
int from = Integer.parseInt(part.substring(0, dashIndex));
int to = Integer.parseInt(part.substring(dashIndex + 1));
for (int i = from; i <= to; i++) {
@@ -161,7 +161,7 @@ public class JaudiotaggerParser extends MetaDataParser {
Integer result = null;
try {
result = new Integer(trackNumber);
result = Integer.valueOf(trackNumber);
} catch (NumberFormatException x) {
Matcher matcher = TRACK_NUMBER_PATTERN.matcher(trackNumber);
if (matcher.matches()) {
@@ -187,7 +187,7 @@ public class JaudiotaggerParser extends MetaDataParser {
Integer result = null;
try {
result = new Integer(year);
result = Integer.valueOf(year);
} catch (NumberFormatException x) {
Matcher matcher = YEAR_NUMBER_PATTERN.matcher(year);
if (matcher.matches()) {
@@ -118,9 +118,7 @@ public class SonosHelper {
List<MediaFile> albums = searchService.getRandomAlbums(40, musicFolders);
List<MediaFile> songs = new ArrayList<MediaFile>();
for (MediaFile album : albums) {
for (MediaFile file : filterMusic(mediaFileService.getChildrenOf(album, true, false, false))) {
songs.add(file);
}
songs.addAll(filterMusic(mediaFileService.getChildrenOf(album, true, false, false)));
}
Collections.shuffle(songs);
songs = songs.subList(0, Math.min(count, songs.size()));
@@ -88,7 +88,7 @@ public class UrlTag extends BodyTagSupport {
private String formatUrl() throws JspException {
String baseUrl = UrlSupport.resolveUrl(value, null, pageContext);
StringBuffer result = new StringBuffer();
StringBuilder result = new StringBuilder();
result.append(baseUrl);
if (!parameters.isEmpty()) {
result.append('?');
@@ -30,10 +30,7 @@ import java.net.URLDecoder;
import java.net.URLEncoder;
import java.security.MessageDigest;
import java.text.*;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Locale;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@@ -327,7 +324,7 @@ public final class StringUtil {
* @return Whether a and b are equal, or both null.
*/
public static boolean isEqual(Object a, Object b) {
return a == null ? b == null : a.equals(b);
return Objects.equals(a, b);
}
/**