X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=main.py;h=ecc975fed5d274b7550f5b25a8aa9eaf7e18a0cd;hb=d926749abdfe849117bf95c721d6f1858fef1d12;hp=c8ffce2877da4cab5e0e6462c937ad0d6b21eec7;hpb=5a9bc0a6c31d2d0824261685b6ce7a359729436d;p=bup.git diff --git a/main.py b/main.py index c8ffce2..ecc975f 100755 --- a/main.py +++ b/main.py @@ -1,8 +1,15 @@ -#!/usr/bin/env python +#!/bin/sh +"""": # -*-python-*- # -*-python-*- +bup_python="$(dirname "$0")/cmd/bup-python" || exit $? +exec "$bup_python" "$0" ${1+"$@"} +""" +# end of bup preamble + import sys, os, subprocess, signal, getopt + argv = sys.argv -exe = argv[0] +exe = os.path.realpath(argv[0]) exepath = os.path.split(exe)[0] or '.' exeprefix = os.path.split(os.path.abspath(exepath))[0] @@ -23,8 +30,10 @@ os.environ['PYTHONPATH'] = libpath + ':' + os.environ.get('PYTHONPATH', '') os.environ['BUP_MAIN_EXE'] = os.path.abspath(exe) os.environ['BUP_RESOURCE_PATH'] = resourcepath + from bup import helpers -from bup.helpers import * +from bup.helpers import atoi, columnate, debug1, log, tty_width + # after running 'bup newliner', the tty_width() ioctl won't work anymore os.environ['WIDTH'] = str(tty_width()) @@ -74,11 +83,10 @@ if len(argv) < 2: try: optspec = ['help', 'version', 'debug', 'profile', 'bup-dir='] global_args, subcmd = getopt.getopt(argv[1:], '?VDd:', optspec) -except getopt.GetoptError, ex: +except getopt.GetoptError as ex: usage('error: %s' % ex.msg) help_requested = None -dest_dir = None do_profile = False for opt in global_args: @@ -92,10 +100,14 @@ for opt in global_args: elif opt[0] in ['--profile']: do_profile = True elif opt[0] in ['-d', '--bup-dir']: - dest_dir = opt[1] + os.environ['BUP_DIR'] = opt[1] else: usage('error: unexpected option "%s"' % opt[0]) +# Make BUP_DIR absolute, so we aren't affected by chdir (i.e. save -C, etc.). +if 'BUP_DIR' in os.environ: + os.environ['BUP_DIR'] = os.path.abspath(os.environ['BUP_DIR']) + if len(subcmd) == 0: if help_requested: subcmd = ['help'] @@ -112,10 +124,6 @@ subcmd_name = subcmd[0] if not subcmd_name: usage() -subcmd_env = os.environ -if dest_dir: - subcmd_env.update({"BUP_DIR" : dest_dir}) - def subpath(s): sp = os.path.join(exepath, 'bup-%s' % s) if not os.path.exists(sp): @@ -152,19 +160,29 @@ else: outf = None errf = None +ret = 95 +p = None +forward_signals = True -class SigException(Exception): - def __init__(self, signum): - self.signum = signum - Exception.__init__(self, 'signal %d received' % signum) def handler(signum, frame): - raise SigException(signum) + debug1('\nbup: signal %d received\n' % signum) + if not p or not forward_signals: + return + if signum != signal.SIGTSTP: + os.kill(p.pid, signum) + else: # SIGTSTP: stop the child, then ourselves. + os.kill(p.pid, signal.SIGSTOP) + signal.signal(signal.SIGTSTP, signal.SIG_DFL) + os.kill(os.getpid(), signal.SIGTSTP) + # Back from suspend -- reestablish the handler. + signal.signal(signal.SIGTSTP, handler) + ret = 94 signal.signal(signal.SIGTERM, handler) signal.signal(signal.SIGINT, handler) +signal.signal(signal.SIGTSTP, handler) +signal.signal(signal.SIGCONT, handler) -ret = 95 -p = None try: try: c = (do_profile and [sys.executable, '-m', 'cProfile'] or []) + subcmd @@ -177,14 +195,10 @@ try: while 1: # if we get a signal while waiting, we have to keep waiting, just # in case our child doesn't die. - try: - ret = p.wait() - break - except SigException, e: - log('\nbup: %s\n' % e) - os.kill(p.pid, e.signum) - ret = 94 - except OSError, e: + ret = p.wait() + forward_signals = False + break + except OSError as e: log('%s: %s\n' % (subcmd[0], e)) ret = 98 finally: