~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Robert Collins
  • Date: 2005-10-10 00:05:25 UTC
  • Revision ID: robertc@robertcollins.net-20051010000525-cbfcc0ff413510c5
BUGFIX: disable symlink support tests when no symlink support is present on the system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
from os.path import dirname
 
18
 
 
19
import bzrlib.errors as errors
 
20
from bzrlib.inventory import InventoryEntry
17
21
from bzrlib.trace import mutter, note, warning
18
22
from bzrlib.errors import NotBranchError
19
23
from bzrlib.branch import Branch
21
25
 
22
26
def glob_expand_for_win32(file_list):
23
27
    import glob
24
 
    
25
28
    expanded_file_list = []
26
29
    for possible_glob in file_list:
27
30
        glob_files = glob.glob(possible_glob)
63
66
    Returns the number of files added.
64
67
    """
65
68
    file_list = _prepare_file_list(file_list)
66
 
    b = Branch(file_list[0], find_root=True)
 
69
    b = Branch.open_containing(file_list[0])
67
70
    return smart_add_branch(b, file_list, recurse, reporter)
68
71
 
69
72
        
78
81
    Returns the number of files added.
79
82
    """
80
83
    import os
81
 
    import sys
82
 
    from bzrlib.osutils import quotefn
83
84
    from bzrlib.errors import BadFileKindError, ForbiddenFileError
84
85
    import bzrlib.branch
85
 
    import bzrlib.osutils
86
86
 
87
87
    assert isinstance(recurse, bool)
88
88
 
98
98
 
99
99
        kind = bzrlib.osutils.file_kind(af)
100
100
 
101
 
        if kind != 'file' and kind != 'directory':
 
101
        if not InventoryEntry.versionable_kind(kind):
102
102
            if f in user_list:
103
103
                raise BadFileKindError("cannot add %s of type %s" % (f, kind))
104
104
            else:
114
114
 
115
115
        if kind == 'directory':
116
116
            try:
117
 
                sub_branch = Branch(af, find_root=False)
 
117
                sub_branch = Branch.open(af)
118
118
                sub_tree = True
119
119
            except NotBranchError:
120
120
                sub_tree = False
 
121
            except errors.UnsupportedFormatError:
 
122
                sub_tree = True
121
123
        else:
122
124
            sub_tree = False
123
125
 
129
131
        elif sub_tree:
130
132
            mutter("%r is a bzr tree" %f)
131
133
        else:
132
 
            entry = inv.add_path(rf, kind=kind)
133
 
            mutter("added %r kind %r file_id={%s}" % (rf, kind, entry.file_id))
134
 
            count += 1 
135
 
            reporter(rf, kind, entry)
 
134
            count += __add_one(branch, inv, rf, kind, reporter)
136
135
 
137
136
        if kind == 'directory' and recurse and not sub_tree:
138
137
            for subf in os.listdir(af):
152
151
        branch._write_inventory(inv)
153
152
 
154
153
    return count
 
154
 
 
155
def __add_one(branch, inv, path, kind, reporter):
 
156
    """Add a file or directory, automatically add unversioned parents."""
 
157
 
 
158
    # Nothing to do if path is already versioned.
 
159
    # This is safe from infinite recursion because the branch root is
 
160
    # always versioned.
 
161
    if inv.path2id(path) != None:
 
162
        return 0
 
163
 
 
164
    # add parent
 
165
    count = __add_one(branch, inv, dirname(path), 'directory', reporter)
 
166
 
 
167
    entry = inv.add_path(path, kind=kind)
 
168
    mutter("added %r kind %r file_id={%s}" % (path, kind, entry.file_id))
 
169
    reporter(path, kind, entry)
 
170
 
 
171
    return count + 1