~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Robert Collins
  • Date: 2005-09-14 09:01:06 UTC
  • mto: (1185.1.12)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: robertc@robertcollins.net-20050914090106-50ddfad9500a8ae9
make diff lsdiff/filterdiff friendly

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
from bzrlib.errors import NotBranchError
19
19
from bzrlib.branch import Branch
20
20
from bzrlib.osutils import quotefn
 
21
from os.path import dirname
21
22
 
22
23
def glob_expand_for_win32(file_list):
23
24
    import glob
35
36
    return expanded_file_list
36
37
 
37
38
 
38
 
def _NullAddCallback(path, kind, entry):
 
39
def add_reporter_null(path, kind, entry):
 
40
    """Absorb add reports and do nothing."""
39
41
    pass
40
42
 
41
 
def _PrintAddCallback(path, kind, entry):
 
43
def add_reporter_print(path, kind, entry):
 
44
    """Print a line to stdout for each file that's added."""
42
45
    print "added", quotefn(path)
43
46
    
44
47
def _prepare_file_list(file_list):
49
52
    if not file_list:
50
53
        file_list = ['.']
51
54
    file_list = list(file_list)
52
 
    assert not isinstance(file_list, basestring)
53
55
    return file_list
54
56
 
55
 
def smart_add(file_list, verbose=True, recurse=True, callback=_NullAddCallback):
 
57
 
 
58
def smart_add(file_list, recurse=True, reporter=add_reporter_null):
56
59
    """Add files to version, optionally recursing into directories.
57
60
 
58
61
    This is designed more towards DWIM for humans than API simplicity.
59
62
    For the specific behaviour see the help for cmd_add().
 
63
 
 
64
    Returns the number of files added.
60
65
    """
61
66
    file_list = _prepare_file_list(file_list)
62
67
    b = Branch(file_list[0], find_root=True)
63
 
    return smart_add_branch(b, file_list, verbose, recurse)
 
68
    return smart_add_branch(b, file_list, recurse, reporter)
 
69
 
64
70
        
65
 
def smart_add_branch(branch, file_list, verbose=True, recurse=True,
66
 
                     callback=_NullAddCallback):
 
71
def smart_add_branch(branch, file_list, recurse=True, reporter=add_reporter_null):
67
72
    """Add files to version, optionally recursing into directories.
68
73
 
69
74
    This is designed more towards DWIM for humans than API simplicity.
70
75
    For the specific behaviour see the help for cmd_add().
71
76
 
72
77
    This yields a sequence of (path, kind, file_id) for added files.
 
78
 
 
79
    Returns the number of files added.
73
80
    """
74
81
    import os
75
 
    import sys
76
 
    from bzrlib.osutils import quotefn
77
82
    from bzrlib.errors import BadFileKindError, ForbiddenFileError
78
83
    import bzrlib.branch
79
 
    import bzrlib.osutils
 
84
 
 
85
    assert isinstance(recurse, bool)
80
86
 
81
87
    file_list = _prepare_file_list(file_list)
82
88
    user_list = file_list[:]
121
127
        elif sub_tree:
122
128
            mutter("%r is a bzr tree" %f)
123
129
        else:
124
 
            entry = inv.add_path(rf, kind=kind)
125
 
            mutter("added %r kind %r file_id={%s}" % (rf, kind, entry.file_id))
126
 
            count += 1 
127
 
            callback(rf, kind, entry)
 
130
            count += __add_one(branch, inv, rf, kind, reporter)
128
131
 
129
132
        if kind == 'directory' and recurse and not sub_tree:
130
133
            for subf in os.listdir(af):
138
141
                    file_list.append(branch.abspath(subp))
139
142
 
140
143
 
 
144
    mutter('added %d entries', count)
 
145
    
141
146
    if count > 0:
142
 
        if verbose:
143
 
            note('added %d' % count)
144
147
        branch._write_inventory(inv)
145
 
    else:
146
 
        note("nothing new to add")
147
 
        # should this return 1 to the shell?
 
148
 
 
149
    return count
 
150
 
 
151
def __add_one(branch, inv, path, kind, reporter):
 
152
    """Add a file or directory, automatically add unversioned parents."""
 
153
 
 
154
    # Nothing to do if path is already versioned.
 
155
    # This is safe from infinite recursion because the branch root is
 
156
    # always versioned.
 
157
    if inv.path2id(path) != None:
 
158
        return 0
 
159
 
 
160
    # add parent
 
161
    count = __add_one(branch, inv, dirname(path), 'directory', reporter)
 
162
 
 
163
    entry = inv.add_path(path, kind=kind)
 
164
    mutter("added %r kind %r file_id={%s}" % (path, kind, entry.file_id))
 
165
    reporter(path, kind, entry)
 
166
 
 
167
    return count + 1