Browse Source

Use the new FS.exists method in commonly occuring places

Allegedly this should improve performance, but I could not see it.

Change-Id: Id2057cb2cfcb46e94ff954483ce23f9c4a7edc5e
tags/v3.3.0.201402191814-rc1
Robin Rosenberg 11 years ago
parent
commit
5ef6d69532

+ 3
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileSnapshot.java View File

@@ -45,6 +45,8 @@ package org.eclipse.jgit.internal.storage.file;

import java.io.File;

import org.eclipse.jgit.util.FS;

/**
* Caches when a file was last read, making it possible to detect future edits.
* <p>
@@ -81,7 +83,7 @@ public class FileSnapshot {
public static final FileSnapshot MISSING_FILE = new FileSnapshot(0, 0) {
@Override
public boolean isModified(File path) {
return path.exists();
return FS.DETECTED.exists(path);
}
};


+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/ObjectDirectory.java View File

@@ -180,7 +180,7 @@ public class ObjectDirectory extends FileObjectDatabase {

@Override
public boolean exists() {
return objects.exists();
return fs.exists(objects);
}

@Override
@@ -566,7 +566,7 @@ public class ObjectDirectory extends FileObjectDatabase {
}

final File dst = fileFor(id);
if (dst.exists()) {
if (fs.exists(dst)) {
// We want to be extra careful and avoid replacing an object
// that already exists. We can't be sure renameTo() would
// fail on all platforms if dst exists, so we check first.

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/RefDirectory.java View File

@@ -639,7 +639,7 @@ public class RefDirectory extends RefDatabase {
for (String refName : refs) {
// Lock the loose ref
File refFile = fileFor(refName);
if (!refFile.exists())
if (!fs.exists(refFile))
continue;
LockFile rLck = new LockFile(refFile,
parent.getFS());

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java View File

@@ -168,7 +168,7 @@ public class FileTreeIterator extends WorkingTreeIterator {
file = f;

if (f.isDirectory()) {
if (new File(f, Constants.DOT_GIT).exists())
if (fs.exists(new File(f, Constants.DOT_GIT)))
mode = FileMode.GITLINK;
else
mode = FileMode.TREE;

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/WorkingTreeIterator.java View File

@@ -1154,7 +1154,7 @@ public abstract class WorkingTreeIterator extends AbstractTreeIterator {

private void loadRulesFromFile(IgnoreNode r, File exclude)
throws FileNotFoundException, IOException {
if (exclude.exists()) {
if (FS.DETECTED.exists(exclude)) {
FileInputStream in = new FileInputStream(exclude);
try {
r.parse(in);

Loading…
Cancel
Save