~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transactions.py

  • Committer: Patch Queue Manager
  • Date: 2016-04-21 04:10:52 UTC
  • mfrom: (6616.1.1 fix-en-user-guide)
  • Revision ID: pqm@pqm.ubuntu.com-20160421041052-clcye7ns1qcl2n7w
(richard-wilbur) Ensure build of English use guide always uses English text
 even when user's locale specifies a different language. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
 
18
18
"""This module provides a transactional facility.
19
19
 
30
30
write ordering approach we use for consistency 'dirty' is a misleading term.
31
31
A dirty object is one we have modified.
32
32
 
33
 
Both read and write transactions *may* flush unchanged objects out of 
34
 
memory, unless they are marked as 'precious' which indicates that 
 
33
Both read and write transactions *may* flush unchanged objects out of
 
34
memory, unless they are marked as 'precious' which indicates that
35
35
repeated reads cannot be obtained if the object is ejected, or that
36
36
the object is an expensive one for obtaining.
37
37
"""
38
38
 
 
39
from __future__ import absolute_import
 
40
 
39
41
import sys
40
42
 
41
43
import bzrlib.errors as errors
63
65
 
64
66
    def register_clean(self, an_object, precious=False):
65
67
        """Register an_object as being clean.
66
 
        
 
68
 
67
69
        If the precious hint is True, the object will not
68
70
        be ejected from the object identity map ever.
69
71
        """
79
81
 
80
82
    def set_cache_size(self, size):
81
83
        """Set a new cache size."""
82
 
        assert -1 <= size
 
84
        if size < -1:
 
85
            raise ValueError(size)
83
86
        self._limit = size
84
87
        self._trim()
85
88
 
138
141
 
139
142
    def register_dirty(self, an_object):
140
143
        """Register an_object as being dirty.
141
 
        
 
144
 
142
145
        Dirty objects are not ejected from the identity map
143
146
        until the transaction finishes and get informed
144
147
        when the transaction finishes.
153
156
        """Write transactions allow writes."""
154
157
        return True
155
158
 
156
 
        
 
159
 
157
160
class PassThroughTransaction(object):
158
161
    """A pass through transaction
159
 
    
 
162
 
160
163
    - nothing is cached.
161
164
    - nothing ever gets into the identity map.
162
165
    """
175
178
 
176
179
    def register_clean(self, an_object, precious=False):
177
180
        """Register an_object as being clean.
178
 
        
 
181
 
179
182
        Note that precious is only a hint, and PassThroughTransaction
180
183
        ignores it.
181
184
        """
182
185
 
183
186
    def register_dirty(self, an_object):
184
187
        """Register an_object as being dirty.
185
 
        
 
188
 
186
189
        Dirty objects get informed
187
190
        when the transaction finishes.
188
191
        """