~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Martin Pool
  • Date: 2005-06-06 13:24:18 UTC
  • Revision ID: mbp@sourcefrog.net-20050606132418-1082c87e2473e266
- manpage generator by Hans Ulrich Niedermann

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