diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-03-25 09:36:09 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-03-25 10:40:53 +0100 |
commit | 5869fc40c78cd2e1b7b29a7d74670c0e5a6c1afa (patch) | |
tree | 2ae4de940f48371dfd4c56aabed179a089f67ec6 /sonar-scanner-protocol | |
parent | 6bc55b17ebd87802cb9b55d5b6625e1a935f3909 (diff) | |
download | sonarqube-5869fc40c78cd2e1b7b29a7d74670c0e5a6c1afa.tar.gz sonarqube-5869fc40c78cd2e1b7b29a7d74670c0e5a6c1afa.zip |
Revert "SONAR-6941 Partition files of scanner report in different folders"
This reverts commit 0417484bef1e4bfefbe7dc8a7a5c9a1a105697af.
Diffstat (limited to 'sonar-scanner-protocol')
2 files changed, 5 insertions, 31 deletions
diff --git a/sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/output/FileStructure.java b/sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/output/FileStructure.java index 551ed3ea4dc..c4d3197cb43 100644 --- a/sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/output/FileStructure.java +++ b/sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/output/FileStructure.java @@ -20,10 +20,6 @@ package org.sonar.scanner.protocol.output; import java.io.File; -import java.io.IOException; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; /** * Structure of files in the zipped report @@ -75,30 +71,8 @@ public class FileStructure { return new File(dir, "activerules.pb"); } - /** - * Too many files in the same folder is a problem. We need to partition the report - * by putting component specific files in subdirectories. - * The partitionning algorithm is very basic: - * - Breadth-first to not generate deep folder for small projects - * - easy to understand - */ - public static Path getSubDirFor(int componentRef) { - String componentRefAsStr = String.valueOf(componentRef); - Path result = Paths.get(""); - for (char c : componentRefAsStr.toCharArray()) { - result = result.resolve(String.valueOf(c)); - } - return result; - } - public File fileFor(Domain domain, int componentRef) { - Path parent = dir.toPath().resolve(getSubDirFor(componentRef)); - try { - Files.createDirectories(parent); - } catch (IOException e) { - throw new IllegalStateException("Unable to create subdirectory for component " + componentRef, e); - } - return parent.resolve(domain.filePrefix + componentRef + domain.fileSuffix).toFile(); + return new File(dir, domain.filePrefix + componentRef + domain.fileSuffix); } } diff --git a/sonar-scanner-protocol/src/test/java/org/sonar/scanner/protocol/output/FileStructureTest.java b/sonar-scanner-protocol/src/test/java/org/sonar/scanner/protocol/output/FileStructureTest.java index 2a0890bace8..69d5266cf50 100644 --- a/sonar-scanner-protocol/src/test/java/org/sonar/scanner/protocol/output/FileStructureTest.java +++ b/sonar-scanner-protocol/src/test/java/org/sonar/scanner/protocol/output/FileStructureTest.java @@ -19,11 +19,12 @@ */ package org.sonar.scanner.protocol.output; -import java.io.File; import org.apache.commons.io.FileUtils; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; +import org.sonar.scanner.protocol.output.FileStructure; +import java.io.File; import static org.assertj.core.api.Assertions.assertThat; import static org.junit.Assert.fail; @@ -61,8 +62,8 @@ public class FileStructureTest { public void locate_files() throws Exception { File dir = temp.newFolder(); FileUtils.write(new File(dir, "metadata.pb"), "metadata content"); - FileUtils.write(new File(dir, "3/issues-3.pb"), "issues of component 3"); - FileUtils.write(new File(dir, "4/2/component-42.pb"), "details of component 42"); + FileUtils.write(new File(dir, "issues-3.pb"), "issues of component 3"); + FileUtils.write(new File(dir, "component-42.pb"), "details of component 42"); FileStructure structure = new FileStructure(dir); assertThat(structure.metadataFile()).exists().isFile(); @@ -70,5 +71,4 @@ public class FileStructureTest { assertThat(structure.fileFor(FileStructure.Domain.ISSUES, 3)).exists().isFile(); assertThat(structure.fileFor(FileStructure.Domain.ISSUES, 42)).doesNotExist(); } - } |