]> source.dussan.org Git - sonarqube.git/blob
b281b86dcef1c76a5d9545fd0fccf1566c825d0b
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
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.
10  *
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.
15  *
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.
19  */
20 package org.sonar.server.computation.task.projectanalysis.source;
21
22 import java.util.HashMap;
23 import java.util.Map;
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;
28
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;
32
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";
35
36   private final SourceLinesRepository sourceLinesRepository;
37   private final Map<String, String> rawSourceHashesByKey = new HashMap<>();
38
39   public SourceHashRepositoryImpl(SourceLinesRepository sourceLinesRepository) {
40     this.sourceLinesRepository = sourceLinesRepository;
41   }
42
43   @Override
44   public String getRawSourceHash(Component file) {
45     checkComponentArgument(file);
46     if (rawSourceHashesByKey.containsKey(file.getKey())) {
47       return checkSourceHash(file.getKey(), rawSourceHashesByKey.get(file.getKey()));
48     } else {
49       String newSourceHash = computeRawSourceHash(file);
50       rawSourceHashesByKey.put(file.getKey(), newSourceHash);
51       return checkSourceHash(file.getKey(), newSourceHash);
52     }
53   }
54
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());
58   }
59
60   private String computeRawSourceHash(Component file) {
61     SourceHashComputer sourceHashComputer = new SourceHashComputer();
62     CloseableIterator<String> linesIterator = sourceLinesRepository.readLines(file);
63     try {
64       while (linesIterator.hasNext()) {
65         sourceHashComputer.addLine(linesIterator.next(), linesIterator.hasNext());
66       }
67       return sourceHashComputer.getHash();
68     } finally {
69       linesIterator.close();
70     }
71   }
72
73   private static String checkSourceHash(String fileKey, @Nullable String newSourceHash) {
74     checkState(newSourceHash != null, SOURCE_OR_HASH_FAILURE_ERROR_MSG, fileKey);
75     return newSourceHash;
76   }
77
78 }