~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/atomicfile.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-14 16:16:53 UTC
  • mto: (1946.2.6 reduce-knit-churn)
  • mto: This revision was merged to the branch mainline in revision 1919.
  • Revision ID: john@arbash-meinel.com-20060814161653-54cdcdadcd4e9003
Remove bogus entry from BRANCH.TODO

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005 Canonical Ltd
 
1
# Copyright (C) 2004, 2005 by 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
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
 
18
import codecs
 
19
import errno
18
20
import os
19
 
import sys
20
 
 
21
 
from bzrlib.lazy_import import lazy_import
22
 
lazy_import(globals(), """
23
21
import stat
24
22
import socket
 
23
import sys
25
24
import warnings
26
25
 
27
26
from bzrlib import (
29
28
    osutils,
30
29
    symbol_versioning,
31
30
    )
32
 
""")
 
31
from bzrlib.osutils import rename
33
32
 
34
33
# not forksafe - but we dont fork.
35
34
_pid = os.getpid()
36
 
_hostname = None
 
35
_hostname = socket.gethostname()
37
36
 
38
37
 
39
38
class AtomicFile(object):
48
47
    __slots__ = ['tmpfilename', 'realfilename', '_fd']
49
48
 
50
49
    def __init__(self, filename, mode='wb', new_mode=None):
51
 
        global _hostname
52
 
 
53
50
        self._fd = None
54
51
        assert mode in ('wb', 'wt'), \
55
52
            "invalid AtomicFile mode %r" % mode
56
53
 
57
 
        if _hostname is None:
58
 
            _hostname = socket.gethostname()
59
 
 
60
54
        self.tmpfilename = '%s.%d.%s.tmp' % (filename, _pid, _hostname)
61
55
 
62
56
        self.realfilename = filename
108
102
    def commit(self):
109
103
        """Close the file and move to final name."""
110
104
        self._close_tmpfile('commit')
111
 
        osutils.rename(self.tmpfilename, self.realfilename)
 
105
        rename(self.tmpfilename, self.realfilename)
112
106
 
113
107
    def abort(self):
114
108
        """Discard temporary file without committing changes."""