Browse Source

DiffFormatter: Support setting a reader without a repo

Change-Id: I575cdb9c0a9a341b79ef5e3c7a35e68cde142540
tags/v4.5.0.201609210915-r
Dave Borowitz 7 years ago
parent
commit
d6fe52e914

+ 1
- 1
org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties View File

pushNotPermitted=push not permitted pushNotPermitted=push not permitted
pushOptionsNotSupported=Push options not supported; received {0} pushOptionsNotSupported=Push options not supported; received {0}
rawLogMessageDoesNotParseAsLogEntry=Raw log message does not parse as log entry rawLogMessageDoesNotParseAsLogEntry=Raw log message does not parse as log entry
readerIsRequired=Reader is required
readingObjectsFromLocalRepositoryFailed=reading objects from local repository failed: {0} readingObjectsFromLocalRepositoryFailed=reading objects from local repository failed: {0}
readTimedOut=Read timed out after {0} ms readTimedOut=Read timed out after {0} ms
receivePackObjectTooLarge1=Object too large, rejecting the pack. Max object size limit is {0} bytes. receivePackObjectTooLarge1=Object too large, rejecting the pack. Max object size limit is {0} bytes.
renamesRejoiningModifies=Rejoining modified file pairs renamesRejoiningModifies=Rejoining modified file pairs
repositoryAlreadyExists=Repository already exists: {0} repositoryAlreadyExists=Repository already exists: {0}
repositoryConfigFileInvalid=Repository config file {0} invalid {1} repositoryConfigFileInvalid=Repository config file {0} invalid {1}
repositoryIsRequired=Repository is required.
repositoryNotFound=repository not found: {0} repositoryNotFound=repository not found: {0}
repositoryState_applyMailbox=Apply mailbox repositoryState_applyMailbox=Apply mailbox
repositoryState_bare=Bare repositoryState_bare=Bare

+ 40
- 23
org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java View File

import org.eclipse.jgit.internal.JGitText; import org.eclipse.jgit.internal.JGitText;
import org.eclipse.jgit.lib.AbbreviatedObjectId; import org.eclipse.jgit.lib.AbbreviatedObjectId;
import org.eclipse.jgit.lib.AnyObjectId; import org.eclipse.jgit.lib.AnyObjectId;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.ConfigConstants; import org.eclipse.jgit.lib.ConfigConstants;
import org.eclipse.jgit.lib.Constants; import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.FileMode; import org.eclipse.jgit.lib.FileMode;


private final OutputStream out; private final OutputStream out;


private Repository db;

private ObjectReader reader; private ObjectReader reader;


private boolean closeReader;

private DiffConfig diffCfg; private DiffConfig diffCfg;


private int context = 3; private int context = 3;
* source repository holding referenced objects. * source repository holding referenced objects.
*/ */
public void setRepository(Repository repository) { public void setRepository(Repository repository) {
if (reader != null)
reader.close();
setReader(repository.newObjectReader(), repository.getConfig(), true);
}


db = repository;
reader = db.newObjectReader();
diffCfg = db.getConfig().get(DiffConfig.KEY);
/**
* Set the repository the formatter can load object contents from.
*
* @param reader
* source reader holding referenced objects. Caller is responsible
* for closing the reader.
* @param cfg
* config specifying diff algorithm and rename detection options.
* @since 4.5
*/
public void setReader(ObjectReader reader, Config cfg) {
setReader(reader, cfg, false);
}

private void setReader(ObjectReader reader, Config cfg, boolean closeReader) {
close();
this.closeReader = closeReader;
this.reader = reader;
this.diffCfg = cfg.get(DiffConfig.KEY);


ContentSource cs = ContentSource.create(reader); ContentSource cs = ContentSource.create(reader);
source = new ContentSource.Pair(cs, cs); source = new ContentSource.Pair(cs, cs);


DiffConfig dc = db.getConfig().get(DiffConfig.KEY);
if (dc.isNoPrefix()) {
if (diffCfg.isNoPrefix()) {
setOldPrefix(""); //$NON-NLS-1$ setOldPrefix(""); //$NON-NLS-1$
setNewPrefix(""); //$NON-NLS-1$ setNewPrefix(""); //$NON-NLS-1$
} }
setDetectRenames(dc.isRenameDetectionEnabled());
setDetectRenames(diffCfg.isRenameDetectionEnabled());


diffAlgorithm = DiffAlgorithm.getAlgorithm(db.getConfig().getEnum(
diffAlgorithm = DiffAlgorithm.getAlgorithm(cfg.getEnum(
ConfigConstants.CONFIG_DIFF_SECTION, null, ConfigConstants.CONFIG_DIFF_SECTION, null,
ConfigConstants.CONFIG_KEY_ALGORITHM, ConfigConstants.CONFIG_KEY_ALGORITHM,
SupportedAlgorithm.HISTOGRAM)); SupportedAlgorithm.HISTOGRAM));

} }


/** /**
*/ */
public void setDetectRenames(boolean on) { public void setDetectRenames(boolean on) {
if (on && renameDetector == null) { if (on && renameDetector == null) {
assertHaveRepository();
renameDetector = new RenameDetector(db);
assertHaveReader();
renameDetector = new RenameDetector(reader, diffCfg);
} else if (!on) } else if (!on)
renameDetector = null; renameDetector = null;
} }
*/ */
@Override @Override
public void close() { public void close() {
if (reader != null)
if (reader != null && closeReader) {
reader.close(); reader.close();
}
} }


/** /**
*/ */
public List<DiffEntry> scan(AnyObjectId a, AnyObjectId b) public List<DiffEntry> scan(AnyObjectId a, AnyObjectId b)
throws IOException { throws IOException {
assertHaveRepository();
assertHaveReader();


try (RevWalk rw = new RevWalk(reader)) { try (RevWalk rw = new RevWalk(reader)) {
RevTree aTree = a != null ? rw.parseTree(a) : null; RevTree aTree = a != null ? rw.parseTree(a) : null;
* trees cannot be read or file contents cannot be read. * trees cannot be read or file contents cannot be read.
*/ */
public List<DiffEntry> scan(RevTree a, RevTree b) throws IOException { public List<DiffEntry> scan(RevTree a, RevTree b) throws IOException {
assertHaveRepository();
assertHaveReader();


AbstractTreeIterator aIterator = makeIteratorFromTreeOrNull(a); AbstractTreeIterator aIterator = makeIteratorFromTreeOrNull(a);
AbstractTreeIterator bIterator = makeIteratorFromTreeOrNull(b); AbstractTreeIterator bIterator = makeIteratorFromTreeOrNull(b);
*/ */
public List<DiffEntry> scan(AbstractTreeIterator a, AbstractTreeIterator b) public List<DiffEntry> scan(AbstractTreeIterator a, AbstractTreeIterator b)
throws IOException { throws IOException {
assertHaveRepository();
assertHaveReader();


TreeWalk walk = new TreeWalk(reader); TreeWalk walk = new TreeWalk(reader);
walk.addTree(a); walk.addTree(a);
} }


private String format(AbbreviatedObjectId id) { private String format(AbbreviatedObjectId id) {
if (id.isComplete() && db != null) {
if (id.isComplete() && reader != null) {
try { try {
id = reader.abbreviate(id.toObjectId(), abbreviationLength); id = reader.abbreviate(id.toObjectId(), abbreviationLength);
} catch (IOException cannotAbbreviate) { } catch (IOException cannotAbbreviate) {
type = PatchType.UNIFIED; type = PatchType.UNIFIED;


} else { } else {
assertHaveRepository();
assertHaveReader();


byte[] aRaw, bRaw; byte[] aRaw, bRaw;


return diffAlgorithm.diff(comparator, a, b); return diffAlgorithm.diff(comparator, a, b);
} }


private void assertHaveRepository() {
if (db == null)
throw new IllegalStateException(JGitText.get().repositoryIsRequired);
private void assertHaveReader() {
if (reader == null) {
throw new IllegalStateException(JGitText.get().readerIsRequired);
}
} }


private byte[] open(DiffEntry.Side side, DiffEntry entry) private byte[] open(DiffEntry.Side side, DiffEntry entry)

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/JGitText.java View File

/***/ public String pushNotPermitted; /***/ public String pushNotPermitted;
/***/ public String pushOptionsNotSupported; /***/ public String pushOptionsNotSupported;
/***/ public String rawLogMessageDoesNotParseAsLogEntry; /***/ public String rawLogMessageDoesNotParseAsLogEntry;
/***/ public String readerIsRequired;
/***/ public String readingObjectsFromLocalRepositoryFailed; /***/ public String readingObjectsFromLocalRepositoryFailed;
/***/ public String readTimedOut; /***/ public String readTimedOut;
/***/ public String receivePackObjectTooLarge1; /***/ public String receivePackObjectTooLarge1;
/***/ public String renamesRejoiningModifies; /***/ public String renamesRejoiningModifies;
/***/ public String repositoryAlreadyExists; /***/ public String repositoryAlreadyExists;
/***/ public String repositoryConfigFileInvalid; /***/ public String repositoryConfigFileInvalid;
/***/ public String repositoryIsRequired;
/***/ public String repositoryNotFound; /***/ public String repositoryNotFound;
/***/ public String repositoryState_applyMailbox; /***/ public String repositoryState_applyMailbox;
/***/ public String repositoryState_bare; /***/ public String repositoryState_bare;

Loading…
Cancel
Save