1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
|
#-*- perl -*-
#
# Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: AtomicFile.pm,v 1.15 2004/07/23 15:59:13 fukachan Exp $
#
package IO::Adapter::AtomicFile;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $Counter);
use Carp;
use IO::File;
@ISA = qw(IO::File);
BEGIN {}
END {}
=head1 NAME
IO::Adapter::AtomicFile - atomic IO operation.
=head1 SYNOPSIS
use IO::Adapter::AtomicFile;
my $wh = IO::Adapter::AtomicFile->open($file);
if (defined $wh) {
print $wh "new/updated things ...";
$wh->close unless $wh->error;
}
In C<close()> runs, the C<$file> is replaced with the new content.
Updating is defered until C<close()>.
In usual cases, you use this module in the following way.
use FileHandle;
use IO::Adapter::AtomicFile;
# get read handle for $file
my $rh = new FileHandle $file;
# get handle to update $file
my $wh = IO::Adapter::AtomicFile->open($file);
if (defined $rh && defined $wh) {
while (<$rh>) {
print $wh "new/updated things ...";
}
$wh->close;
$rh->close;
}
You can use this method to open $file for both read and write.
use IO::Adapter::AtomicFile;
my ($rh, $wh) = IO::Adapter::AtomicFile->rw_open($file);
if (defined $rh && defined $wh) {
while (<$rh>) {
print $wh "new/updated things ...";
}
$wh->close;
$rh->close;
}
To copy from $src to $dst,
IO::Adapter::AtomicFile->copy($src, $dst) || croak("fail to copy");
=head1 DESCRIPTION
library to wrap atomic IO operations.
The C<atomic> feature is based on C<rename(2)> system call.
=head1 METHODS
=head2 new()
The ordinary constructor.
The request is forwarded to SUPER CLASS's new().
=cut
# Descriptions: ordinary constructor.
# forward new() request to superclass (IO::File)
# XXX returned object $self is blessed file handle.
# Arguments: OBJ($self)
# Side Effects: none
# Return Value: OBJ
sub new
{
my ($self, @argv) = shift;
my $me = $self->SUPER::new(); # call IO::File::new().
if (defined $me) {
$me->open(@argv) if @argv;
return $me;
}
elese {
return undef;
}
}
=head2 open(file[, mode])
open C<file> with C<mode>.
If C<mode> is not specified, open C<file> with writable mode by default.
Actually this method opens a new temporary file for write.
So to write this C<file> is to write the temporary file.
When close() method sucesses, the file is replaced with this temporary file.
=cut
# Descriptions: open( $file [, $mode] )
# open not $file but file.new.$$
# forward open() request to IO::File class
# Arguments: OBJ($self) STR($file) [STR($mode)]
# XXX $self is blessed file handle.
# Side Effects: create ${ *$self } hash to save status information
# Return Value: HANDLE(write file handle for $file.new.$$)
sub open
{
my ($self, $file, $mode) = @_;
# get an instance
ref($self) or $self = $self->new;
# default mode is "w"
$mode ||= "w";
# temporary file
unless (defined $Counter) { $Counter = 0;}
$Counter++;
my $temp = sprintf("%s.%s.%s.%s", $file, "new", $$, $Counter);
${*$self}{ _orig_file } = $file;
${*$self}{ _temp_file } = $temp;
# real open with $mode
$self->autoflush;
$self->SUPER::open($temp, "w") ? $self : undef;
}
=head2 rw_open(file[, mode])
return the file descriptor for both to read and write C<file>.
This is a wrapper for C<open()> method described above for conveninece.
=cut
# Descriptions: open $file with the mode $mode for both
# reading and writing.
# Arguments: OBJ($self) STR($file) [STR($mode)]
# Side Effects: none
# Return Value: ARRAY(HANDLE($rh for read), HANDLE($wh for write))
sub rw_open
{
my ($self, $file, $mode) = @_;
use FileHandle;
my $rh = new FileHandle $file;
my $wh = $self->open($file, $mode);
return ($rh, $wh);
}
=head2 close()
close the file.
After the file is closed, the file is renamed to the original file name.
=cut
# Descriptions: close "write" file handle
# XXX "read" file handle is closed by SUPERCLASS.
# Arguments: OBJ($self)
# XXX $self is blessed file handle.
# Side Effects: rename the temporary file to the original file
# save the error message in ${ *$fh }
# Return Value: NUM(1 if succeeded, 0 if failed)
sub close
{
my ($self) = @_;
my $fh = $self;
my $orig = ${ *$fh }{ _orig_file };
my $temp = ${ *$fh }{ _temp_file };
# XXX close the "write" file handle (write .. to $temp file)
if (defined $fh) {
$fh->SUPER::close();
}
# allow 0 bytes. e.g. in the case so that all content is removed.
if (rename($temp, $orig)) {
return 1;
}
else {
${ *$fh }{ _error } = "fail to rename($temp, $orig)";
return 0;
}
}
=head2 copy(src, dst)
copy from C<src> file to C<dst> file in atomic way by using
C<IO::Adapter::AtomicFile::rw_open>.
=cut
# Descriptions: copy file, which ensures atomic operation.
# Arguments: OBJ($self) STR($src) STR($dst)
# Side Effects: $dst's file mode becomes the same as $src
# Return Value: NUM
sub copy
{
my ($self, $src, $dst) = @_;
my ($mode) = (stat($src))[2];
my $rh = new FileHandle $src;
my $wh = $self->open($dst);
if (defined($rh) && defined($wh)) {
my $buf = '';
while (sysread($rh, $buf, 4096)) { print $wh $buf;}
$wh->close;
$rh->close;
# XXX-TODO: chmod too late
chmod $mode, $dst;
}
else {
return undef;
}
}
=head2 error()
return the error.
=head2 rollback()
stop the operation and remove the temporary file to back to the first
state.
=cut
# Descriptions: return error message.
# Arguments: OJB($self)
# XXX $self is blessed file handle.
# Side Effects: none
# Return Value: STR(error message string)
sub error
{
my ($self) = @_;
my $fh = $self;
${ *$fh }{ _error };
}
# Descriptions: reset the previous work.
# Arguments: OBJ($self)
# XXX $self is blessed file handle.
# Side Effects: clean up the previous work ;-)
# remove temporary files we created
# Return Value: NUM
sub rollback
{
my ($self) = @_;
my $fh = $self;
my $temp = ${ *$fh }{ _temp_file };
if (-f $temp) { unlink $temp;}
}
# Descriptions: destructor.
# forward the request to rollback() in this class.
# Arguments: OBJ($self)
# XXX $self is blessed file handle.
# Side Effects: none
# Return Value: the same as rollback()
sub DESTROY
{
my ($self) = @_;
$self->rollback;
}
=head1 CODING STYLE
See C<http://www.fml.org/software/FNF/> on fml coding style guide.
=head1 AUTHOR
Ken'ichi Fukamachi
=head1 COPYRIGHT
Copyright (C) 2001,2002,2003,2004,2005 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
IO::Adapter::AtomicFile first appeared in fml8 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|