~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/atomicfile.py

  • Committer: Martin Pool
  • Date: 2005-05-09 04:50:11 UTC
  • Revision ID: mbp@sourcefrog.net-20050509045010-7c32d7e3e8942540
- New AtomicFile class
- bzr ignore: Write out ignore list using AtomicFile to break hardlinks

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 2005 by Canonical Ltd
 
2
 
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
 
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
 
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
 
 
18
 
 
19
class AtomicFile:
 
20
    """A file that does an atomic-rename to move into place.
 
21
 
 
22
    This also causes hardlinks to break when it's written out.
 
23
 
 
24
    Open this as for a regular file, then use commit() to move into
 
25
    place or abort() to cancel.
 
26
 
 
27
    You may wish to wrap this in a codecs.EncodedFile to do unicode
 
28
    encoding.
 
29
    """
 
30
 
 
31
    def __init__(self, filename, mode='wb'):
 
32
        if mode != 'wb' and mode != 'wt':
 
33
            raise ValueError("invalid AtomicFile mode %r" % mode)
 
34
 
 
35
        import os, socket
 
36
        self.tmpfilename = '%s.tmp.%d.%s' % (filename, os.getpid(),
 
37
                                             socket.gethostname())
 
38
        self.realfilename = filename
 
39
        
 
40
        self.f = open(self.tmpfilename, mode)
 
41
        self.write = self.f.write
 
42
 
 
43
    def commit(self):
 
44
        self.f.close()
 
45
        if sys.platform == 'win32':
 
46
            os.remove(self.realfilename)
 
47
        os.rename(self.tmpfilename, self.realfilename)
 
48
 
 
49
    def abort(self):
 
50
        self.f.close()
 
51
        os.remove(self.tmpfilename)
 
52