Clarify WorkingTreeOptions and filemode usage

To improve runtime performance, caching the WorkingTreeOptions inside
of the Config object using the Config.SectionParser API allows
the WorkingTreeOptions to be accessed more efficiently whenever a
FileTreeIterator is constructed for the Repository.

Instead of passing the filemode handling option into isModified(),
the WorkingTreeIterator should always honor whatever setting has
been configured in this repository, as defined by its own copy of
the WorkingTreeOptions.  This simplifies all of the callers as they
no longer need to lookup core.filemode on their own.

A few locations were changed from always using a hardcoded "true"
on the file mode to passing what is actually configured in the
repository.  This is a behavior change, but corrects what should be
considered to be bugs as the core.filemode variable wasn't always
being used.

Change-Id: Idb176736fa0dc97af372f1d652a94ecc72fb457c
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Shawn O. Pearce 2010-12-07 18:13:36 -08:00
parent c181e1ab8a
commit 11fd0fe03a
10 changed files with 51 additions and 123 deletions

View File

@ -97,7 +97,10 @@ public int parseArguments(final Parameters params) throws CmdLineException {
final String name = params.getParameter(0); final String name = params.getParameter(0);
if (new File(name).isDirectory()) { if (new File(name).isDirectory()) {
setter.addValue(new FileTreeIterator(new File(name), FS.DETECTED, WorkingTreeOptions.createDefaultInstance())); setter.addValue(new FileTreeIterator(
new File(name),
FS.DETECTED,
clp.getRepository().getConfig().get(WorkingTreeOptions.KEY)));
return 1; return 1;
} }

View File

@ -49,10 +49,10 @@
import junit.framework.TestCase; import junit.framework.TestCase;
import org.eclipse.jgit.errors.IncorrectObjectTypeException; import org.eclipse.jgit.errors.IncorrectObjectTypeException;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.Constants; import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.FileMode; import org.eclipse.jgit.lib.FileMode;
import org.eclipse.jgit.lib.ObjectReader; import org.eclipse.jgit.lib.ObjectReader;
import org.eclipse.jgit.lib.CoreConfig.AutoCRLF;
public class AbstractTreeIteratorTest extends TestCase { public class AbstractTreeIteratorTest extends TestCase {
@ -63,7 +63,7 @@ private static String prefix(String path) {
public class FakeTreeIterator extends WorkingTreeIterator { public class FakeTreeIterator extends WorkingTreeIterator {
public FakeTreeIterator(String pathName, FileMode fileMode) { public FakeTreeIterator(String pathName, FileMode fileMode) {
super(prefix(pathName), new WorkingTreeOptions(AutoCRLF.FALSE)); super(prefix(pathName), new Config().get(WorkingTreeOptions.KEY));
mode = fileMode.getBits(); mode = fileMode.getBits();
final int s = pathName.lastIndexOf('/'); final int s = pathName.lastIndexOf('/');

View File

@ -80,7 +80,7 @@ public void testEmptyIfRootIsFile() throws Exception {
final File r = new File(trash, paths[0]); final File r = new File(trash, paths[0]);
assertTrue(r.isFile()); assertTrue(r.isFile());
final FileTreeIterator fti = new FileTreeIterator(r, db.getFS(), final FileTreeIterator fti = new FileTreeIterator(r, db.getFS(),
WorkingTreeOptions.createConfigurationInstance(db.getConfig())); db.getConfig().get(WorkingTreeOptions.KEY));
assertTrue(fti.first()); assertTrue(fti.first());
assertTrue(fti.eof()); assertTrue(fti.eof());
} }
@ -89,7 +89,7 @@ public void testEmptyIfRootDoesNotExist() throws Exception {
final File r = new File(trash, "not-existing-file"); final File r = new File(trash, "not-existing-file");
assertFalse(r.exists()); assertFalse(r.exists());
final FileTreeIterator fti = new FileTreeIterator(r, db.getFS(), final FileTreeIterator fti = new FileTreeIterator(r, db.getFS(),
WorkingTreeOptions.createConfigurationInstance(db.getConfig())); db.getConfig().get(WorkingTreeOptions.KEY));
assertTrue(fti.first()); assertTrue(fti.first());
assertTrue(fti.eof()); assertTrue(fti.eof());
} }
@ -101,14 +101,14 @@ public void testEmptyIfRootIsEmpty() throws Exception {
assertTrue(r.isDirectory()); assertTrue(r.isDirectory());
final FileTreeIterator fti = new FileTreeIterator(r, db.getFS(), final FileTreeIterator fti = new FileTreeIterator(r, db.getFS(),
WorkingTreeOptions.createConfigurationInstance(db.getConfig())); db.getConfig().get(WorkingTreeOptions.KEY));
assertTrue(fti.first()); assertTrue(fti.first());
assertTrue(fti.eof()); assertTrue(fti.eof());
} }
public void testSimpleIterate() throws Exception { public void testSimpleIterate() throws Exception {
final FileTreeIterator top = new FileTreeIterator(trash, db.getFS(), final FileTreeIterator top = new FileTreeIterator(trash, db.getFS(),
WorkingTreeOptions.createConfigurationInstance(db.getConfig())); db.getConfig().get(WorkingTreeOptions.KEY));
assertTrue(top.first()); assertTrue(top.first());
assertFalse(top.eof()); assertFalse(top.eof());
@ -157,7 +157,7 @@ public void testSimpleIterate() throws Exception {
public void testComputeFileObjectId() throws Exception { public void testComputeFileObjectId() throws Exception {
final FileTreeIterator top = new FileTreeIterator(trash, db.getFS(), final FileTreeIterator top = new FileTreeIterator(trash, db.getFS(),
WorkingTreeOptions.createConfigurationInstance(db.getConfig())); db.getConfig().get(WorkingTreeOptions.KEY));
final MessageDigest md = Constants.newMessageDigest(); final MessageDigest md = Constants.newMessageDigest();
md.update(Constants.encodeASCII(Constants.TYPE_BLOB)); md.update(Constants.encodeASCII(Constants.TYPE_BLOB));

View File

@ -46,9 +46,9 @@
import java.util.SortedSet; import java.util.SortedSet;
import java.util.TreeSet; import java.util.TreeSet;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.ObjectReader; import org.eclipse.jgit.lib.ObjectReader;
import org.eclipse.jgit.lib.Repository; import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.lib.CoreConfig.AutoCRLF;
import org.eclipse.jgit.util.FS; import org.eclipse.jgit.util.FS;
/** /**
@ -88,7 +88,7 @@ public FileTreeIteratorWithTimeControl(Repository repo,
public FileTreeIteratorWithTimeControl(File f, FS fs, public FileTreeIteratorWithTimeControl(File f, FS fs,
TreeSet<Long> modTimes) { TreeSet<Long> modTimes) {
super(f, fs, new WorkingTreeOptions(AutoCRLF.FALSE)); super(f, fs, new Config().get(WorkingTreeOptions.KEY));
this.modTimes = modTimes; this.modTimes = modTimes;
} }

View File

@ -61,7 +61,6 @@
import org.eclipse.jgit.lib.ObjectId; import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.ObjectLoader; import org.eclipse.jgit.lib.ObjectLoader;
import org.eclipse.jgit.lib.Repository; import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.lib.StoredConfig;
import org.eclipse.jgit.treewalk.AbstractTreeIterator; import org.eclipse.jgit.treewalk.AbstractTreeIterator;
import org.eclipse.jgit.treewalk.CanonicalTreeParser; import org.eclipse.jgit.treewalk.CanonicalTreeParser;
import org.eclipse.jgit.treewalk.EmptyTreeIterator; import org.eclipse.jgit.treewalk.EmptyTreeIterator;
@ -184,9 +183,7 @@ public DirCacheCheckout(Repository repo, ObjectId headCommitTree, DirCache dc,
*/ */
public DirCacheCheckout(Repository repo, ObjectId headCommitTree, public DirCacheCheckout(Repository repo, ObjectId headCommitTree,
DirCache dc, ObjectId mergeCommitTree) throws IOException { DirCache dc, ObjectId mergeCommitTree) throws IOException {
this(repo, headCommitTree, dc, mergeCommitTree, new FileTreeIterator( this(repo, headCommitTree, dc, mergeCommitTree, new FileTreeIterator(repo));
repo.getWorkTree(), repo.getFS(),
WorkingTreeOptions.createDefaultInstance()));
} }
/** /**
@ -224,9 +221,7 @@ public DirCacheCheckout(Repository repo, DirCache dc,
*/ */
public DirCacheCheckout(Repository repo, DirCache dc, public DirCacheCheckout(Repository repo, DirCache dc,
ObjectId mergeCommitTree) throws IOException { ObjectId mergeCommitTree) throws IOException {
this(repo, null, dc, mergeCommitTree, new FileTreeIterator( this(repo, null, dc, mergeCommitTree, new FileTreeIterator(repo));
repo.getWorkTree(), repo.getFS(),
WorkingTreeOptions.createDefaultInstance()));
} }
/** /**
@ -311,7 +306,7 @@ void processEntry(CanonicalTreeParser m, DirCacheBuildIterator i,
if (m != null) { if (m != null) {
if (i == null || f == null || !m.idEqual(i) if (i == null || f == null || !m.idEqual(i)
|| (i.getDirCacheEntry() != null && (f.isModified( || (i.getDirCacheEntry() != null && (f.isModified(
i.getDirCacheEntry(), true, config_filemode()) || i.getDirCacheEntry(), true) ||
i.getDirCacheEntry().getStage() != 0))) { i.getDirCacheEntry().getStage() != 0))) {
update(m.getEntryPathString(), m.getEntryObjectId(), update(m.getEntryPathString(), m.getEntryObjectId(),
m.getEntryFileMode()); m.getEntryFileMode());
@ -391,7 +386,7 @@ public boolean checkout() throws IOException {
file.getParentFile().mkdirs(); file.getParentFile().mkdirs();
file.createNewFile(); file.createNewFile();
DirCacheEntry entry = dc.getEntry(path); DirCacheEntry entry = dc.getEntry(path);
checkoutEntry(repo, file, entry, config_filemode()); checkoutEntry(repo, file, entry);
} }
@ -575,7 +570,7 @@ void processEntry(AbstractTreeIterator h, AbstractTreeIterator m,
case 0xFFD: // 12 13 14 case 0xFFD: // 12 13 14
if (hId.equals(iId)) { if (hId.equals(iId)) {
dce = i.getDirCacheEntry(); dce = i.getDirCacheEntry();
if (f == null || f.isModified(dce, true, config_filemode())) if (f == null || f.isModified(dce, true))
conflict(name, i.getDirCacheEntry(), h, m); conflict(name, i.getDirCacheEntry(), h, m);
else else
remove(name); remove(name);
@ -641,8 +636,7 @@ else if (m == null)
if (m == null || mId.equals(iId)) { if (m == null || mId.equals(iId)) {
if (m==null && walk.isDirectoryFileConflict()) { if (m==null && walk.isDirectoryFileConflict()) {
if (dce != null if (dce != null
&& (f == null || f.isModified(dce, true, && (f == null || f.isModified(dce, true)))
config_filemode())))
conflict(name, i.getDirCacheEntry(), h, m); conflict(name, i.getDirCacheEntry(), h, m);
else else
remove(name); remove(name);
@ -664,7 +658,7 @@ else if (m == null)
*/ */
if (hId.equals(iId)) { if (hId.equals(iId)) {
if (f == null || f.isModified(dce, true, config_filemode())) if (f == null || f.isModified(dce, true))
conflict(name, i.getDirCacheEntry(), h, m); conflict(name, i.getDirCacheEntry(), h, m);
else else
remove(name); remove(name);
@ -674,9 +668,7 @@ else if (m == null)
if (!hId.equals(mId) && !hId.equals(iId) && !mId.equals(iId)) if (!hId.equals(mId) && !hId.equals(iId) && !mId.equals(iId))
conflict(name, i.getDirCacheEntry(), h, m); conflict(name, i.getDirCacheEntry(), h, m);
else if (hId.equals(iId) && !mId.equals(iId)) { else if (hId.equals(iId) && !mId.equals(iId)) {
if (dce != null if (dce != null && (f == null || f.isModified(dce, true)))
&& (f == null || f.isModified(dce, true,
config_filemode())))
conflict(name, i.getDirCacheEntry(), h, m); conflict(name, i.getDirCacheEntry(), h, m);
else else
update(name, mId, m.getEntryFileMode()); update(name, mId, m.getEntryFileMode());
@ -738,19 +730,6 @@ private void update(String path, ObjectId mId, FileMode mode) {
} }
} }
private Boolean filemode;
private boolean config_filemode() {
// TODO: temporary till we can actually set parameters. We need to be
// able to change this for testing.
if (filemode == null) {
StoredConfig config = repo.getConfig();
filemode = Boolean.valueOf(config.getBoolean("core", null,
"filemode", true));
}
return filemode.booleanValue();
}
/** /**
* If <code>true</code>, will scan first to see if it's possible to check * If <code>true</code>, will scan first to see if it's possible to check
* out, otherwise throw {@link CheckoutConflictException}. If * out, otherwise throw {@link CheckoutConflictException}. If
@ -790,8 +769,7 @@ private void cleanUpConflicts() throws CheckoutConflictException {
private boolean isModified(String path) throws CorruptObjectException, IOException { private boolean isModified(String path) throws CorruptObjectException, IOException {
NameConflictTreeWalk tw = new NameConflictTreeWalk(repo); NameConflictTreeWalk tw = new NameConflictTreeWalk(repo);
tw.addTree(new DirCacheIterator(dc)); tw.addTree(new DirCacheIterator(dc));
tw.addTree(new FileTreeIterator(repo.getWorkTree(), repo.getFS(), tw.addTree(new FileTreeIterator(repo));
WorkingTreeOptions.createDefaultInstance()));
tw.setRecursive(true); tw.setRecursive(true);
tw.setFilter(PathFilter.create(path)); tw.setFilter(PathFilter.create(path));
DirCacheIterator dcIt; DirCacheIterator dcIt;
@ -801,8 +779,7 @@ private boolean isModified(String path) throws CorruptObjectException, IOExcepti
wtIt = tw.getTree(1, WorkingTreeIterator.class); wtIt = tw.getTree(1, WorkingTreeIterator.class);
if (dcIt == null || wtIt == null) if (dcIt == null || wtIt == null)
return true; return true;
if (wtIt.isModified(dcIt.getDirCacheEntry(), true, if (wtIt.isModified(dcIt.getDirCacheEntry(), true)) {
config_filemode())) {
return true; return true;
} }
} }
@ -824,12 +801,10 @@ private boolean isModified(String path) throws CorruptObjectException, IOExcepti
* has to exist already * has to exist already
* @param entry * @param entry
* the entry containing new mode and content * the entry containing new mode and content
* @param config_filemode
* whether the mode bits should be handled at all.
* @throws IOException * @throws IOException
*/ */
public static void checkoutEntry(final Repository repo, File f, DirCacheEntry entry, public static void checkoutEntry(final Repository repo, File f,
boolean config_filemode) throws IOException { DirCacheEntry entry) throws IOException {
ObjectLoader ol = repo.open(entry.getObjectId()); ObjectLoader ol = repo.open(entry.getObjectId());
File parentDir = f.getParentFile(); File parentDir = f.getParentFile();
File tmpFile = File.createTempFile("._" + f.getName(), null, parentDir); File tmpFile = File.createTempFile("._" + f.getName(), null, parentDir);
@ -840,7 +815,8 @@ public static void checkoutEntry(final Repository repo, File f, DirCacheEntry en
channel.close(); channel.close();
} }
FS fs = repo.getFS(); FS fs = repo.getFS();
if (config_filemode && fs.supportsExecute()) { WorkingTreeOptions opt = repo.getConfig().get(WorkingTreeOptions.KEY);
if (opt.isFileMode() && fs.supportsExecute()) {
if (FileMode.EXECUTABLE_FILE.equals(entry.getRawMode())) { if (FileMode.EXECUTABLE_FILE.equals(entry.getRawMode())) {
if (!fs.canExecute(tmpFile)) if (!fs.canExecute(tmpFile))
fs.setExecute(tmpFile, true); fs.setExecute(tmpFile, true);

View File

@ -80,16 +80,10 @@ public static enum AutoCRLF {
private final boolean logAllRefUpdates; private final boolean logAllRefUpdates;
private final boolean fileMode;
private final AutoCRLF autoCRLF;
private CoreConfig(final Config rc) { private CoreConfig(final Config rc) {
compression = rc.getInt("core", "compression", DEFAULT_COMPRESSION); compression = rc.getInt("core", "compression", DEFAULT_COMPRESSION);
packIndexVersion = rc.getInt("pack", "indexversion", 2); packIndexVersion = rc.getInt("pack", "indexversion", 2);
logAllRefUpdates = rc.getBoolean("core", "logallrefupdates", true); logAllRefUpdates = rc.getBoolean("core", "logallrefupdates", true);
fileMode = rc.getBoolean("core", "filemode", true);
autoCRLF = rc.getEnum("core", null, "autocrlf", AutoCRLF.FALSE);
} }
/** /**
@ -113,18 +107,4 @@ public int getPackIndexVersion() {
public boolean isLogAllRefUpdates() { public boolean isLogAllRefUpdates() {
return logAllRefUpdates; return logAllRefUpdates;
} }
/**
* @return whether to trust file modes
*/
public boolean isFileMode() {
return fileMode;
}
/**
* @return whether automatic CRLF conversion has been configured
*/
public AutoCRLF getAutoCRLF() {
return autoCRLF;
}
} }

View File

@ -244,7 +244,7 @@ private void checkout() throws NoWorkTreeException, IOException {
createDir(f.getParentFile()); createDir(f.getParentFile());
DirCacheCheckout.checkoutEntry(db, DirCacheCheckout.checkoutEntry(db,
f, f,
entry.getValue(), true); entry.getValue());
} else { } else {
if (!f.delete()) if (!f.delete())
failingPathes.put(entry.getKey(), failingPathes.put(entry.getKey(),
@ -446,8 +446,7 @@ private boolean processEntry(CanonicalTreeParser base,
// is not modified // is not modified
if (work != null if (work != null
&& (!nonTree(work.getEntryRawMode()) || work && (!nonTree(work.getEntryRawMode()) || work
.isModified(index.getDirCacheEntry(), true, .isModified(index.getDirCacheEntry(), true))) {
true))) {
failingPathes.put(tw.getPathString(), failingPathes.put(tw.getPathString(),
MergeFailureReason.DIRTY_WORKTREE); MergeFailureReason.DIRTY_WORKTREE);
return false; return false;

View File

@ -84,8 +84,8 @@ public class FileTreeIterator extends WorkingTreeIterator {
* the repository whose working tree will be scanned. * the repository whose working tree will be scanned.
*/ */
public FileTreeIterator(Repository repo) { public FileTreeIterator(Repository repo) {
this(repo.getWorkTree(), repo.getFS(), WorkingTreeOptions this(repo.getWorkTree(), repo.getFS(),
.createConfigurationInstance(repo.getConfig())); repo.getConfig().get(WorkingTreeOptions.KEY));
initRootIterator(repo); initRootIterator(repo);
} }

View File

@ -540,13 +540,9 @@ protected Entry current() {
* @param forceContentCheck * @param forceContentCheck
* True if the actual file content should be checked if * True if the actual file content should be checked if
* modification time differs. * modification time differs.
* @param checkFilemode
* whether the executable-bit in the filemode should be checked
* to detect modifications
* @return true if content is most likely different. * @return true if content is most likely different.
*/ */
public boolean isModified(DirCacheEntry entry, boolean forceContentCheck, public boolean isModified(DirCacheEntry entry, boolean forceContentCheck) {
boolean checkFilemode) {
if (entry.isAssumeValid()) if (entry.isAssumeValid())
return false; return false;
@ -563,7 +559,7 @@ public boolean isModified(DirCacheEntry entry, boolean forceContentCheck,
// Ignore the executable file bits if checkFilemode tells me to do so. // Ignore the executable file bits if checkFilemode tells me to do so.
// Ignoring is done by setting the bits representing a EXECUTABLE_FILE // Ignoring is done by setting the bits representing a EXECUTABLE_FILE
// to '0' in modeDiff // to '0' in modeDiff
if (!checkFilemode) if (!state.options.isFileMode())
modeDiff &= ~FileMode.EXECUTABLE_FILE.getBits(); modeDiff &= ~FileMode.EXECUTABLE_FILE.getBits();
if (modeDiff != 0) if (modeDiff != 0)
// Report a modification if the modes still (after potentially // Report a modification if the modes still (after potentially

View File

@ -43,59 +43,33 @@
package org.eclipse.jgit.treewalk; package org.eclipse.jgit.treewalk;
import org.eclipse.jgit.lib.Config; import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.CoreConfig; import org.eclipse.jgit.lib.Config.SectionParser;
import org.eclipse.jgit.lib.CoreConfig.AutoCRLF; import org.eclipse.jgit.lib.CoreConfig.AutoCRLF;
/** /** Options used by the {@link WorkingTreeIterator}. */
* Contains options used by the WorkingTreeIterator.
*/
public class WorkingTreeOptions { public class WorkingTreeOptions {
/** Key for {@link Config#get(SectionParser)}. */
/** public static final Config.SectionParser<WorkingTreeOptions> KEY = new SectionParser<WorkingTreeOptions>() {
* Creates default options which reflect the original configuration of Git public WorkingTreeOptions parse(final Config cfg) {
* on Unix systems. return new WorkingTreeOptions(cfg);
*
* @return created working tree options
*/
public static WorkingTreeOptions createDefaultInstance() {
return new WorkingTreeOptions(AutoCRLF.FALSE);
} }
};
/** private final boolean fileMode;
* Creates options based on the specified repository configuration.
*
* @param config
* repository configuration to create options for
*
* @return created working tree options
*/
public static WorkingTreeOptions createConfigurationInstance(Config config) {
return new WorkingTreeOptions(config.get(CoreConfig.KEY).getAutoCRLF());
}
/**
* Indicates whether EOLs of text files should be converted to '\n' before
* calculating the blob ID.
**/
private final AutoCRLF autoCRLF; private final AutoCRLF autoCRLF;
/** private WorkingTreeOptions(final Config rc) {
* Creates new options. fileMode = rc.getBoolean("core", "filemode", true);
* autoCRLF = rc.getEnum("core", null, "autocrlf", AutoCRLF.FALSE);
* @param autoCRLF
* indicates whether EOLs of text files should be converted to
* '\n' before calculating the blob ID.
*/
public WorkingTreeOptions(AutoCRLF autoCRLF) {
this.autoCRLF = autoCRLF;
} }
/** /** @return true if the execute bit on working files should be trusted. */
* Indicates whether EOLs of text files should be converted to '\n' before public boolean isFileMode() {
* calculating the blob ID. return fileMode;
* }
* @return true if EOLs should be canonicalized.
*/ /** @return how automatic CRLF conversion has been configured. */
public AutoCRLF getAutoCRLF() { public AutoCRLF getAutoCRLF() {
return autoCRLF; return autoCRLF;
} }