Bladeren bron

Update CachedObjectDirectory when inserting objects

If an ObjectInserter is created from a CachedObjectDirectory, we need
to ensure the cache is updated whenever a new loose object is actually
added to the loose objects directory, otherwise a future read from an
ObjectReader on the CachedObjectDirectory might not be able to open
the newly created object.

We mostly had the infrastructure in place to implement this due to the
injection of unpacked large deltas, but we didn't have a way to pass
the ObjectId from ObjectDirectoryInserter to CachedObjectDirectory,
because the inserter was using the underlying ObjectDirectory and not
the CachedObjectDirectory.  Redirecting to CachedObjectDirectory
ensures the cache is updated.

Change-Id: I1f7bdfacc7ad77ebdb885f655e549cc570652225
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
tags/v0.10.1
Shawn O. Pearce 13 jaren geleden
bovenliggende
commit
e51e06946f

+ 6
- 5
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/CachedObjectDirectory.java Bestand weergeven

@@ -50,6 +50,7 @@ import java.util.Set;

import org.eclipse.jgit.lib.AbbreviatedObjectId;
import org.eclipse.jgit.lib.AnyObjectId;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.ObjectDatabase;
import org.eclipse.jgit.lib.ObjectId;
@@ -111,11 +112,6 @@ class CachedObjectDirectory extends FileObjectDatabase {
// Don't close anything.
}

@Override
public ObjectDirectoryInserter newInserter() {
return wrapped.newInserter();
}

@Override
public ObjectDatabase newCachedDatabase() {
return this;
@@ -131,6 +127,11 @@ class CachedObjectDirectory extends FileObjectDatabase {
return wrapped.getDirectory();
}

@Override
Config getConfig() {
return wrapped.getConfig();
}

@Override
AlternateHandle[] myAlternates() {
if (alts == null) {

+ 23
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileObjectDatabase.java Bestand weergeven

@@ -49,6 +49,7 @@ import java.util.Set;

import org.eclipse.jgit.lib.AbbreviatedObjectId;
import org.eclipse.jgit.lib.AnyObjectId;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.ObjectDatabase;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.ObjectLoader;
@@ -67,7 +68,9 @@ abstract class FileObjectDatabase extends ObjectDatabase {
}

@Override
public abstract ObjectDirectoryInserter newInserter();
public ObjectDirectoryInserter newInserter() {
return new ObjectDirectoryInserter(this, getConfig());
}

/**
* Does the requested object exist in this database?
@@ -83,6 +86,23 @@ abstract class FileObjectDatabase extends ObjectDatabase {
return hasObjectImpl1(objectId) || hasObjectImpl2(objectId.name());
}

/**
* Compute the location of a loose object file.
*
* @param objectId
* identity of the loose object to map to the directory.
* @return location of the object, if it were to exist as a loose object.
*/
File fileFor(final AnyObjectId objectId) {
return fileFor(objectId.name());
}

File fileFor(final String objectName) {
final String d = objectName.substring(0, 2);
final String f = objectName.substring(2);
return new File(new File(getDirectory(), d), f);
}

final boolean hasObjectImpl1(final AnyObjectId objectId) {
if (hasObject1(objectId))
return true;
@@ -110,6 +130,8 @@ abstract class FileObjectDatabase extends ObjectDatabase {
abstract void resolve(Set<ObjectId> matches, AbbreviatedObjectId id)
throws IOException;

abstract Config getConfig();

/**
* Open an object from this database.
* <p>

+ 6
- 7
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/ObjectDirectory.java Bestand weergeven

@@ -204,14 +204,9 @@ public class ObjectDirectory extends FileObjectDatabase {
* identity of the loose object to map to the directory.
* @return location of the object, if it were to exist as a loose object.
*/
@Override
public File fileFor(final AnyObjectId objectId) {
return fileFor(objectId.name());
}

private File fileFor(final String objectName) {
final String d = objectName.substring(0, 2);
final String f = objectName.substring(2);
return new File(new File(objects, d), f);
return super.fileFor(objectId);
}

/**
@@ -515,6 +510,10 @@ public class ObjectDirectory extends FileObjectDatabase {
return false;
}

Config getConfig() {
return config;
}

private void insertPack(final PackFile pf) {
PackList o, n;
do {

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/ObjectDirectoryInserter.java Bestand weergeven

@@ -66,13 +66,13 @@ import org.eclipse.jgit.lib.ObjectInserter;

/** Creates loose objects in a {@link ObjectDirectory}. */
class ObjectDirectoryInserter extends ObjectInserter {
private final ObjectDirectory db;
private final FileObjectDatabase db;

private final Config config;

private Deflater deflate;

ObjectDirectoryInserter(final ObjectDirectory dest, final Config cfg) {
ObjectDirectoryInserter(final FileObjectDatabase dest, final Config cfg) {
db = dest;
config = cfg;
}

Laden…
Annuleren
Opslaan