~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-05 08:20:03 UTC
  • Revision ID: mbp@sourcefrog.net-20050405082003-2843e7b2e22e3df2
Start of shell-based black-box testing in test.sh

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import os, sys
18
18
import bzrlib
19
19
 
 
20
from osutils import quotefn, appendpath
 
21
from errors import bailout
20
22
from trace import mutter, note
21
23
 
22
 
def smart_add(file_list, verbose=True, recurse=True):
23
 
    """Add files to version, optionally recursing into directories.
 
24
def smart_add(file_list, verbose=False, recurse=True):
 
25
    """Add files to version, optionall recursing into directories.
24
26
 
25
27
    This is designed more towards DWIM for humans than API simplicity.
26
28
    For the specific behaviour see the help for cmd_add().
27
29
    """
28
 
    from bzrlib.osutils import quotefn, kind_marker
29
 
    from bzrlib.errors import BadFileKindError, ForbiddenFileError
30
 
 
31
30
    assert file_list
32
 
    user_list = file_list[:]
33
31
    assert not isinstance(file_list, basestring)
34
32
    b = bzrlib.branch.Branch(file_list[0], find_root=True)
35
33
    inv = b.read_working_inventory()
40
38
        rf = b.relpath(f)
41
39
        af = b.abspath(rf)
42
40
 
43
 
        kind = bzrlib.osutils.file_kind(af)
44
 
 
45
 
        if kind != 'file' and kind != 'directory':
46
 
            if f in user_list:
47
 
                raise BadFileKindError("cannot add %s of type %s" % (f, kind))
48
 
            else:
49
 
                print "skipping %s (can't add file of kind '%s')" % (f, kind)
50
 
                continue
51
 
 
52
 
        bzrlib.mutter("smart add of %r, abs=%r" % (f, af))
 
41
        ## TODO: It's OK to add root but only in recursive mode
 
42
 
 
43
        bzrlib.mutter("smart add of %r" % f)
53
44
        
54
45
        if bzrlib.branch.is_control_file(af):
55
 
            raise ForbiddenFileError('cannot add control file %s' % f)
 
46
            bailout("cannot add control file %r" % af)
 
47
 
 
48
        kind = bzrlib.osutils.file_kind(f)
 
49
 
 
50
        if kind != 'file' and kind != 'directory':
 
51
            bailout("can't add file of kind %r" % kind)
56
52
            
57
53
        versioned = (inv.path2id(rf) != None)
58
54
 
65
61
            inv.add_path(rf, kind=kind, file_id=file_id)
66
62
            bzrlib.mutter("added %r kind %r file_id={%s}" % (rf, kind, file_id))
67
63
            count += 1 
68
 
 
69
 
            print 'added', quotefn(f)
 
64
            if verbose:
 
65
                bzrlib.textui.show_status('A', kind, quotefn(f))
70
66
 
71
67
        if kind == 'directory' and recurse:
72
68
            for subf in os.listdir(af):
73
 
                subp = os.path.join(rf, subf)
 
69
                subp = appendpath(rf, subf)
74
70
                if subf == bzrlib.BZRDIR:
75
71
                    mutter("skip control directory %r" % subp)
76
72
                elif tree.is_ignored(subp):
77
73
                    mutter("skip ignored sub-file %r" % subp)
78
74
                else:
79
 
                    mutter("queue to add sub-file %r" % subp)
80
 
                    file_list.append(b.abspath(subp))
 
75
                    mutter("queue to add sub-file %r" % (subp))
 
76
                    file_list.append(subp)
81
77
 
82
78
    if count > 0:
83
79
        if verbose: