~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/atomicfile.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-15 04:49:48 UTC
  • mfrom: (3984.5.22 switch-r-183559)
  • Revision ID: pqm@pqm.ubuntu.com-20100115044948-yxz5m3vchxapbq22
(andrew) Add --revision option to 'bzr switch'. (#184559)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2004, 2005 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
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from __future__ import absolute_import
18
17
 
19
18
import os
 
19
import sys
20
20
 
21
21
from bzrlib.lazy_import import lazy_import
22
22
lazy_import(globals(), """
23
23
import stat
 
24
import socket
24
25
import warnings
25
26
 
26
27
from bzrlib import (
59
60
 
60
61
        self.realfilename = filename
61
62
 
62
 
        flags = os.O_EXCL | os.O_CREAT | os.O_WRONLY | osutils.O_NOINHERIT
 
63
        flags = os.O_EXCL | os.O_CREAT | os.O_WRONLY
63
64
        if mode == 'wb':
64
65
            flags |= osutils.O_BINARY
65
66
        elif mode != 'wt':
79
80
            # the common case is that we won't, though.
80
81
            st = os.fstat(self._fd)
81
82
            if stat.S_IMODE(st.st_mode) != new_mode:
82
 
                osutils.chmod_if_possible(self.tmpfilename, new_mode)
 
83
                os.chmod(self.tmpfilename, new_mode)
 
84
 
 
85
    def _get_closed(self):
 
86
        symbol_versioning.warn('AtomicFile.closed deprecated in bzr 0.10',
 
87
                               DeprecationWarning, stacklevel=2)
 
88
        return self._fd is None
 
89
 
 
90
    closed = property(_get_closed)
83
91
 
84
92
    def __repr__(self):
85
93
        return '%s(%r)' % (self.__class__.__name__,
112
120
        """Discard the file unless already committed."""
113
121
        if self._fd is not None:
114
122
            self.abort()
 
123
 
 
124
    def __del__(self):
 
125
        if self._fd is not None:
 
126
            warnings.warn("%r leaked" % self)