~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/status.py

  • Committer: Mark Hammond
  • Date: 2009-01-12 01:55:34 UTC
  • mto: (3995.8.2 prepare-1.12)
  • mto: This revision was merged to the branch mainline in revision 4007.
  • Revision ID: mhammond@skippinet.com.au-20090112015534-yfxg50p7mpds9j4v
Include all .html files from the tortoise doc directory.

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
import sys
18
18
 
41
41
                     show_pending=True,
42
42
                     revision=None,
43
43
                     short=False,
44
 
                     verbose=False,
45
44
                     versioned=False):
46
45
    """Display summary of changes.
47
46
 
48
 
    By default this compares the working tree to a previous revision.
49
 
    If the revision argument is given, summarizes changes between the
 
47
    By default this compares the working tree to a previous revision. 
 
48
    If the revision argument is given, summarizes changes between the 
50
49
    working tree and another, or between two revisions.
51
50
 
52
 
    The result is written out as Unicode and to_file should be able
 
51
    The result is written out as Unicode and to_file should be able 
53
52
    to encode that.
54
53
 
55
54
    If showing the status of a working tree, extra information is included
56
55
    about unknown files, conflicts, and pending merges.
57
56
 
58
 
    :param show_unchanged: Deprecated parameter. If set, includes unchanged
 
57
    :param show_unchanged: Deprecated parameter. If set, includes unchanged 
59
58
        files.
60
59
    :param specific_files: If set, a list of filenames whose status should be
61
 
        shown.  It is an error to give a filename that is not in the working
 
60
        shown.  It is an error to give a filename that is not in the working 
62
61
        tree, or in the working inventory or in the basis inventory.
63
62
    :param show_ids: If set, includes each file's id.
64
63
    :param to_file: If set, write to this file (default stdout.)
68
67
        If one revision, compare with working tree.
69
68
        If two revisions, show status between first and second.
70
69
    :param short: If True, gives short SVN-style status lines.
71
 
    :param verbose: If True, show all merged revisions, not just
72
 
        the merge tips
73
70
    :param versioned: If True, only shows versioned files.
74
71
    """
75
72
    if show_unchanged is not None:
78
75
 
79
76
    if to_file is None:
80
77
        to_file = sys.stdout
81
 
 
 
78
    
82
79
    wt.lock_read()
83
80
    try:
84
81
        new_is_working_tree = True
103
100
        old.lock_read()
104
101
        new.lock_read()
105
102
        try:
106
 
            specific_files, nonexistents \
107
 
                = _filter_nonexistent(specific_files, old, new)
 
103
            _raise_if_nonexistent(specific_files, old, new)
108
104
            want_unversioned = not versioned
109
105
            if short:
110
106
                changes = new.iter_changes(old, show_unchanged, specific_files,
138
134
                else:
139
135
                    prefix = ' '
140
136
                to_file.write("%s %s\n" % (prefix, conflict))
141
 
            # Show files that were requested but don't exist (and are
142
 
            # not versioned).  We don't involve delta in this; these
143
 
            # paths are really the province of just the status
144
 
            # command, since they have more to do with how it was
145
 
            # invoked than with the tree it's operating on.
146
 
            if nonexistents and not short:
147
 
                to_file.write("nonexistent:\n")
148
 
            for nonexistent in nonexistents:
149
 
                # We could calculate prefix outside the loop but, given
150
 
                # how rarely this ought to happen, it's OK and arguably
151
 
                # slightly faster to do it here (ala conflicts above)
152
 
                if short:
153
 
                    prefix = 'X  '
154
 
                else:
155
 
                    prefix = ' '
156
 
                to_file.write("%s %s\n" % (prefix, nonexistent))
157
137
            if (new_is_working_tree and show_pending):
158
 
                show_pending_merges(new, to_file, short, verbose=verbose)
159
 
            if nonexistents:
160
 
                raise errors.PathsDoNotExist(nonexistents)
 
138
                show_pending_merges(new, to_file, short)
161
139
        finally:
162
140
            old.unlock()
163
141
            new.unlock()
191
169
    return sorter.iter_topo_order()
192
170
 
193
171
 
194
 
def show_pending_merges(new, to_file, short=False, verbose=False):
 
172
def show_pending_merges(new, to_file, short=False):
195
173
    """Write out a display of pending merges in a working tree."""
196
174
    parents = new.get_parent_ids()
197
175
    if len(parents) < 2:
198
176
        return
199
177
 
200
 
    term_width = osutils.terminal_width()
201
 
    if term_width is not None:
202
 
        # we need one extra space for terminals that wrap on last char
203
 
        term_width = term_width - 1
 
178
    # we need one extra space for terminals that wrap on last char
 
179
    term_width = osutils.terminal_width() - 1
204
180
    if short:
205
181
        first_prefix = 'P   '
206
182
        sub_prefix = 'P.   '
208
184
        first_prefix = '  '
209
185
        sub_prefix = '    '
210
186
 
211
 
    def show_log_message(rev, prefix):
212
 
        if term_width is None:
213
 
            width = term_width
214
 
        else:
215
 
            width = term_width - len(prefix)
216
 
        log_message = log_formatter.log_string(None, rev, width, prefix=prefix)
217
 
        to_file.write(log_message + '\n')
218
 
 
219
187
    pending = parents[1:]
220
188
    branch = new.branch
221
189
    last_revision = parents[0]
222
190
    if not short:
223
 
        if verbose:
224
 
            to_file.write('pending merges:\n')
225
 
        else:
226
 
            to_file.write('pending merge tips:'
227
 
                          ' (use -v to see all merge revisions)\n')
 
191
        to_file.write('pending merges:\n')
228
192
    graph = branch.repository.get_graph()
229
193
    other_revisions = [last_revision]
230
194
    log_formatter = log.LineLogFormatter(to_file)
238
202
            continue
239
203
 
240
204
        # Log the merge, as it gets a slightly different formatting
241
 
        show_log_message(rev, first_prefix)
242
 
        if not verbose:
243
 
            continue
244
 
 
 
205
        log_message = log_formatter.log_string(None, rev,
 
206
                        term_width - len(first_prefix))
 
207
        to_file.write(first_prefix + log_message + '\n')
245
208
        # Find all of the revisions in the merge source, which are not in the
246
209
        # last committed revision.
247
210
        merge_extra = graph.find_unique_ancestors(merge, other_revisions)
276
239
            if rev is None:
277
240
                to_file.write(sub_prefix + '(ghost) ' + sub_merge + '\n')
278
241
                continue
279
 
            show_log_message(revisions[sub_merge], sub_prefix)
280
 
 
281
 
 
282
 
def _filter_nonexistent(orig_paths, old_tree, new_tree):
283
 
    """Convert orig_paths to two sorted lists and return them.
284
 
 
285
 
    The first is orig_paths paths minus the items in the second list,
286
 
    and the second list is paths that are not in either inventory or
287
 
    tree (they don't qualify if they exist in the tree's inventory, or
288
 
    if they exist in the tree but are not versioned.)
289
 
 
290
 
    If either of the two lists is empty, return it as an empty list.
291
 
 
 
242
            log_message = log_formatter.log_string(None,
 
243
                            revisions[sub_merge],
 
244
                            term_width - len(sub_prefix))
 
245
            to_file.write(sub_prefix + log_message + '\n')
 
246
 
 
247
 
 
248
def _raise_if_nonexistent(paths, old_tree, new_tree):
 
249
    """Complain if paths are not in either inventory or tree.
 
250
 
 
251
    It's OK with the files exist in either tree's inventory, or 
 
252
    if they exist in the tree but are not versioned.
 
253
    
292
254
    This can be used by operations such as bzr status that can accept
293
255
    unknown or ignored files.
294
256
    """
295
 
    mutter("check paths: %r", orig_paths)
296
 
    if not orig_paths:
297
 
        return orig_paths, []
298
 
    s = old_tree.filter_unversioned_files(orig_paths)
 
257
    mutter("check paths: %r", paths)
 
258
    if not paths:
 
259
        return
 
260
    s = old_tree.filter_unversioned_files(paths)
299
261
    s = new_tree.filter_unversioned_files(s)
300
 
    nonexistent = [path for path in s if not new_tree.has_filename(path)]
301
 
    remaining   = [path for path in orig_paths if not path in nonexistent]
302
 
    # Sorting the 'remaining' list doesn't have much effect in
303
 
    # practice, since the various status output sections will sort
304
 
    # their groups individually.  But for consistency of this
305
 
    # function's API, it's better to sort both than just 'nonexistent'.
306
 
    return sorted(remaining), sorted(nonexistent)
 
262
    s = [path for path in s if not new_tree.has_filename(path)]
 
263
    if s:
 
264
        raise errors.PathsDoNotExist(sorted(s))
 
265
 
 
266