org.uberfire.java.nio.fs.jgit.util.commands.DiffBranches.java Source code

Java tutorial

Introduction

Here is the source code for org.uberfire.java.nio.fs.jgit.util.commands.DiffBranches.java

Source

/*
 * 2016 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.uberfire.java.nio.fs.jgit.util.commands;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import org.eclipse.jgit.diff.DiffEntry;
import org.eclipse.jgit.diff.DiffFormatter;
import org.eclipse.jgit.diff.Edit;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.ObjectLoader;
import org.eclipse.jgit.patch.FileHeader;
import org.uberfire.java.nio.base.FileDiff;
import org.uberfire.java.nio.fs.jgit.util.Git;
import org.uberfire.java.nio.fs.jgit.util.exceptions.GitException;

import static org.uberfire.commons.validation.PortablePreconditions.checkNotEmpty;
import static org.uberfire.commons.validation.PortablePreconditions.checkNotNull;

/**
 * Implements the Git Diff command between branches for bare repositories.
 * It needs the repository, and the two branches from that repository you want
 * to diff.
 * It returns a list of DiffFile with differences between branches.
 */
public class DiffBranches {

    private final Git git;
    private final String branchA;
    private final String branchB;

    public DiffBranches(Git git, String branchA, String branchB) {
        this.git = checkNotNull("git", git);
        this.branchA = checkNotEmpty("branchA", branchA);
        this.branchB = checkNotEmpty("branchB", branchB);
    }

    public List<FileDiff> execute() {
        final List<FileDiff> diffs = new ArrayList<>();

        final List<DiffEntry> result = git.listDiffs(git.getTreeFromRef(this.branchA),
                git.getTreeFromRef(this.branchB));

        final DiffFormatter formatter = createFormatter();

        result.forEach(elem -> {
            final FileHeader header = getFileHeader(formatter, elem);
            header.toEditList().forEach(edit -> diffs.add(createFileDiff(elem, header, edit)));
        });

        return diffs;
    }

    private FileHeader getFileHeader(final DiffFormatter formatter, final DiffEntry elem) {
        try {
            return formatter.toFileHeader(elem);
        } catch (IOException e) {
            throw new GitException("A problem occurred when trying to obtain diffs between files", e);
        }
    }

    private DiffFormatter createFormatter() {

        OutputStream outputStream = new ByteArrayOutputStream();
        DiffFormatter formatter = new DiffFormatter(outputStream);
        formatter.setRepository(git.getRepository());
        return formatter;
    }

    private FileDiff createFileDiff(final DiffEntry elem, final FileHeader header, final Edit edit) {
        try {
            final String changeType = header.getChangeType().toString();
            final int startA = edit.getBeginA();
            final int endA = edit.getEndA();
            final int startB = edit.getBeginB();
            final int endB = edit.getEndB();

            String pathA = header.getOldPath();
            String pathB = header.getNewPath();

            final List<String> linesA = getLines(elem.getOldId().toObjectId(), startA, endA);
            final List<String> linesB = getLines(elem.getNewId().toObjectId(), startB, endB);

            return new FileDiff(pathA, pathB, startA, endA, startB, endB, changeType, linesA, linesB);
        } catch (IOException e) {
            throw new GitException("A problem occurred when trying to obtain diffs between files", e);
        }
    }

    private List<String> getLines(final ObjectId id, final int fromStart, final int fromEnd) throws IOException {
        List<String> lines = new ArrayList<>();
        if (!id.equals(ObjectId.zeroId())) {
            final ByteArrayOutputStream stream = new ByteArrayOutputStream();
            final ObjectLoader loader = git.getRepository().open(id);
            loader.copyTo(stream);
            final String content = stream.toString();
            final List<String> filteredLines = Arrays.asList(content.split("\n"));
            lines = filteredLines.subList(fromStart, fromEnd);
        }
        return lines;
    }
}