| | |
| | | return null;
|
| | | }
|
| | | }
|
| | | |
| | |
|
| | | /**
|
| | | * Encapsulates the output of a diff. |
| | | * Encapsulates the output of a diff.
|
| | | */
|
| | | public static class DiffOutput implements Serializable {
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | |
|
| | | public final DiffOutputType type;
|
| | | public final String content;
|
| | | public final DiffStat stat;
|
| | | |
| | |
|
| | | DiffOutput(DiffOutputType type, String content, DiffStat stat) {
|
| | | this.type = type;
|
| | | this.content = content;
|
| | | this.stat = stat;
|
| | | }
|
| | | |
| | |
|
| | | public PathChangeModel getPath(String path) {
|
| | | if (stat == null) {
|
| | | return null;
|
| | |
| | | public static class DiffStat implements Serializable {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | |
|
| | | public final List<PathChangeModel> paths = new ArrayList<PathChangeModel>();
|
| | | |
| | |
|
| | | private final String commitId;
|
| | | |
| | |
|
| | | public DiffStat(String commitId) {
|
| | | this.commitId = commitId;
|
| | | }
|
| | | |
| | |
|
| | | public PathChangeModel addPath(DiffEntry entry) {
|
| | | PathChangeModel pcm = PathChangeModel.from(entry, commitId);
|
| | | paths.add(pcm);
|
| | |
| | | }
|
| | | return val;
|
| | | }
|
| | | |
| | |
|
| | | public PathChangeModel getPath(String path) {
|
| | | PathChangeModel stat = null;
|
| | | for (PathChangeModel p : paths) {
|
| | |
| | | }
|
| | | }
|
| | | return stat;
|
| | | } |
| | | }
|
| | |
|
| | | @Override
|
| | | public String toString() {
|
| | |
| | | return sb.toString();
|
| | | }
|
| | | }
|
| | | |
| | |
|
| | | public static class NormalizedDiffStat implements Serializable {
|
| | | |
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | |
|
| | | public final int insertions;
|
| | | public final int deletions;
|
| | | public final int blanks;
|
| | | |
| | |
|
| | | NormalizedDiffStat(int insertions, int deletions, int blanks) {
|
| | | this.insertions = insertions;
|
| | | this.deletions = deletions;
|
| | |
| | | } catch (Throwable t) {
|
| | | LOGGER.error("failed to generate commit diff!", t);
|
| | | }
|
| | | |
| | |
|
| | | return new DiffOutput(outputType, diff, stat);
|
| | | }
|
| | |
|
| | |
| | | }
|
| | | return lines;
|
| | | }
|
| | | |
| | |
|
| | | /**
|
| | | * Normalizes a diffstat to an N-segment display.
|
| | | * |
| | | *
|
| | | * @params segments
|
| | | * @param insertions
|
| | | * @param deletions
|
| | |
| | | sd = segments - si;
|
| | | sb = 0;
|
| | | }
|
| | | |
| | |
|
| | | return new NormalizedDiffStat(si, sd, sb);
|
| | | }
|
| | | }
|