~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-04-07 04:44:56 UTC
  • mfrom: (3297.1.3 test-progress)
  • Revision ID: pqm@pqm.ubuntu.com-20080407044456-s1a9orh0kssphdh9
(mbp) more compact test progress counter

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Helper functions for adding files to working trees."""
18
18
 
 
19
import errno
 
20
import os
19
21
import sys
20
22
 
21
23
import bzrlib.bzrdir
 
24
import bzrlib.errors as errors
22
25
import bzrlib.osutils
23
26
from bzrlib.symbol_versioning import *
 
27
from bzrlib.workingtree import WorkingTree
24
28
 
25
29
 
26
30
class AddAction(object):
31
35
 
32
36
        :param to_file: The stream to write into. This is expected to take
33
37
            Unicode paths. If not supplied, it will default to ``sys.stdout``.
34
 
        :param should_print: If False, printing will be suppressed.
 
38
        :param should_print: If False, printing will be supressed.
35
39
        """
36
40
        self._to_file = to_file
37
41
        if to_file is None:
50
54
        :param kind: The kind of the object being added.
51
55
        """
52
56
        if self.should_print:
53
 
            self._to_file.write('adding %s\n' % _quote(path.raw_path))
 
57
            self._to_file.write('added %s\n' % _quote(path.raw_path))
54
58
        return None
55
59
 
56
60
 
69
73
        file_id, base_path = self._get_base_file_id(path, parent_ie)
70
74
        if file_id is not None:
71
75
            if self.should_print:
72
 
                self._to_file.write('adding %s w/ file id from %s\n'
 
76
                self._to_file.write('added %s w/ file id from %s\n'
73
77
                                    % (path.raw_path, base_path))
74
78
        else:
75
79
            # we aren't doing anything special, so let the default
106
110
add_action_null = add_action_add
107
111
add_action_add_and_print = AddAction(should_print=True)
108
112
add_action_print = add_action_add_and_print
 
113
 
 
114
 
 
115
@deprecated_function(zero_eighteen)
 
116
def smart_add(file_list, recurse=True, action=None, save=True):
 
117
    """Add files to version, optionally recursing into directories.
 
118
 
 
119
    This is designed more towards DWIM for humans than API simplicity.
 
120
    For the specific behaviour see the help for cmd_add().
 
121
 
 
122
    Returns the number of files added.
 
123
    Deprecated in 0.18. Please use MutableTree.smart_add.
 
124
    """
 
125
    tree = WorkingTree.open_containing(file_list[0])[0]
 
126
    return smart_add_tree(tree, file_list, recurse, action=action, save=save)
 
127
 
 
128
 
 
129
@deprecated_function(zero_eighteen)
 
130
def smart_add_tree(tree, file_list, recurse=True, action=None, save=True):
 
131
    """Deprecated in 0.18. Please use MutableTree.smart_add."""
 
132
    return tree.smart_add(file_list, recurse, action, save)
 
133