~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 04:47:33 UTC
  • Revision ID: mbp@sourcefrog.net-20050606044733-e902b05ac1747cd2
- fix invocation of testbzr when giving explicit bzr location

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
import os, sys
 
18
import bzrlib
 
19
 
17
20
from trace import mutter, note
18
21
 
19
 
def glob_expand_for_win32(file_list):
20
 
    import glob
21
 
    
22
 
    expanded_file_list = []
23
 
    for possible_glob in file_list:
24
 
        glob_files = glob.glob(possible_glob)
25
 
       
26
 
        if glob_files == []:
27
 
            # special case to let the normal code path handle
28
 
            # files that do not exists
29
 
            expanded_file_list.append(possible_glob)
30
 
        else:
31
 
            expanded_file_list += glob_files
32
 
    return expanded_file_list
33
 
 
34
22
def smart_add(file_list, verbose=True, recurse=True):
35
23
    """Add files to version, optionally recursing into directories.
36
24
 
37
25
    This is designed more towards DWIM for humans than API simplicity.
38
26
    For the specific behaviour see the help for cmd_add().
39
27
    """
40
 
    import os
41
 
    import sys
42
28
    from bzrlib.osutils import quotefn, kind_marker
43
29
    from bzrlib.errors import BadFileKindError, ForbiddenFileError
44
 
    import bzrlib.branch
45
 
    import bzrlib.osutils
46
30
 
47
 
    if sys.platform == 'win32':
48
 
        file_list = glob_expand_for_win32(file_list)
49
 
        
50
 
    if not file_list:
51
 
        file_list = ['.']
52
 
    
 
31
    assert file_list
53
32
    user_list = file_list[:]
54
33
    assert not isinstance(file_list, basestring)
55
34
    b = bzrlib.branch.Branch(file_list[0], find_root=True)
70
49
                print "skipping %s (can't add file of kind '%s')" % (f, kind)
71
50
                continue
72
51
 
73
 
        mutter("smart add of %r, abs=%r" % (f, af))
 
52
        bzrlib.mutter("smart add of %r, abs=%r" % (f, af))
74
53
        
75
54
        if bzrlib.branch.is_control_file(af):
76
55
            raise ForbiddenFileError('cannot add control file %s' % f)
84
63
        else:
85
64
            file_id = bzrlib.branch.gen_file_id(rf)
86
65
            inv.add_path(rf, kind=kind, file_id=file_id)
87
 
            mutter("added %r kind %r file_id={%s}" % (rf, kind, file_id))
 
66
            bzrlib.mutter("added %r kind %r file_id={%s}" % (rf, kind, file_id))
88
67
            count += 1 
89
68
 
90
69
            print 'added', quotefn(f)
104
83
        if verbose:
105
84
            note('added %d' % count)
106
85
        b._write_inventory(inv)
107
 
    else:
108
 
        print "nothing new to add"
109
 
        # should this return 1 to the shell?