]> source.dussan.org Git - sonarqube.git/blob
9a456cf6c76ab0a0ca4a883f597d7e7555ff53ab
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2020 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.ce.task.projectanalysis.filemove;
21
22 import java.util.List;
23 import java.util.Optional;
24 import java.util.function.Supplier;
25
26 import static java.util.Collections.emptyList;
27 import static java.util.Objects.requireNonNull;
28
29 public interface FileSimilarity {
30
31   interface File {
32     String getPath();
33
34     List<String> getLineHashes();
35
36     int getLineCount();
37   }
38
39   final class FileImpl implements File {
40     private final String path;
41     private final List<String> lineHashes;
42     private final int lineCount;
43
44     FileImpl(String path, List<String> lineHashes) {
45       this.path = requireNonNull(path, "path can not be null");
46       this.lineHashes = requireNonNull(lineHashes, "lineHashes can not be null");
47       this.lineCount = lineHashes.size();
48     }
49
50     public String getPath() {
51       return path;
52     }
53
54     /**
55      * List of hash of each line. An empty list is returned
56      * if file content is empty.
57      */
58     public List<String> getLineHashes() {
59       return lineHashes;
60     }
61
62     public int getLineCount() {
63       return lineCount;
64     }
65   }
66
67   final class LazyFileImpl implements File {
68     private final String path;
69     private final Supplier<List<String>> supplier;
70     private final int lineCount;
71     private List<String> lineHashes;
72
73     LazyFileImpl(String path, Supplier<List<String>> supplier, int lineCount) {
74       this.path = requireNonNull(path, "path can not be null");
75       this.supplier = requireNonNull(supplier, "supplier can not be null");
76       this.lineCount = lineCount;
77     }
78
79     public String getPath() {
80       return path;
81     }
82
83     /**
84      * List of hash of each line. An empty list is returned
85      * if file content is empty.
86      */
87     public List<String> getLineHashes() {
88       ensureSupplierCalled();
89       return lineHashes;
90     }
91
92     private void ensureSupplierCalled() {
93       if (lineHashes == null) {
94         lineHashes = Optional.ofNullable(supplier.get()).orElse(emptyList());
95       }
96     }
97
98     public int getLineCount() {
99       return lineCount;
100     }
101   }
102
103   int score(File file1, File file2);
104 }