~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/shelf.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-05-11 11:47:36 UTC
  • mfrom: (5200.3.8 lock_return)
  • Revision ID: pqm@pqm.ubuntu.com-20100511114736-mc1sq9zyo3vufec7
(lifeless) Provide a consistent interface to Tree, Branch,
 Repository where lock methods return an object with an unlock method to
 unlock the lock. This breaks the API for Branch,
 Repository on their lock_write methods. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
18
18
import errno
19
19
import re
20
20
 
21
 
from bzrlib.lazy_import import lazy_import
22
 
lazy_import(globals(), """
23
21
from bzrlib import (
24
22
    bencode,
25
23
    errors,
28
26
    pack,
29
27
    transform,
30
28
)
31
 
""")
32
29
 
33
30
 
34
31
class ShelfCreator(object):
65
62
        """Iterable of tuples describing shelvable changes.
66
63
 
67
64
        As well as generating the tuples, this updates several members.
68
 
        Tuples may be::
69
 
 
 
65
        Tuples may be:
70
66
           ('add file', file_id, work_kind, work_path)
71
67
           ('delete file', file_id, target_kind, target_path)
72
68
           ('rename', file_id, target_path, work_path)
82
78
            # when a tree root was deleted / renamed.
83
79
            if kind[0] is None and names[1] == '':
84
80
                continue
85
 
            # Also don't shelve deletion of tree root.
86
 
            if kind[1] is None and names[0] == '':
87
 
                continue
88
81
            if kind[0] is None or versioned[0] == False:
89
82
                self.creation[file_id] = (kind[1], names[1], parents[1],
90
83
                                          versioned)