org.sonarsource.scanner.api.internal.BootstrapIndexDownloader Maven / Gradle / Ivy
/*
* SonarQube Scanner API
* Copyright (C) 2011-2021 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.sonarsource.scanner.api.internal;
import java.util.ArrayList;
import java.util.Collection;
import org.sonarsource.scanner.api.internal.cache.Logger;
class BootstrapIndexDownloader {
private final ServerConnection conn;
private final Logger logger;
BootstrapIndexDownloader(ServerConnection conn, Logger logger) {
this.conn = conn;
this.logger = logger;
}
Collection getIndex() {
String index;
try {
logger.debug("Get bootstrap index...");
index = conn.downloadString("/batch/index");
logger.debug("Get bootstrap completed");
} catch (Exception e) {
throw new IllegalStateException("Fail to get bootstrap index from server", e);
}
return parse(index);
}
private static Collection parse(String index) {
Collection entries = new ArrayList<>();
String[] lines = index.split("[\r\n]+");
for (String line : lines) {
try {
line = line.trim();
String[] libAndHash = line.split("\\|");
String filename = libAndHash[0];
String hash = libAndHash[1];
entries.add(new JarEntry(filename, hash));
} catch (Exception e) {
throw new IllegalStateException("Fail to parse entry in bootstrap index: " + line);
}
}
return entries;
}
static class JarEntry {
private String filename;
private String hash;
JarEntry(String filename, String hash) {
this.filename = filename;
this.hash = hash;
}
public String getFilename() {
return filename;
}
public String getHash() {
return hash;
}
}
}