3 * Copyright (C) 2009-2017 SonarSource SA
4 * mailto:info AT sonarsource DOT com
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 package org.sonar.server.computation.task.projectanalysis.source;
22 import java.util.HashMap;
24 import javax.annotation.Nullable;
25 import org.sonar.core.hash.SourceHashComputer;
26 import org.sonar.core.util.CloseableIterator;
27 import org.sonar.server.computation.task.projectanalysis.component.Component;
29 import static com.google.common.base.Preconditions.checkArgument;
30 import static com.google.common.base.Preconditions.checkState;
31 import static java.util.Objects.requireNonNull;
33 public class SourceHashRepositoryImpl implements SourceHashRepository {
34 private static final String SOURCE_OR_HASH_FAILURE_ERROR_MSG = "Failed to read source and compute hashes for component %s";
36 private final SourceLinesRepository sourceLinesRepository;
37 private final Map<String, String> rawSourceHashesByKey = new HashMap<>();
39 public SourceHashRepositoryImpl(SourceLinesRepository sourceLinesRepository) {
40 this.sourceLinesRepository = sourceLinesRepository;
44 public String getRawSourceHash(Component file) {
45 checkComponentArgument(file);
46 if (rawSourceHashesByKey.containsKey(file.getKey())) {
47 return checkSourceHash(file.getKey(), rawSourceHashesByKey.get(file.getKey()));
49 String newSourceHash = computeRawSourceHash(file);
50 rawSourceHashesByKey.put(file.getKey(), newSourceHash);
51 return checkSourceHash(file.getKey(), newSourceHash);
55 private static void checkComponentArgument(Component file) {
56 requireNonNull(file, "Specified component can not be null");
57 checkArgument(file.getType() == Component.Type.FILE, "File source information can only be retrieved from FILE components (got %s)", file.getType());
60 private String computeRawSourceHash(Component file) {
61 SourceHashComputer sourceHashComputer = new SourceHashComputer();
62 CloseableIterator<String> linesIterator = sourceLinesRepository.readLines(file);
64 while (linesIterator.hasNext()) {
65 sourceHashComputer.addLine(linesIterator.next(), linesIterator.hasNext());
67 return sourceHashComputer.getHash();
69 linesIterator.close();
73 private static String checkSourceHash(String fileKey, @Nullable String newSourceHash) {
74 checkState(newSourceHash != null, SOURCE_OR_HASH_FAILURE_ERROR_MSG, fileKey);