]> arthur.barton.de Git - bup.git/log
bup.git
13 years agoIf you specified the port number on the command line, convert it to an int.
Avery Pennarun [Tue, 1 Feb 2011 06:13:00 +0000 (22:13 -0800)]
If you specified the port number on the command line, convert it to an int.

This gets rid of an exception.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoAdd `bup daemon` command for simple socket server
Brandon Low [Thu, 27 Jan 2011 02:30:21 +0000 (18:30 -0800)]
Add `bup daemon` command for simple socket server

Nothing special here, just listens on a host:port combination and spawns
`bup mux server` instances.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoAdd DemuxConn and `bup mux` for client-server
Brandon Low [Thu, 27 Jan 2011 02:30:20 +0000 (18:30 -0800)]
Add DemuxConn and `bup mux` for client-server

`bup mux` works with any bup command to multiplex its stdout and stderr
streams over a single stdout stream.

DemuxConn works on the client side to demultiplex stderr and data
streams from a single stream, emulating a simple connection.

For now, these are only used in the case of simple socket bup://
client-server connections, because rsh and local connections don't need
them.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agot/test.sh: Fix a test for 'split' on solaris
Gabriel Filion [Fri, 28 Jan 2011 06:14:08 +0000 (01:14 -0500)]
t/test.sh: Fix a test for 'split' on solaris

When looking at output from a test run on Solaris, one test in the
'split' suite showed up as OK but was actually showing a diff
invocation error.

The -q argument (for quiet) does not exist on the version of diff that
is installed on Solaris. Since wvtest intercepts output from tested
commands, the -q argument is actually not needed. Remove the argument in
order to make the test execute correctly under all operating systems
that were tested thus far.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agoGive main.py the a --profile option
Brandon Low [Wed, 26 Jan 2011 06:54:23 +0000 (22:54 -0800)]
Give main.py the a --profile option

This is just a convenience for anyone who is interested in seeing where
CPU seconds are going.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agooptions.py: generate usage string correctly for no-* options.
Avery Pennarun [Wed, 26 Jan 2011 05:14:35 +0000 (21:14 -0800)]
options.py: generate usage string correctly for no-* options.

(copied from the sshuttle project)

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agooptions.py: don't die if tty width is set to 0.
Avery Pennarun [Sun, 23 Jan 2011 00:42:32 +0000 (16:42 -0800)]
options.py: don't die if tty width is set to 0.

This sometimes happens if weird people, such as myself, open a pty without
setting the width field correctly.

(copied from the sshuttle project)

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoCombine and speed up idx->midx and bupindex merge
Brandon Low [Mon, 24 Jan 2011 03:31:51 +0000 (19:31 -0800)]
Combine and speed up idx->midx and bupindex merge

These two processes used almost identical algorithms, but were
implemented separately.  The main difference was one was ascending and
the other was descending.

This patch reverses the cmp on index.Entry so that both can share an
algorithm.

It also cuts some overhead in the algorithm by using it.next() instead of
the next() wrapper, yielding a ~6% speedup on midx generation and index merging.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoMinorly fix outbytes calculation in client
Brandon Low [Sat, 22 Jan 2011 16:28:04 +0000 (08:28 -0800)]
Minorly fix outbytes calculation in client

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoUse os.path rather than '/' logic in wvtest
Brandon Low [Sat, 22 Jan 2011 19:24:46 +0000 (11:24 -0800)]
Use os.path rather than '/' logic in wvtest

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoHandle $BUP_MAIN_EXE more carefully.
Avery Pennarun [Wed, 26 Jan 2011 03:35:21 +0000 (19:35 -0800)]
Handle $BUP_MAIN_EXE more carefully.

In some cases, we might have been using sys.argv[0] *after* doing a chdir(),
which doesn't work reliably since argv[0] might be a relative path.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoauto_midx(): report args when failing to call a subprocess.
Avery Pennarun [Wed, 26 Jan 2011 03:32:27 +0000 (19:32 -0800)]
auto_midx(): report args when failing to call a subprocess.

The exception from subprocess.call() doesn't report the path it tried to use
when it prints the "No such file or directory" error, which isn't helpful
when trying to debug problems.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoHenning Mueller reports that bup works on Solaris now.
Avery Pennarun [Wed, 26 Jan 2011 03:11:35 +0000 (19:11 -0800)]
Henning Mueller reports that bup works on Solaris now.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agolib/bup/drecurse.py: work even if O_NOFOLLOW is missing.
Avery Pennarun [Wed, 26 Jan 2011 03:04:18 +0000 (19:04 -0800)]
lib/bup/drecurse.py: work even if O_NOFOLLOW is missing.

It's non-critical and appears to be missing on Solaris.  Thanks to Henning
Mueller for reporting the problem.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agooptions: remove unused 'exe' parameter
Gabriel Filion [Mon, 17 Jan 2011 01:38:56 +0000 (20:38 -0500)]
options: remove unused 'exe' parameter

The 'exe' parameter was added in the hope of using it for additional
contextual information in the help text that Options generates. It was
till then abandoned and was judged as superflous information.

Remove the 'exe' parameter from Options' constructor.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agosave: handle backup write errors properly
Brandon Low [Wed, 12 Jan 2011 01:15:53 +0000 (17:15 -0800)]
save: handle backup write errors properly

bup-save was catching all IOErrors and treating them as data-read
failures, but some of them could be backup-write errors.  Have git.py
and client.py raise distinctive errors when pack write raises IOError.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoFix test by forcing order
Brandon Low [Wed, 12 Jan 2011 01:15:52 +0000 (17:15 -0800)]
Fix test by forcing order

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoRemove seemingly unnecessary abspath() call from the previous patch.
Avery Pennarun [Tue, 18 Jan 2011 20:32:41 +0000 (12:32 -0800)]
Remove seemingly unnecessary abspath() call from the previous patch.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoFreeBSD + os.mknod => broken, open().close()
Brandon Low [Wed, 12 Jan 2011 01:15:51 +0000 (17:15 -0800)]
FreeBSD + os.mknod => broken, open().close()

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agocmd/init: don't spit out a traceback on init error
Gabriel Filion [Mon, 17 Jan 2011 02:19:25 +0000 (21:19 -0500)]
cmd/init: don't spit out a traceback on init error

When an error occurs during repository creation, 'bup init' currently
lets GitError exceptions leak out, printing a backtrace to unsuspecting
users in the process.

Intercept GitError exceptions that come out of git.init_repo() and print
out the message that it contains in a more friendly manner.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agogit.py: error when repo's parent dir absent
Gabriel Filion [Mon, 17 Jan 2011 02:19:24 +0000 (21:19 -0500)]
git.py: error when repo's parent dir absent

Currently, when you try to initialize a bup repository inside an
unexistant directory (e.g. BUP_DIR=some_dir/bup_repo, and some_dir does
not exist), bup has to call "git init" to then obtain an error code
which is not very significant to users.

Add a check for the existence of the repository's parent directory and
throw an exception with a more meaningful error message when that
happens.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agoFix typo in documentation for strip_base_path
Zoran Zaric [Sat, 8 Jan 2011 14:57:03 +0000 (15:57 +0100)]
Fix typo in documentation for strip_base_path

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdd some notes on how to install bup on FreeBSD
Gabriel Filion [Sun, 9 Jan 2011 02:19:37 +0000 (21:19 -0500)]
Add some notes on how to install bup on FreeBSD

I've given bup a go on FreeBSD 8.1 and everything seemed to be
functional.

Some package names are not really obvious, and the default 'make'
command doesn't like bup's GNU Make-ish Makefile. Add some notes in the
README so that people can have some pointers on what to do to get bup
fully functional under FreeBSD.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agoUpdate ls man page for new -a option
Gabriel Filion [Sun, 9 Jan 2011 02:59:48 +0000 (21:59 -0500)]
Update ls man page for new -a option

Commit 74d28e77366dba1eefbfa2beeda34bcaa835dc58, while modifying the
default behaviour for 'bup ls', introduced a new option to obtain the
old default behaviour.

Reflect this change in the bup-ls man page.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agomove auto_midx calls to callers of sync_index
Brandon Low [Sat, 8 Jan 2011 19:56:01 +0000 (11:56 -0800)]
move auto_midx calls to callers of sync_index

In call cases, sync_index is now called from a loop.  It makes more
sense to have the callers run auto_midx after the loop now.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoclient/server:Handle multiple suggestions and misc
Brandon Low [Sat, 8 Jan 2011 19:56:00 +0000 (11:56 -0800)]
client/server:Handle multiple suggestions and misc

There was a fixme in the code, I was doing cleanups and fixed it.  There
are therefor some misc. cleanups in here along with the handling of
multiple suggested packs.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoDumb server doesn't need objcache
Brandon Low [Sat, 8 Jan 2011 19:55:59 +0000 (11:55 -0800)]
Dumb server doesn't need objcache

And it's a waste of memory on a low power box.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoMerge branch 'next' into 'master'
Avery Pennarun [Sat, 8 Jan 2011 09:59:55 +0000 (01:59 -0800)]
Merge branch 'next' into 'master'

* 'next':
  Change server_mode=='dumb' to just a dumb_server_mode bool.
  Teach bup about URLs and non-ssh remotes
  Don't generate midx files in dumb server mode
  Add optional dumb-server mode
  git.CatPipe: set a buffer size on the subprocess to increase performance.
  Improve test pass condition
  Adds examples for strip, strip-prefix and graft to bup save's documentation
  Adds --graft option to bup save.

Conflicts:
lib/bup/t/thelpers.py

13 years agoMerge branch 'zz/strip_path_fix' bup-0.21
Avery Pennarun [Sat, 8 Jan 2011 09:50:47 +0000 (01:50 -0800)]
Merge branch 'zz/strip_path_fix'

* zz/strip_path_fix:
  Fix a bug in strip_path when prefix is a symlink
  Add a testcase for strip_path

13 years agoFix a bug in strip_path when prefix is a symlink
Zoran Zaric [Fri, 7 Jan 2011 11:16:24 +0000 (12:16 +0100)]
Fix a bug in strip_path when prefix is a symlink

helpers.realpath() wasn't the right choice for path normalization.
The prefix itself can be a symlink, too.  Now we use os.path.realpath(),
which also follows symlinks for the last element.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdd a testcase for strip_path
Zoran Zaric [Fri, 7 Jan 2011 11:16:23 +0000 (12:16 +0100)]
Add a testcase for strip_path

As reported by Aleksandr Milewski strip_path has a bug when the prefix
is a symlink.  This case is addressed with this test.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoMerge branch 'bl/dumbserver' into next
Avery Pennarun [Thu, 6 Jan 2011 23:27:04 +0000 (15:27 -0800)]
Merge branch 'bl/dumbserver' into next

* bl/dumbserver:
  Change server_mode=='dumb' to just a dumb_server_mode bool.
  Teach bup about URLs and non-ssh remotes
  Don't generate midx files in dumb server mode
  Add optional dumb-server mode

13 years agoChange server_mode=='dumb' to just a dumb_server_mode bool.
Avery Pennarun [Thu, 6 Jan 2011 23:26:18 +0000 (15:26 -0800)]
Change server_mode=='dumb' to just a dumb_server_mode bool.

Marginally faster runtime, shorter code, and less chance of typos.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoTeach bup about URLs and non-ssh remotes
Brandon Low [Wed, 5 Jan 2011 17:28:25 +0000 (09:28 -0800)]
Teach bup about URLs and non-ssh remotes

Also adds the ability to connect to ports other than default for ssh.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoDon't generate midx files in dumb server mode
Brandon Low [Wed, 5 Jan 2011 17:28:24 +0000 (09:28 -0800)]
Don't generate midx files in dumb server mode

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoAdd optional dumb-server mode
Brandon Low [Wed, 5 Jan 2011 17:28:23 +0000 (09:28 -0800)]
Add optional dumb-server mode

In dumb server mode, the server tells the client to load all .idx files
up front.  Puts the burden of deciding what .idxs a client should work
from more squarely in the server side.  This mode is activated by
putting a bup-dumb-server file in the bup repodir.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agogit.CatPipe: set a buffer size on the subprocess to increase performance.
Carsten Bormann [Thu, 6 Jan 2011 21:38:10 +0000 (13:38 -0800)]
git.CatPipe: set a buffer size on the subprocess to increase performance.

apenwarr: I modified Carsten's patch slightly, since "line mode" is not
really appropriate.  On my system, this patch (or Carsten's) can read 111
megabytes in 1.7 seconds instead of 2.1 seconds, or 65MB/sec instead of 52
MB/sec.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoImprove test pass condition
Brandon Low [Tue, 4 Jan 2011 07:07:48 +0000 (23:07 -0800)]
Improve test pass condition

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoAdds examples for strip, strip-prefix and graft to bup save's documentation
Zoran Zaric [Tue, 4 Jan 2011 02:22:28 +0000 (03:22 +0100)]
Adds examples for strip, strip-prefix and graft to bup save's documentation

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds --graft option to bup save.
Zoran Zaric [Tue, 4 Jan 2011 02:22:27 +0000 (03:22 +0100)]
Adds --graft option to bup save.

This adds the option to rename paths when saving them.

A directory /root/chroot/a/etc saved with "bup save -n chroots
--graft /root/chroot/a/etc=/chroots/a" would be saved as
/chroots/a/etc.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agocmd/import-rsnapshot: eliminate use of readlink and stat commands.
Avery Pennarun [Tue, 4 Jan 2011 08:21:32 +0000 (00:21 -0800)]
cmd/import-rsnapshot: eliminate use of readlink and stat commands.

These aren't portable across operating systems.

While we're here, catch some error cases that were revealed by these
commands failing.

Also reduce indentation by using 'continue' in places where the entire loop
iteration depends on a single conditional.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/import-rsnapshot: fix some sh stylistic stuff.
Avery Pennarun [Tue, 4 Jan 2011 08:03:17 +0000 (00:03 -0800)]
cmd/import-rsnapshot: fix some sh stylistic stuff.

Should not affect functionality.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoFix some 'print' to stdout that snuck in somehow.
Avery Pennarun [Tue, 4 Jan 2011 08:09:12 +0000 (00:09 -0800)]
Fix some 'print' to stdout that snuck in somehow.

We should be using debug1() or debug2() instead, most of the time.  print is
only for stuff that callers might actually want to read and parse.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/import-rsnapshot: fix a bashism (== instead of =).
Avery Pennarun [Mon, 3 Jan 2011 21:12:32 +0000 (13:12 -0800)]
cmd/import-rsnapshot: fix a bashism (== instead of =).

Bug reported by Brandon Low.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoMerge branches 'gf/ls', 'gf/tag', 'zz/import-rsnapshot' and 'bl/selfindex' bup-0.21-rc1
Avery Pennarun [Mon, 3 Jan 2011 04:58:35 +0000 (20:58 -0800)]
Merge branches 'gf/ls', 'gf/tag', 'zz/import-rsnapshot' and 'bl/selfindex'

* gf/ls:
  ls-cmd: hide files with a leading dot by default

* gf/tag:
  Refuse branch/tag names that start with a dot
  tag-cmd: Some fixups

* zz/import-rsnapshot:
  Adds a testcase for import-rsnapshot.
  Makes import-rsnapshot use save's -f option.
  Adds -f option to save to use a given indexfile.
  Makefile: handle shell commands (cmd/*-cmd.sh)
  Adds documentation for bup-import-rsnapshot
  Adds import-rsnapshot command.
  Adds documentation for save's strip option.
  Adds testcases for --strip and --strip-path.
  Adds a strip and strip-path option to bup save.

* bl/selfindex:
  Rename receive-objects command to receive-objects-v2.
  Write idxs directly rather than using git-index-pack.
  Send SHAs from the client to reduce server load
  Use chunkyreader() instead of manually reading multiple blocks.

13 years agoAdds a testcase for import-rsnapshot.
Zoran Zaric [Mon, 6 Dec 2010 12:00:10 +0000 (13:00 +0100)]
Adds a testcase for import-rsnapshot.

Also makes import-rsnapshot use $BUP_MAIN_EXE if available.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoMakes import-rsnapshot use save's -f option.
Zoran Zaric [Mon, 6 Dec 2010 12:00:09 +0000 (13:00 +0100)]
Makes import-rsnapshot use save's -f option.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds -f option to save to use a given indexfile.
Zoran Zaric [Mon, 6 Dec 2010 12:00:08 +0000 (13:00 +0100)]
Adds -f option to save to use a given indexfile.

index supported -f before but save didn't.  Using a specific indexfile
makes it possible to use temporary indexfiles for one-time-backups like
imports.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoMakefile: handle shell commands (cmd/*-cmd.sh)
Zoran Zaric [Mon, 6 Dec 2010 12:00:07 +0000 (13:00 +0100)]
Makefile: handle shell commands (cmd/*-cmd.sh)

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds documentation for bup-import-rsnapshot
Zoran Zaric [Mon, 6 Dec 2010 12:00:06 +0000 (13:00 +0100)]
Adds documentation for bup-import-rsnapshot

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds import-rsnapshot command.
Zoran Zaric [Mon, 6 Dec 2010 12:00:05 +0000 (13:00 +0100)]
Adds import-rsnapshot command.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds documentation for save's strip option.
Zoran Zaric [Mon, 6 Dec 2010 12:00:04 +0000 (13:00 +0100)]
Adds documentation for save's strip option.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds testcases for --strip and --strip-path.
Zoran Zaric [Mon, 6 Dec 2010 12:00:03 +0000 (13:00 +0100)]
Adds testcases for --strip and --strip-path.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds a strip and strip-path option to bup save.
Zoran Zaric [Mon, 6 Dec 2010 12:00:02 +0000 (13:00 +0100)]
Adds a strip and strip-path option to bup save.

If the strip option is given bup uses all given filenames as base paths
and tries to stripe them from long to short.

If the strip-path option is given bup strip the given prefix from all
paths.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoRefuse branch/tag names that start with a dot
Gabriel Filion [Thu, 2 Dec 2010 23:01:41 +0000 (18:01 -0500)]
Refuse branch/tag names that start with a dot

In git, branch and tag names are not allowed to start with a dot.

In bup, we also want to enforce this since we want to avoid collision with the
top-level special directories (.commit and .tag).

Also, in save-cmd, there was an unused variable at line 286. 'oldref' is used
and contains the same thing so get rid of 'ref'.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agotag-cmd: Some fixups
Gabriel Filion [Thu, 2 Dec 2010 23:01:40 +0000 (18:01 -0500)]
tag-cmd: Some fixups

* Make some error messages nicer in telling the tag name that was used.

* Move tag listing code in git.py and use this code in tag-cmd and vfs.py

* Make tag-cmd output the list of tags on stdout instead of stderr

* Don't error out when more than 2 arguments are given. When there are less
  than 2, be nice and show the usage.

* In tag-cmd, catch GitErrors that come out of git.rev_parse()

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agols-cmd: hide files with a leading dot by default
Gabriel Filion [Thu, 2 Dec 2010 22:58:42 +0000 (17:58 -0500)]
ls-cmd: hide files with a leading dot by default

All of the frontends currently don't show hidden files by default (named with a
leading dot).

Make ls-cmd hide those files by default and add an option, '-a' or '--all', to
make it possible to show hidden files.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agoRename receive-objects command to receive-objects-v2.
Avery Pennarun [Mon, 3 Jan 2011 04:38:44 +0000 (20:38 -0800)]
Rename receive-objects command to receive-objects-v2.

...since it's incompatible with the old one.  That will make it die more
spectacularly when talking to an old-style server, rather than failing in
more confusing ways.

Theoretically we could do fancy things like making our server support both
variants of receive-objects, but hey, bup is a pre-release, it shouldn't be
acquiring backwards compatibility cruft *already* :)

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoWrite idxs directly rather than using git-index-pack.
Brandon Low [Mon, 3 Jan 2011 03:40:51 +0000 (19:40 -0800)]
Write idxs directly rather than using git-index-pack.

Also add a test round trip on idx r/w.

(Rearranged by apenwarr mostly due to merge conflicts.)

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoSend SHAs from the client to reduce server load
Brandon Low [Sun, 2 Jan 2011 08:49:23 +0000 (00:49 -0800)]
Send SHAs from the client to reduce server load

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoUse chunkyreader() instead of manually reading multiple blocks.
Brandon Low [Sun, 2 Jan 2011 08:49:22 +0000 (00:49 -0800)]
Use chunkyreader() instead of manually reading multiple blocks.

Signed-off-by: Brandon Low <lostlogic@lostlogicx.com>
13 years agoSkip over invalid .idx files if we find any.
Avery Pennarun [Thu, 23 Dec 2010 02:08:58 +0000 (18:08 -0800)]
Skip over invalid .idx files if we find any.

There's no particular reason to make it fatal; just pretend they're not
there.

Zoran reported a bug where he had (it seems) some zero-length .idx files,
which is weird, but nothing worth aborting a backup over.

Also, fix _mmap_do() to be able to handle mmap'ing a zero-length file
without an error.  It's a trivial and somewhat pointless operation, but it
shouldn't throw an exception.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/server: find .idx filenames more efficiently when needed.
Avery Pennarun [Wed, 22 Dec 2010 18:49:20 +0000 (10:49 -0800)]
cmd/server: find .idx filenames more efficiently when needed.

Rather than mapping *all* the .idx files into memory at once just to look up
a single object, just open/read/close them sequentially.  This should
significantly increase the total repo size on a 32-bit system.  (Of course,
it's still not very ideal; we really should have some kind of fallback mode
for when our total set of indexes starts getting too big.)

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoREADME.md: suggest using apt-get build-dep.
Jon Dowland [Sat, 18 Dec 2010 07:14:15 +0000 (23:14 -0800)]
README.md: suggest using apt-get build-dep.

13 years agocmd/memtest: stop using weird mmap() and /dev/urandom tricks.
Avery Pennarun [Sat, 4 Dec 2010 14:13:16 +0000 (06:13 -0800)]
cmd/memtest: stop using weird mmap() and /dev/urandom tricks.

I'll just write a C function that can rapidly generate random sha1s.  This
should make it more portable, hopefully fixing a problem reported by Michael
Budde on a Linux/SPARC system.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoReplace a try/except/finally with a nested try block.
Michael Budde [Sat, 4 Dec 2010 13:49:08 +0000 (05:49 -0800)]
Replace a try/except/finally with a nested try block.

try/except/finally doesn't work in python 2.4.

13 years agoUse PyLong_FromUnsignedLong instead of Py_BuildValue("I")
Avery Pennarun [Fri, 3 Dec 2010 19:08:03 +0000 (11:08 -0800)]
Use PyLong_FromUnsignedLong instead of Py_BuildValue("I")

...for python-pre-2.4.3 compatibility.  The "I" option was broken before
python 2.4.3, even though it was supposed to be supported since python 2.3.

Reported by Michael Budde.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoRenames --exclude-file to --exclude-from and encaspulates exclude-parsing.
Zoran Zaric [Thu, 2 Dec 2010 06:24:14 +0000 (07:24 +0100)]
Renames --exclude-file to --exclude-from and encaspulates exclude-parsing.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds documentation for --exclude and --exclude-file to bup indexes manpage.
Zoran Zaric [Thu, 2 Dec 2010 06:24:13 +0000 (07:24 +0100)]
Adds documentation for --exclude and --exclude-file to bup indexes manpage.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds --exclude-file option to bup index.
Zoran Zaric [Thu, 2 Dec 2010 06:24:12 +0000 (07:24 +0100)]
Adds --exclude-file option to bup index.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoAdds --exclude option to bup index and bup drecurse
Zoran Zaric [Thu, 2 Dec 2010 06:24:11 +0000 (07:24 +0100)]
Adds --exclude option to bup index and bup drecurse

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agocmd/midx: differentiate the log message from the index.py merging.
Avery Pennarun [Thu, 2 Dec 2010 00:02:03 +0000 (16:02 -0800)]
cmd/midx: differentiate the log message from the index.py merging.

It's a curse (inherited from git) that .idx files are called "indexes" and
the bupindex is called an "index."  Let's change the message in cmd/midx so
at least we'll know which kind of index people are complaining about.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/index: fix documented default value for --indexfile.
Avery Pennarun [Wed, 1 Dec 2010 11:11:26 +0000 (03:11 -0800)]
cmd/index: fix documented default value for --indexfile.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agomidx: auto-remove midx files that refer to missing .idx files.
Avery Pennarun [Wed, 1 Dec 2010 10:44:18 +0000 (02:44 -0800)]
midx: auto-remove midx files that refer to missing .idx files.

Normally an .idx file doesn't ever disappear, but it could happen if you run
'git gc' on your repository.  Which I thought would be a terrible idea, but
apparently it can actually save a lot of space for some people (although it
takes a pretty long time to run).  And when that happens, all your .idx
files move around.  So let's be polite when that happens.  We'll print a
warning the first time, but then shut up after that since the flawed midx
file will just go away.

Reported by Peter Rabbitson.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoadd a tag command
Gabriel Filion [Fri, 26 Nov 2010 11:00:35 +0000 (06:00 -0500)]
add a tag command

Currently implemented: list all tags, add a tag on a specific commit or
head, delete a known tag.

Also, make vfs expose a new directory called '/.tag' which contains a
link for each tag to its associated commit directory situated in
'/.commit'. Finally, make tags appear as symlinks on branch directories
on which the tagged commit is visible.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agoMove commit directories in /.commit/??/
Gabriel Filion [Fri, 26 Nov 2010 11:00:34 +0000 (06:00 -0500)]
Move commit directories in /.commit/??/

Currently, directories in which we can access files of a particular
commit are placed in each branch directory by which it is reachable.

To avoid possible repetitions of commit directories, move the
directories in a new top level hidden directory named /.commit.

This hidden directory is structured as a two level-deep directory
structure, wherein the first level represents the first byte (two
hexadecimal characters) of commit hashes, and the second level
represents the remainder of the hash.

With this movement, branch directories now contain only symlinks to the
commit directories in /.commit/??/

Also, in BranchList (formerly CommitList), the 'latest' commit was
computed on every iteration over a commit. I moved this calculation up
one level so that it is computed only once.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agoAdds test for exclude-bupdir.
Zoran Zaric [Tue, 16 Nov 2010 09:12:55 +0000 (10:12 +0100)]
Adds test for exclude-bupdir.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoExcludes BUP_DIR from index.
Zoran Zaric [Tue, 16 Nov 2010 09:12:54 +0000 (10:12 +0100)]
Excludes BUP_DIR from index.

Signed-off-by: Zoran Zaric <zz@zoranzaric.de>
13 years agoDocumentation/bup-split.md: fix a parser error.
Avery Pennarun [Wed, 1 Dec 2010 09:31:47 +0000 (01:31 -0800)]
Documentation/bup-split.md: fix a parser error.

The version of pandoc that I use doesn't like quotation marks, so use single
quotes instead.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/memtest: remove an unused function.
Avery Pennarun [Wed, 1 Dec 2010 09:31:31 +0000 (01:31 -0800)]
cmd/memtest: remove an unused function.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoREADME.md: give a suggestion for how to get more documentation.
Avery Pennarun [Wed, 1 Dec 2010 09:30:39 +0000 (01:30 -0800)]
README.md: give a suggestion for how to get more documentation.

Based on a request on the mailing list that pointed out there was no obvious
route from the README to the docs.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agot/test.sh: use /bin/pwd instead of just pwd.
Avery Pennarun [Sat, 13 Nov 2010 05:58:03 +0000 (21:58 -0800)]
t/test.sh: use /bin/pwd instead of just pwd.

$(pwd) seems to sometimes lie, because the shell uses the $PWD environment
variable.  If your PWD is a symlink, this can cause the test to fail since
bup figures out the path using a real call to getcwd().

Problem reported by Zenaan Harkness, though he never did acknowledge if this
fixes his problem :(

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoFix 'make test' on MacOS ("wc -l" returns extra whitespace).
Avery Pennarun [Wed, 10 Nov 2010 16:54:22 +0000 (08:54 -0800)]
Fix 'make test' on MacOS ("wc -l" returns extra whitespace).

By removing the comparison value from quotes, we tell the shell to ignore
whitespace.

Reported by Jimmy Tang.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoAdd make export-docs/push-docs/import-docs targets. bup-0.20
Avery Pennarun [Tue, 9 Nov 2010 06:05:54 +0000 (22:05 -0800)]
Add make export-docs/push-docs/import-docs targets.

export-docs: update local 'man' and 'html' branches with pregenerated doc
files.

push-docs: push those to origin/man and origin/html.

import-docs: extract the documentation from origin/man and origin/html into
the local tree so it can be installed.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoRevert (most of) "--remote parameter requires a colon"
Avery Pennarun [Tue, 9 Nov 2010 05:14:04 +0000 (21:14 -0800)]
Revert (most of) "--remote parameter requires a colon"

This reverts (most of) commit c135a5834a9bf9cd9c3382d6489f93e3fdabeafd.

Requiring a colon seems to be too fascist; it makes people think that you
can't use local repositories anymore, which wasn't true: you could just
refer to them as ":/path/to/repo".  But that's just too weird and
non-obvious.  It already resulted in a query on the mailing list, the
avoidance of which is why we added this patch in the first place.  So let's
take it back out.

I kept some minor clarifications and unit test improvements, however.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoAdd a coding style document.
Gabriel Filion [Mon, 11 Oct 2010 18:41:26 +0000 (14:41 -0400)]
Add a coding style document.

The document is largely inspired by the one in Scott Chacon's "HACKING"
file [1] in his 'agitmemnon-server' repository on GitHub with some
precision on the docstring style that was adopted for bup.

http://github.com/schacon/agitmemnon-server/blob/master/HACKING

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agoRevert new-style classes
Gabriel Filion [Mon, 11 Oct 2010 18:30:51 +0000 (14:30 -0400)]
Revert new-style classes

Some classes were changed to "new-style" Python classes in c7a0f06.

Following a discussion on the mailing list about the relevance of such a
change, it was noted that the features that new-style classes bring are
not used in bup, and considering their slightly higher cost in
instantiating them and accessing their attributes, it is decided that we
don't change to using them.

Revert the changed clases back to old-style classes so that all code is
consistent.

Signed-off-by: Gabriel Filion <lelutin@gmail.com>
13 years agoIf not directory root, prepend list with ".."
David Roda [Thu, 23 Sep 2010 12:35:55 +0000 (08:35 -0400)]
If not directory root, prepend list with ".."

Add a link to the file list to traverse up a directory if we
are not already at the top

Signed-off-by: David Roda <davidcroda@gmail.com>
13 years agoUse relative width for wrapper. Don't stretch table
David Roda [Thu, 23 Sep 2010 12:35:54 +0000 (08:35 -0400)]
Use relative width for wrapper. Don't stretch table

Switched wrapper from 960px to 90%
Removed width from table and columns to allow the
browser to properly auto align them

Signed-off-by: David Roda <davidcroda@gmail.com>
13 years agoDESIGN: 'bup restore' exists now.
Avery Pennarun [Mon, 18 Oct 2010 16:45:11 +0000 (10:45 -0600)]
DESIGN: 'bup restore' exists now.

Reported by Dieter Plaetinck.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/save: if file.read() returns an error, don't abort.
Avery Pennarun [Sat, 16 Oct 2010 23:55:16 +0000 (17:55 -0600)]
cmd/save: if file.read() returns an error, don't abort.

Apparently some mis-implemented Linux filesystems (selinuxfs) have regular
files that can be opened for read, but return EINVAL when you try to read
them.  We would throw a fatal exception in that case (since we're not
supposed to have read errors ever, and thus that implies something happened
that we didn't think of) but I guess we'd better make this into a non-fatal
error.  It still makes the exit code nonzero so you can see that something
didn't work, though.

Reported by Zoran Zaric.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoMerge remote branch 'origin/master'
Avery Pennarun [Mon, 4 Oct 2010 04:34:57 +0000 (21:34 -0700)]
Merge remote branch 'origin/master'

* origin/master:
  cmd/web: stream large files asynchronously.
  cmd/save: oops, missing a mangle_name() call.

13 years agocmd/web: stream large files asynchronously.
Avery Pennarun [Mon, 4 Oct 2010 03:41:09 +0000 (20:41 -0700)]
cmd/web: stream large files asynchronously.

We had a nice chunkyreader() loop for writing files, but unfortunately,
Tornado captured the full content of those files before writing them to the
client.  Oops.

Change things around so we don't end up buffering some multiple of the
ENTIRE FILE in memory.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/save: oops, missing a mangle_name() call.
Avery Pennarun [Mon, 4 Oct 2010 03:02:20 +0000 (20:02 -0700)]
cmd/save: oops, missing a mangle_name() call.

Directories with names ending in '.bup' - including ~/.bup, sigh - didn't
get the .bupl suffix added, thus making their sizes not calculate correctly.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/split: print a progress counter.
Avery Pennarun [Wed, 22 Sep 2010 14:13:18 +0000 (07:13 -0700)]
cmd/split: print a progress counter.

We don't know how many bytes we're going to split in total, but we can at
least print the total number of bytes we've seen so far.

Also fix cmd/random to *not* print progress messages by default, since my
test situation is
bup random 100M | bup split -b
and they scribble over each other when they both print progress output.  bup
random now gets a '-v' option.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agogit.py: support the old git pack .idx version 1 format.
Avery Pennarun [Wed, 22 Sep 2010 13:46:16 +0000 (06:46 -0700)]
git.py: support the old git pack .idx version 1 format.

It's produced by git-fast-import, and I happen to want to read some of
those.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agogit.py: more careful handling of .idx version codes.
Avery Pennarun [Wed, 22 Sep 2010 13:27:05 +0000 (06:27 -0700)]
git.py: more careful handling of .idx version codes.

Now it prints a useful error if it sees a version 1 pack (no header) or some
newer as-yet-undefined version.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/split: add a --git-ids option.
Avery Pennarun [Wed, 22 Sep 2010 13:02:32 +0000 (06:02 -0700)]
cmd/split: add a --git-ids option.

This lets you provide a list of git object ids on stdin instead of the raw
content.  bup-split then uses a CatPipe to retrieve the objects from git and
hashsplit them.  You could use this as a helper for converting a git repo
that contains a bunch of large files into one that uses bup-style hashsplit
files.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agocmd/split: add a new --keep-boundaries option.
Avery Pennarun [Wed, 22 Sep 2010 12:07:33 +0000 (05:07 -0700)]
cmd/split: add a new --keep-boundaries option.

If you provide multiple input files on the command line, sometimes you want
to merge them togther into a single file before re-chunking them (the
default).  But sometimes you want all the files to be treated separately for
chunking purposes, ie. when you know that some of the files will never
change so there's never any point in merging it with previous/subsequent
files.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
13 years agoMerge branch 'dr/web'
Avery Pennarun [Wed, 22 Sep 2010 02:00:00 +0000 (19:00 -0700)]
Merge branch 'dr/web'

* drweb:
  Add simple styling to bup web.
  If we are showing hidden files, continue to do so.
  Enable static resources. Move css to external file.