]> arthur.barton.de Git - bup.git/log
bup.git
14 years agoUpdate README.md to reflect recent developments.
Avery Pennarun [Sun, 31 Jan 2010 21:54:00 +0000 (16:54 -0500)]
Update README.md to reflect recent developments.

- Remove the version number since I never remember to update it
- We now work with earlier versions of python and MacOS
- There's now a mailing list
- 'bup fsck' allows us to remove one of the things from the "stupid" list.

14 years agoMove testfile[12] into t/
Avery Pennarun [Sun, 31 Jan 2010 21:49:59 +0000 (16:49 -0500)]
Move testfile[12] into t/

Since they're only used for testing, they belong there, after all.

14 years agofsck: add a -j# (run multiple threads) option. bup-0.07
Avery Pennarun [Sun, 31 Jan 2010 01:29:22 +0000 (20:29 -0500)]
fsck: add a -j# (run multiple threads) option.

Sort of like make -j.  par2 can be pretty slow, so this lets us verify
multiple files in parallel.  Since the files are so big, though, this might
actually make performance *worse* if you don't have a lot of RAM.  I haven't
benchmarked this too much, but on my quad-core with 6 gigs of RAM, -j4 does
definitely make it go "noticeably" faster.

14 years agoBasic cmd-fsck for checking integrity of packfiles.
Avery Pennarun [Sat, 30 Jan 2010 23:00:08 +0000 (18:00 -0500)]
Basic cmd-fsck for checking integrity of packfiles.

It also uses the 'par2' command, if available, to automatically generate
redundancy data, or to use that data for repair purposes.

Includes handy unit test.

14 years agocmd-damage: a program for randomly corrupting file contents.
Avery Pennarun [Sat, 30 Jan 2010 21:59:44 +0000 (16:59 -0500)]
cmd-damage: a program for randomly corrupting file contents.

Sure, that *sounds* like a terrible idea.  But it's fun for testing recovery
algorithms, at least.

14 years agoUse mkstemp() when creating temporary packfiles.
Avery Pennarun [Sat, 30 Jan 2010 21:31:27 +0000 (16:31 -0500)]
Use mkstemp() when creating temporary packfiles.

Using getpid() was an okay hack, but there's no good excuse for doing it
that way when there are perfectly good tempfile-naming functions around
already.

14 years agorewire a try/finally with a yield inside to be compatible with python 2.4
Avery Pennarun [Sun, 31 Jan 2010 00:23:53 +0000 (19:23 -0500)]
rewire a try/finally with a yield inside to be compatible with python 2.4

Apparently you can't put a 'yield' inside a try/finally in older versions of
python.  lame.

14 years agoclient: fix a race condition when the server suggests an index.
Avery Pennarun [Sat, 30 Jan 2010 21:09:38 +0000 (16:09 -0500)]
client: fix a race condition when the server suggests an index.

If we finished our current pack too quickly after getting the suggestion,
the client would get confused, resulting in 'exected "ok, got %r' type
errors.

14 years agocmd-ls and cmd-fuse: toys for browsing your available backups.
Avery Pennarun [Wed, 27 Jan 2010 00:30:30 +0000 (19:30 -0500)]
cmd-ls and cmd-fuse: toys for browsing your available backups.

'bup ls' lets you browse the set of backups on your current system.  It's a
bit useless, so it might go away or be rewritten eventually.

'bup fuse' is a simple read-only FUSE filesystem that lets you mount your
backup sets as a filesystem (on Linux only).  You can then export this
filesystem over samba or NFS or whatever, and people will be able to restore
their own files from backups.

Warning: we still don't support file metadata in 'bup save', so all the file
permissions will be wrong (and users will probably be able to see things
they shouldn't!).  Also, anything that has been split into chunks will show
you the chunks instead of the full file, which is a bit silly.  There are
also tons of places where performance could be improved.

But it's a pretty neat toy nevertheless.  To try it out:

   mkdir /tmp/backups
   sudo bup fuse /tmp/backups

14 years agocmd-midx: some performance optimizations. bup-0.06
Avery Pennarun [Mon, 25 Jan 2010 08:00:38 +0000 (03:00 -0500)]
cmd-midx: some performance optimizations.

Approximately doubles the speed of generating indexes.

14 years agocmd-midx: add --auto and --force options.
Avery Pennarun [Mon, 25 Jan 2010 07:22:23 +0000 (02:22 -0500)]
cmd-midx: add --auto and --force options.

Rather than having to list the indexes you want to merge, now it can do it
for you automatically.  The output filename is now also optional; it'll
generate it in the right place in the git repo automatically.

14 years agoWhen there are multiple overlapping .midx files, discard redundant ones.
Avery Pennarun [Mon, 25 Jan 2010 06:41:44 +0000 (01:41 -0500)]
When there are multiple overlapping .midx files, discard redundant ones.

That way if someone generates a .midx for a subset of .idx files, then
another for the *entire* set of .idx files, we'll automatically ignore the
former one, thus increasing search speed and improving memory thrashing
behaviour even further.

14 years agoMultiPackIndex: use .midx files if they exist.
Avery Pennarun [Mon, 25 Jan 2010 06:24:16 +0000 (01:24 -0500)]
MultiPackIndex: use .midx files if they exist.

Wow, using a single .midx file that merges my 435 megs of packfile indexes
(across 169 files) reduces memory churn in memtest.py by at least two orders
of magnitude.  (ie. we need to map 100x fewer memory pages in order to
search for each nonexistent object when creating a new backup)  memtest.py
runs *visibly* faster.

We can also remove the PackBitmap code now, since it's not nearly as good as
the PackMidx stuff and is now an unnecessary layer of indirection.

14 years agocmd-midx: a command for merging multiple .idx files into one.
Avery Pennarun [Mon, 25 Jan 2010 05:52:14 +0000 (00:52 -0500)]
cmd-midx: a command for merging multiple .idx files into one.

This introduces a new "multi-index" index format, as suggested by Lukasz
Kosewski.

.midx files have a variable-bit-width fanout table that's supposedly
optimized to be able to find any sha1 while dirtying only two pages (one for
the fanout table lookup, and one for the final binary search).  Each entry
in the fanout table should correspond to approximately one page's worth of
sha1sums.

Also adds a PackMidx class, which acts just like PackIndex, but for .midx
files.  Not using it for anything yet, though.  The idea is to greatly
reduce memory burn when searching through lots of pack files.

14 years agoRename chashsplit.so to _hashsplit.so.
Avery Pennarun [Mon, 25 Jan 2010 04:00:32 +0000 (23:00 -0500)]
Rename chashsplit.so to _hashsplit.so.

Looks like the python standard is _modulename.so when making a C helper for
a module named modulename.py, so let's do it that way.

Also get rid of the annoying "module" suffix in the .c's filename.  Not sure
why I ever thought that was needed.

14 years agoMaking a warning in chashsplitmodule.c go away.
Dave Coombs [Mon, 25 Jan 2010 03:44:36 +0000 (22:44 -0500)]
Making a warning in chashsplitmodule.c go away.

14 years agotoplevel exit() doesn't work in python 2.4.
Avery Pennarun [Sun, 24 Jan 2010 23:17:57 +0000 (18:17 -0500)]
toplevel exit() doesn't work in python 2.4.

Use sys.exit() instead.

14 years agoMinor changes to make bup work with git as far back as 1.5.3.1.
Avery Pennarun [Sun, 24 Jan 2010 22:52:41 +0000 (17:52 -0500)]
Minor changes to make bup work with git as far back as 1.5.3.1.

14 years agoIn some versions of python, comparing buffers with < gives a warning.
Avery Pennarun [Sun, 24 Jan 2010 22:46:51 +0000 (17:46 -0500)]
In some versions of python, comparing buffers with < gives a warning.

It seems to be a buggy warning.  But we only really do it in one place, and
buffers in question are only 20 bytes long, so forcing them into strings
seems harmless enough.

14 years agoWrap mmap calls to help with portability.
Avery Pennarun [Sun, 24 Jan 2010 22:18:25 +0000 (17:18 -0500)]
Wrap mmap calls to help with portability.

python2.4 in 'fink' on MacOS X seems to not like it when you pass a file
length of 0, even though that's supposed to mean "determine map size
automatically."

14 years agoMakefile: build module using python distutils instead of manually.
Avery Pennarun [Sun, 24 Jan 2010 22:44:19 +0000 (17:44 -0500)]
Makefile: build module using python distutils instead of manually.

This makes it work with fink's version of python, among possibly other
things.

So now we can build chashsplit.so even on MacOS X tiger, even though tiger's
python 2.3 is too old, by installing fink's python24 package first.

14 years agoexecutable files: don't assume python2.5.
Avery Pennarun [Sun, 24 Jan 2010 21:37:46 +0000 (16:37 -0500)]
executable files: don't assume python2.5.

The forcing of version 2.5 was leftover from before, when it was
accidentally selecting python 2.4 by accident on some distros when both
versions are installed.  But actually that's fine; bup works in python 2.4
without problems.

So let's not cause potentially *more* portability problems by forcing python
2.5 when it might not exist.

14 years agoMakefile: oops, all the $^ and $< were backwards.
Avery Pennarun [Sun, 24 Jan 2010 03:06:59 +0000 (22:06 -0500)]
Makefile: oops, all the $^ and $< were backwards.

Not that it mattered, since all our files only had one dependency each.  But
it causes confusion if you ever add extra ones.

14 years agoMake README a symlink to README.md
Avery Pennarun [Sun, 24 Jan 2010 02:17:01 +0000 (21:17 -0500)]
Make README a symlink to README.md

So as not to confuse anyone who has linked to the README file on github in
the past.

14 years agoMinor README format changes to make it markdown-compliant.
Avery Pennarun [Sun, 24 Jan 2010 01:54:37 +0000 (20:54 -0500)]
Minor README format changes to make it markdown-compliant.

That way it looks prettier on github.

14 years agoChange t/tindex.py to pass on Mac OS. bup-0.05
Dave Coombs [Thu, 14 Jan 2010 01:13:38 +0000 (20:13 -0500)]
Change t/tindex.py to pass on Mac OS.

It turns out /etc is a symlink (to /private/etc) on Mac OS, so checking
that the realpath of t/sampledata/etc is /etc fails.  Instead we now check
against the realpath of /etc.

14 years agoUse a PackBitmap file as a quicker way to check .idx files.
Avery Pennarun [Tue, 12 Jan 2010 05:52:21 +0000 (00:52 -0500)]
Use a PackBitmap file as a quicker way to check .idx files.

When we receive a new .idx file, we auto-generate a .map file from it.  It's
essentially an allocation bitmap: for each 20-bit prefix, we assign one bit
to tell us if that particular prefix is in that particular packfile.  If it
isn't, there's no point searching the .idx file at all, so we can avoid
mapping in a lot of pages.  If it is, though, we then have to search the
.idx *too*, so we suffer a bit.

On the whole this reduces memory thrashing quite a bit for me, though.
Probably the number of bits needs to be variable in order to work over a
wider range of packfile sizes/numbers.

14 years agomemtest.py: a standalone program for testing memory usage in PackIndex.
Avery Pennarun [Tue, 12 Jan 2010 04:02:56 +0000 (23:02 -0500)]
memtest.py: a standalone program for testing memory usage in PackIndex.

The majority of the memory usage in bup split/save is now caused by
searching pack indexes for sha1 hashes.  The problem with this is that, in
the common case for a first full backup, *none* of the object hashes will be
found, so we'll *always* have to search *all* the packfiles.  With just 45
packfiles of 200k objects each, that makes about (18-8)*45 = 450 binary
search steps, or 100+ 4k pages that need to be loaded from disk, to check
*each* object hash.  memtest.py lets us see how fast RSS creeps up under
various conditions, and how different optimizations affect the result.

14 years agooptions parser: automatically convert strings to ints when appropriate.
Avery Pennarun [Tue, 12 Jan 2010 03:59:46 +0000 (22:59 -0500)]
options parser: automatically convert strings to ints when appropriate.

If the given parameter is exactly an int (ie. str(int(v)) == v) then convert
it to an int automatically.  This helps avoid weird bugs in apps using the
option parser.

14 years agocmd-save: if verbose==1, don't bother printing unmodified names.
Avery Pennarun [Tue, 12 Jan 2010 01:44:57 +0000 (20:44 -0500)]
cmd-save: if verbose==1, don't bother printing unmodified names.

That just clutters the output; clearly what people *really* want to see is
the list of files we're actually modifying.

But if you want more, increase the verbosity and you'll get more.

14 years agoclient-server: only retrieve index files when actually needed.
Avery Pennarun [Mon, 11 Jan 2010 23:19:29 +0000 (18:19 -0500)]
client-server: only retrieve index files when actually needed.

A busy server could end up with a *large* number of index files, mostly
referring to objects from other clients.  Downloading all the indexes not only
wastes bandwidth, but causes a more insidious problem: small servers end up
having to mmap a huge number of large index files, which sucks lots of RAM.

In general, the RAM on a server is roughly proportional to the disk space on
that server.  So it's okay for larger clients to need more RAM in order
to complete a backup.  However, it's not okay for the existence of larger
clients to make smaller clients suffer.  Hopefully this change will settle
it a bit.

14 years agoReduce default max objects per pack to 200,000 to save memory.
Avery Pennarun [Tue, 12 Jan 2010 01:06:08 +0000 (20:06 -0500)]
Reduce default max objects per pack to 200,000 to save memory.

After some testing, it seems each object sha1 we need to cache while writing
a pack costs us about 83 bytes of memory.  (This isn't so great, so
optimizing it in C later could cut this down a lot.)  The new limit of 200k
objects takes about 16.6 megs of RAM, which nowadays is pretty acceptable.
It also corresponds to roughly 1GB of packfile for my random select of
sample data, so (since the default packfile limit is about 1GB anyway), this
*mostly* won't matter.

It will have an effect if your data is highly compressible, however; an
8192-byte object could compress down to a very small size and you'd end up
with a large number of objects.  The previous default limit of 10 million
objects was ridiculous, since that would take 830 megs of RAM.

14 years agosplit_to_blob_or_tree was accidentally not using the 'fanout' setting.
Avery Pennarun [Tue, 12 Jan 2010 00:11:25 +0000 (19:11 -0500)]
split_to_blob_or_tree was accidentally not using the 'fanout' setting.

Thus, 'bup save' on huge files would suck lots of RAM.

14 years agocmd-server: receive-objects should return a relative, not absolute, path.
Avery Pennarun [Mon, 11 Jan 2010 23:13:17 +0000 (18:13 -0500)]
cmd-server: receive-objects should return a relative, not absolute, path.

14 years agoUpdate the README to reflect recent changes. bup-0.04a
Avery Pennarun [Mon, 11 Jan 2010 20:41:01 +0000 (15:41 -0500)]
Update the README to reflect recent changes.

14 years agoMerge branch 'cygwin'
Avery Pennarun [Mon, 11 Jan 2010 20:18:35 +0000 (15:18 -0500)]
Merge branch 'cygwin'

* cygwin:
  Assorted cleanups to Luke's cygwin fixes.
  Makefile: work with cygwin on different windows versions.
  .gitignore sanity.
  Makefile:  On Windows, executable files must end with .exe.
  client.py:  Windows files don't support ':', so rename cachedir.
  index.py:  os.rename() fails on Windows if dstfile already exists.
  Don't try to rename tmpfiles into existing open files.
  helpers.py:  Cygwin doesn't support `hostname -f`, use `hostname`.
  cmd-index.py:  Retry os.open without O_LARGEFILE if not supported.
  Makefile:  Build on Windows under Cygwin.

14 years agoAssorted cleanups to Luke's cygwin fixes.
Avery Pennarun [Mon, 11 Jan 2010 20:06:03 +0000 (15:06 -0500)]
Assorted cleanups to Luke's cygwin fixes.

There were a few things that weren't quite done how I would have done them,
so I changed the implementation.  Should still work in cygwin, though.

The only actual functional changes are:
 - index.Reader.close() now actually sets m=None rather than just closing it
 - removed the "if rename fails, then unlink first" logic, which is
   seemingly not needed after all.
 - rather than special-casing cygwin to use "hostname" instead of "hostname
   -f", it turns out python has a socket.getfqdn() that does what we want.

14 years agoMakefile: work with cygwin on different windows versions.
Avery Pennarun [Mon, 11 Jan 2010 19:57:23 +0000 (14:57 -0500)]
Makefile: work with cygwin on different windows versions.

Just check the CYGWIN part; don't depend on the fact that it's NT 5.1.  (Of
course, uname isn't supposed to report such things by default anyway... but
that's cygwin for you.)

14 years agoMerge branch 'master' of git://github.com/apenwarr/bup
Lukasz Kosewski [Sun, 10 Jan 2010 09:38:32 +0000 (04:38 -0500)]
Merge branch 'master' of git://github.com/apenwarr/bup

14 years ago.gitignore sanity.
Lukasz Kosewski [Sun, 10 Jan 2010 09:19:33 +0000 (04:19 -0500)]
.gitignore sanity.

14 years agoMakefile: On Windows, executable files must end with .exe.
Lukasz Kosewski [Sun, 10 Jan 2010 09:18:49 +0000 (04:18 -0500)]
Makefile:  On Windows, executable files must end with .exe.

14 years agoclient.py: Windows files don't support ':', so rename cachedir.
Lukasz Kosewski [Sun, 10 Jan 2010 09:15:07 +0000 (04:15 -0500)]
client.py:  Windows files don't support ':', so rename cachedir.

Cachedir was previously $host:$dir, and is now $host-$dir.

14 years agoindex.py: os.rename() fails on Windows if dstfile already exists.
Lukasz Kosewski [Sun, 10 Jan 2010 09:07:10 +0000 (04:07 -0500)]
index.py:  os.rename() fails on Windows if dstfile already exists.

Hence, we perform an os.unlink on the dstfile if os.rename() receives
an OSError exception, and try again.

14 years agoDon't try to rename tmpfiles into existing open files.
Lukasz Kosewski [Sun, 10 Jan 2010 09:04:17 +0000 (04:04 -0500)]
Don't try to rename tmpfiles into existing open files.

Linux and friends have no problem with this, but Windows doesn't allow
this without some effort, which we can avoid by... not needing to write
to an already-open file.

Give index.Reader a 'close' method which identifies and closes any open
mmaped files, and make cmd-index.py use this before trying to close a
index.Writer instance (which renames a tmpfile into the same file the
Reader has mmaped).

14 years agohelpers.py: Cygwin doesn't support `hostname -f`, use `hostname`.
Lukasz Kosewski [Sun, 10 Jan 2010 08:59:20 +0000 (03:59 -0500)]
helpers.py:  Cygwin doesn't support `hostname -f`, use `hostname`.

14 years agocmd-index.py: Retry os.open without O_LARGEFILE if not supported.
Lukasz Kosewski [Sun, 10 Jan 2010 08:57:42 +0000 (03:57 -0500)]
cmd-index.py:  Retry os.open without O_LARGEFILE if not supported.

Python under Cygwin doesn't have os.O_LARGEFILE, so if we receive an
'AttributeError' exception trying to open something, just remove
O_LARGEFILE and try again.

14 years agoMakefile: Build on Windows under Cygwin.
Lukasz Kosewski [Sun, 10 Jan 2010 08:52:52 +0000 (03:52 -0500)]
Makefile:  Build on Windows under Cygwin.

- Python modules have to end with .dll instead .so to load into Python
  via 'import'.
- GCC under Windows builds all programs with -fPIC, and doesn't accept
  this command-line option.
- libpython2.5.dll is found in /usr/bin under Cygwin (wtf?), so we need
  to add this to the LDFLAGS path.
- 'make clean' should remove .dll files too.

14 years agoOops, 'bup save /' produced an invalid tree. bup-0.04
Avery Pennarun [Sun, 10 Jan 2010 07:12:47 +0000 (02:12 -0500)]
Oops, 'bup save /' produced an invalid tree.

Add a bunch of assertions to make sure that never happens.

14 years agoThis adds the long-awaited indexfile feature, so you no longer have to feed
Avery Pennarun [Sun, 10 Jan 2010 06:13:10 +0000 (01:13 -0500)]
This adds the long-awaited indexfile feature, so you no longer have to feed
your backups through tar.

Okay, 'bup save' is still a bit weak... but it could be much worse.

Merge branch 'indexfile'

* indexfile:
  Minor fix for python 2.4.4 compatibility.
  cmd-save: completely reimplement using the indexfile.
  Moved some reusable index-handling code from cmd-index.py to index.py.
  A bunch of wvtests for the 'bup index' command.
  Start using wvtest.sh for shell-based tests in test-sh.
  cmd-index: default indexfile path is ~/.bup/bupindex, not $PWD/index
  cmd-index: skip merging the index if nothing was written to the new one.
  cmd-index: only update if -u is given; print only given file/dirnames.
  cmd-index: correct reporting of deleted vs. added vs. modified status.
  Generalize the multi-index-walking code.
  cmd-index: indexfiles should start with a well-known header.
  cmd-index: eliminate redundant paths from index update command.
  cmd-index: some handy options.
  index: add --xdev (--one-file-system) option.
  Fix some bugs with indexing '/'
  cmd-index: basic index reader/writer/merger.

14 years agoMinor fix for python 2.4.4 compatibility.
Avery Pennarun [Sun, 10 Jan 2010 05:56:58 +0000 (00:56 -0500)]
Minor fix for python 2.4.4 compatibility.

14 years agocmd-save: completely reimplement using the indexfile.
Avery Pennarun [Sun, 10 Jan 2010 03:43:48 +0000 (22:43 -0500)]
cmd-save: completely reimplement using the indexfile.

'bup save' no longer walks the filesystem: instead it walks the indexfile
(which is much faster) and doesn't bother opening any files that haven't had
an attribute change, since it can just reuse their sha1 from before.  That
makes it *much* faster in the common case.

14 years agoMoved some reusable index-handling code from cmd-index.py to index.py.
Avery Pennarun [Sun, 10 Jan 2010 02:41:07 +0000 (21:41 -0500)]
Moved some reusable index-handling code from cmd-index.py to index.py.

14 years agoA bunch of wvtests for the 'bup index' command.
Avery Pennarun [Sun, 10 Jan 2010 02:17:10 +0000 (21:17 -0500)]
A bunch of wvtests for the 'bup index' command.

14 years agoStart using wvtest.sh for shell-based tests in test-sh.
Avery Pennarun [Sun, 10 Jan 2010 01:35:16 +0000 (20:35 -0500)]
Start using wvtest.sh for shell-based tests in test-sh.

This makes the output a little prettier... at least in the common case where
it passes :)

14 years agocmd-index: default indexfile path is ~/.bup/bupindex, not $PWD/index
Avery Pennarun [Sun, 10 Jan 2010 00:50:13 +0000 (19:50 -0500)]
cmd-index: default indexfile path is ~/.bup/bupindex, not $PWD/index

14 years agocmd-index: skip merging the index if nothing was written to the new one.
Avery Pennarun [Sun, 10 Jan 2010 00:47:14 +0000 (19:47 -0500)]
cmd-index: skip merging the index if nothing was written to the new one.

14 years agocmd-index: only update if -u is given; print only given file/dirnames.
Avery Pennarun [Sun, 10 Jan 2010 00:27:26 +0000 (19:27 -0500)]
cmd-index: only update if -u is given; print only given file/dirnames.

cmd-index now does two things:
 - it updates the index with the given names if -u is given
 - it prints the index if -p, -s, or -m are given.

In both cases, if filenames are given, it operates (recursively) on the
given filenames or directories.  If no filenames are given, -u fails (we
don't want to default to /; it's too slow) but -p/s/m just prints the whole
index.

14 years agocmd-index: correct reporting of deleted vs. added vs. modified status.
Avery Pennarun [Sun, 10 Jan 2010 00:07:05 +0000 (19:07 -0500)]
cmd-index: correct reporting of deleted vs. added vs. modified status.

A file with an all-zero sha1 is considered Added instead of Modified, since
it has obviously *never* had a valid sha1.  (A modified file has an old
sha1, but IX_HASHVALID isn't set.)

We also now don't remove old files from the index - for now - so that we can
report old files with a D status.  This might perhaps be useful eventually.

Furthermore, we had a but where reindexing a particular filename would
"sometimes" cause siblings of that file to be marked as deleted.  The
sibling entries should never be updated, because we didn't check them and
thus have no idea of their new status.  This bug was mostly caused by the
silly way we current pass dirnames and filenames around...

14 years agoGeneralize the multi-index-walking code.
Avery Pennarun [Sat, 9 Jan 2010 23:25:23 +0000 (18:25 -0500)]
Generalize the multi-index-walking code.

Now you can walk through multiple indexes correctly from anywhere, avoiding
the need for merging a huge index just to update a few files.

14 years agocmd-index: indexfiles should start with a well-known header.
Avery Pennarun [Sat, 9 Jan 2010 22:12:36 +0000 (17:12 -0500)]
cmd-index: indexfiles should start with a well-known header.

14 years agocmd-index: eliminate redundant paths from index update command.
Avery Pennarun [Thu, 7 Jan 2010 23:54:40 +0000 (18:54 -0500)]
cmd-index: eliminate redundant paths from index update command.

If someone asks to update "/etc" and "/etc/passwd", the latter is redundant
because it's included in the first.  Don't bother updating the file twice
(and thus causing two index merges, etc).

Ideally we would only do one merge for *any* number of updates (etc /etc and
/var).  This should be possible as long as we sort the entries correctly
(/var/ and then /etc/), since a single sequential indexfile could just have
one appended to the other.  But we don't do that yet.

14 years agocmd-index: some handy options.
Avery Pennarun [Thu, 7 Jan 2010 23:43:02 +0000 (18:43 -0500)]
cmd-index: some handy options.

New options:
--modified: print only files that aren't up to date
--status: prefix printouts with status chars
--fake-valid: mark all entries as up to date
--indexfile: override the default index filename

14 years agoindex: add --xdev (--one-file-system) option.
Avery Pennarun [Thu, 7 Jan 2010 07:54:45 +0000 (02:54 -0500)]
index: add --xdev (--one-file-system) option.

For not traversing across filesystem boundaries.

14 years agoFix some bugs with indexing '/'
Avery Pennarun [Thu, 7 Jan 2010 07:50:09 +0000 (02:50 -0500)]
Fix some bugs with indexing '/'

14 years agocmd-index: basic index reader/writer/merger.
Avery Pennarun [Thu, 7 Jan 2010 04:55:48 +0000 (23:55 -0500)]
cmd-index: basic index reader/writer/merger.

14 years agoOn MacOS X, "wc -l" returns extra whitespace.
Avery Pennarun [Thu, 7 Jan 2010 23:16:52 +0000 (18:16 -0500)]
On MacOS X, "wc -l" returns extra whitespace.

ie. "    0" instead of "0".

The easiest workaround is to compare as a number instead of as a string.
This seems to work correctly on both MacOS and Linux.

14 years agoMore compile options for MacOS X.
Avery Pennarun [Thu, 7 Jan 2010 23:14:20 +0000 (18:14 -0500)]
More compile options for MacOS X.

Based on a patch from Dave Coombs.  I changed it to auto-detect the OS
platform, so I might have broken it, however.

14 years agosplitting to a remote server would cause "already busy" errors. bup-0.03
Avery Pennarun [Wed, 6 Jan 2010 21:42:54 +0000 (16:42 -0500)]
splitting to a remote server would cause "already busy" errors.

Specifically:
client.ClientError: already busy with command 'receive-objects'

That's because recent changes removed the call to onclose() from
PackWriter_Remote.  Now it's back, plus I added an extra unit test to reveal
the problem.

14 years agoclient: enhance the PATH when searching for the 'bup' binary.
Avery Pennarun [Wed, 6 Jan 2010 18:03:23 +0000 (13:03 -0500)]
client: enhance the PATH when searching for the 'bup' binary.

Automatically adds the *local* $PWD to the *remote* $PATH before trying to
run 'bup server'.  That way, if you build the source in exactly the same
folder on two machines - or if those two machines are actually the same
machine and you're just doing a test against localhost - it'll work.

I hereby curse both "sh -c <command>" and "ssh hostname -- <command>" for
not allowing a sensible way to just set argv[] without doing any stupid
quoting.  Nasty.

14 years agowvtest: coerce non-string arguments when printing.
Avery Pennarun [Wed, 6 Jan 2010 18:02:58 +0000 (13:02 -0500)]
wvtest: coerce non-string arguments when printing.

14 years agoMuch more user-friendly error messages when bup can't exec the server.
Avery Pennarun [Wed, 6 Jan 2010 17:07:59 +0000 (12:07 -0500)]
Much more user-friendly error messages when bup can't exec the server.

...which happens unfortunately often, including in 'make test' when PATH
doesn't include bup.  I'll fix that next.  But it makes sense to fix the
error messages first :)

14 years agoAdd a 'make stupid' target that does 'make test' with a minimal PATH.
Avery Pennarun [Wed, 6 Jan 2010 16:48:35 +0000 (11:48 -0500)]
Add a 'make stupid' target that does 'make test' with a minimal PATH.

Because I'm stupid and I keep forgetting to test what happens if you don't
have 'bup' in your PATH.

Thanks to Dave Coombs and Andy Chong for reporting the problem.  And in
v0.01 too.

14 years agoMerge remote branch 'remotes/apenwarr-master/master'
Michael Wolf [Wed, 6 Jan 2010 15:18:37 +0000 (10:18 -0500)]
Merge remote branch 'remotes/apenwarr-master/master'

14 years agosplit: Prevent memory drain from excessively long shalists. bup-0.02
Avery Pennarun [Wed, 6 Jan 2010 05:19:11 +0000 (00:19 -0500)]
split: Prevent memory drain from excessively long shalists.

This avoids huge RAM usage when you're splitting a really huge object, plus
git probably doesn't work too well with single trees that contain millions
of objects anyway.

14 years agoSplit packs around 100M objects or 1G bytes.
Avery Pennarun [Wed, 6 Jan 2010 04:42:15 +0000 (23:42 -0500)]
Split packs around 100M objects or 1G bytes.

This will make pruning much easier later, plus avoids any problems with
packs >= 2GB (not that we've had any of those yet, but...), plus avoids
wasting RAM with an overly full MultiPackIndex.also{} dictionary.

14 years agoOOPS! Was writing one byte at a time to the server.
Avery Pennarun [Wed, 6 Jan 2010 04:50:41 +0000 (23:50 -0500)]
OOPS!  Was writing one byte at a time to the server.

_raw_write() expects a list, not a string, so it was iterating over it
character by character.  Magically it worked anyway.  Which is sort of cool,
and yet not.

14 years agoFix compatibility with git 1.5.4.3 (Ubuntu Hardy).
Avery Pennarun [Wed, 6 Jan 2010 03:21:18 +0000 (22:21 -0500)]
Fix compatibility with git 1.5.4.3 (Ubuntu Hardy).

Thanks to Andy Chong for reporting the problem.

Basically it comes down to two things that are missing in that version but
exist in git 1.5.6:

  - git init --bare doesn't work, but git --bare init does.
  - git cat-file --batch doesn't exist in that version.

Unfortunately, the latter problem is pretty serious; bup join is really slow
without it.  I guess it might be time to implement an internal version of
cat-file.

14 years agoFigure out where Python dynamic libraries live. Use them, too.
Michael Wolf [Wed, 6 Jan 2010 03:00:59 +0000 (22:00 -0500)]
Figure out where Python dynamic libraries live.  Use them, too.

14 years agoOlder git needs 'git --bare init' instead of 'git init --bare'
Avery Pennarun [Wed, 6 Jan 2010 02:41:07 +0000 (21:41 -0500)]
Older git needs 'git --bare init' instead of 'git init --bare'

Needed in at least 1.5.4 (Ubuntu Hardy), but not 1.5.6 (Debian Lenny).

14 years agotest-sh: don't truncate stderr.
Avery Pennarun [Tue, 5 Jan 2010 17:11:27 +0000 (12:11 -0500)]
test-sh: don't truncate stderr.

Normally you wouldn't notice this problem, unless you tried to run:

make test >&test.out

and found that it was full of NUL characters.  Oops.

14 years agoMakefile: avoid using backquotes.
Avery Pennarun [Tue, 5 Jan 2010 18:02:16 +0000 (13:02 -0500)]
Makefile: avoid using backquotes.

14 years agoMake now calls python2.5-config.
David Wolever [Tue, 5 Jan 2010 05:59:11 +0000 (00:59 -0500)]
Make now calls python2.5-config.

14 years agoFix two bugs reported by dcoombs.
Avery Pennarun [Mon, 4 Jan 2010 16:48:38 +0000 (11:48 -0500)]
Fix two bugs reported by dcoombs.

test-sh was assuming 'bup' was on the PATH.  (It wasn't *supposed* to be
assuming that, but the "alias bup=whatever" line wasn't working,
apparently.)

randomgen.c triggered a warning in some versions of gcc about the return
value of write() being ignored.  It really doesn't bother me if some of my
random bytes don't get written, but whatever; I'll assert instead, which
should shut it up.

14 years agoAdd a README for v0.01. bup-0.01
Avery Pennarun [Mon, 4 Jan 2010 04:39:52 +0000 (23:39 -0500)]
Add a README for v0.01.

14 years agoForce generated pack indexes to be version 2.
Avery Pennarun [Mon, 4 Jan 2010 03:06:29 +0000 (22:06 -0500)]
Force generated pack indexes to be version 2.

We don't support parsing earlier versions, and the earlier versions are
inferior anyway.

14 years agoRewrite bup-join in python and add remote server support.
Avery Pennarun [Mon, 4 Jan 2010 02:51:41 +0000 (21:51 -0500)]
Rewrite bup-join in python and add remote server support.

14 years agoWe can now update refs when we do a backup.
Avery Pennarun [Mon, 4 Jan 2010 01:30:25 +0000 (20:30 -0500)]
We can now update refs when we do a backup.

Supported by both cmd-save and cmd-split, albeit with a disturbing amount of
code duplication.

Also updated bup-join to use a default BUP_DIR if none is specified.

14 years agoRefactored client stuff into client.py; now cmd-save and cmd-init use it too.
Avery Pennarun [Sun, 3 Jan 2010 20:46:45 +0000 (15:46 -0500)]
Refactored client stuff into client.py; now cmd-save and cmd-init use it too.

Still not updating refs, however, so it remains a bit stupid.

14 years agoFix some problems running on older Debian.
Avery Pennarun [Sun, 3 Jan 2010 11:32:32 +0000 (06:32 -0500)]
Fix some problems running on older Debian.

python 2.5 (pre-2.5.2) can't struct.unpack from a buffer(); coerce it to a
string first.

The default python is 2.4, so run /usr/bin/python2.5 explicitly.

14 years agoSupport incremental backups to a remote server.
Avery Pennarun [Sun, 3 Jan 2010 11:17:30 +0000 (06:17 -0500)]
Support incremental backups to a remote server.

We now cache the server's packfile indexes locally, so we know which objects
he does and doesn't have.  That way we can send him a packfile with only the
ones he's missing.

cmd-split supports this now, but cmd-save still doesn't support remote
servers.

The -n option (set a ref correctly) doesn't work yet either.

14 years agoExtremely basic 'bup server' support.
Avery Pennarun [Sun, 3 Jan 2010 10:00:38 +0000 (05:00 -0500)]
Extremely basic 'bup server' support.

It's enough to send a pack to the remote end with 'bup split', though 'bup
save' doesn't support it yet, and we're not smart enough to do incremental
backups, which means we generate the gigantic pack every single time.

14 years agobup save: handle symlinks correctly.
Avery Pennarun [Sun, 3 Jan 2010 08:01:40 +0000 (03:01 -0500)]
bup save: handle symlinks correctly.

ie. save symlinks as symlinks, don't blindly recurse into them.

Also, directory names in trees need to be sorted as if they were "name/",
not "name".  Otherwise git fsck complains.

Improved 'make test' to check 'git fsck' output and to actually run bup
save.

14 years agocmd-join didn't honour $BUP_DIR.
Avery Pennarun [Sun, 3 Jan 2010 07:18:35 +0000 (02:18 -0500)]
cmd-join didn't honour $BUP_DIR.

14 years agoAdd 'bup init' command.
Avery Pennarun [Sun, 3 Jan 2010 04:58:45 +0000 (23:58 -0500)]
Add 'bup init' command.

Basically an alias for git init, but uses BUP_DIR instead of GIT_DIR
environment variable.

14 years agoMoved some git.* globals into PackWriter; use BUP_DIR as repo path.
Avery Pennarun [Sun, 3 Jan 2010 04:19:05 +0000 (23:19 -0500)]
Moved some git.* globals into PackWriter; use BUP_DIR as repo path.

If BUP_DIR isn't set, it defaults to ./.git, which is probably not so smart,
but works for now (and was what we were using *until* now anyway).

14 years agoName temp files from 'make test' as *.tmp to make them easier to clean.
Avery Pennarun [Sun, 3 Jan 2010 03:42:58 +0000 (22:42 -0500)]
Name temp files from 'make test' as *.tmp to make them easier to clean.

14 years agoBetter behaviour with --verbose.
Avery Pennarun [Sun, 3 Jan 2010 03:34:43 +0000 (22:34 -0500)]
Better behaviour with --verbose.

Also added --verbose to cmd-save.

14 years agoUse binary sha1 instead of hex sha1 whenever possible.
Avery Pennarun [Sun, 3 Jan 2010 03:10:57 +0000 (22:10 -0500)]
Use binary sha1 instead of hex sha1 whenever possible.

14 years ago'make test' now tests the -t and -c options of bup split.
Avery Pennarun [Sun, 3 Jan 2010 03:10:10 +0000 (22:10 -0500)]
'make test' now tests the -t and -c options of bup split.

14 years agogit.PackIndex: a class for quickly searching a git packfile index.
Avery Pennarun [Sun, 3 Jan 2010 02:10:17 +0000 (21:10 -0500)]
git.PackIndex: a class for quickly searching a git packfile index.

This will allow us to generate incremental backups more efficiently, since
we can avoid rewriting already-known objects into a new pack.