All of lore.kernel.org
 help / color / mirror / Atom feed
* [JGIT PATCH 0/5] Make ObjectLoader safer during repack
@ 2009-04-23  3:36 Shawn O. Pearce
  2009-04-23  3:36 ` [JGIT PATCH 1/5] Remove throws IOException from UnpackedObjectLoader.getCachedBytes Shawn O. Pearce
  0 siblings, 1 reply; 6+ messages in thread
From: Shawn O. Pearce @ 2009-04-23  3:36 UTC (permalink / raw)
  To: Robin Rosenberg; +Cc: git

This is a start to fixing the ObjectLoader save during repack
problems I talked about yesterday.  It applies on top of the
WindowedFile+PackFile patch I sent earlier today.

Patch 1 and 2 are trivial.

Patch 3 fixes the broken 10/10 test case I raised yesterday.

Patch 4 introduces that test case.

Patch 5 starts to fix PackWriter to be safe during repack.
Its still a bit iffy.  The basic logic here is sound, but I'm more
worried about someone else calling PackFile.close() and closing the
underlying RandomFile while we are otherwise accessing the file
during the copyRaw in PackWriter.  I *think* its impossible for
that to occur, but I haven't proven it to myself yet, and its late,
so this one is RFC for now.

Shawn O. Pearce (5):
  Remove throws IOException from UnpackedObjectLoader.getCachedBytes
  Add missing @Override annotations to UnpackedObjectLoader
  Fully materialize an ObjectLoader before returning it from
    ObjectDatabase
  Test that ObjectLoader stays valid across repacks
  Teach PackWriter to recover from removed/replaced packs

 .../org/spearce/jgit/lib/ConcurrentRepackTest.java |   40 +++++++
 .../jgit/lib/DeltaOfsPackedObjectLoader.java       |    7 +-
 .../spearce/jgit/lib/DeltaPackedObjectLoader.java  |   41 +++----
 .../jgit/lib/DeltaRefPackedObjectLoader.java       |    9 +-
 .../src/org/spearce/jgit/lib/ObjectDirectory.java  |    3 +-
 .../src/org/spearce/jgit/lib/ObjectLoader.java     |   23 +---
 .../src/org/spearce/jgit/lib/PackFile.java         |   14 +-
 .../src/org/spearce/jgit/lib/PackWriter.java       |  118 +++++++++++++-------
 .../org/spearce/jgit/lib/PackedObjectLoader.java   |   78 +++++++++++--
 .../org/spearce/jgit/lib/UnpackedObjectLoader.java |    4 +-
 .../spearce/jgit/lib/WholePackedObjectLoader.java  |   21 ++--
 .../src/org/spearce/jgit/lib/WindowCache.java      |   59 +++++++----
 12 files changed, 280 insertions(+), 137 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-04-23  3:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-23  3:36 [JGIT PATCH 0/5] Make ObjectLoader safer during repack Shawn O. Pearce
2009-04-23  3:36 ` [JGIT PATCH 1/5] Remove throws IOException from UnpackedObjectLoader.getCachedBytes Shawn O. Pearce
2009-04-23  3:36   ` [JGIT PATCH 2/5] Add missing @Override annotations to UnpackedObjectLoader Shawn O. Pearce
2009-04-23  3:36     ` [JGIT PATCH 3/5] Fully materialize an ObjectLoader before returning it from ObjectDatabase Shawn O. Pearce
2009-04-23  3:36       ` [JGIT PATCH 4/5] Test that ObjectLoader stays valid across repacks Shawn O. Pearce
2009-04-23  3:36         ` [JGIT RFC PATCH 5/5] Teach PackWriter to recover from removed/replaced packs Shawn O. Pearce

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.