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
|
# Copyright (C) 2008-2010, Sebastian Riedel.
package Mojo::Asset::File;
use strict;
use warnings;
use base 'Mojo::Asset';
# We can't use File::Temp because there is no seek support in the version
# shipped with Perl 5.8
use Carp 'croak';
use File::Copy ();
use File::Spec;
use IO::File;
use Mojo::ByteStream 'b';
__PACKAGE__->attr([qw/cleanup path end_range/]);
__PACKAGE__->attr(start_range => 0);
__PACKAGE__->attr(tmpdir => sub { $ENV{MOJO_TMPDIR} || File::Spec->tmpdir });
__PACKAGE__->attr(
handle => sub {
my $self = shift;
my $handle = IO::File->new;
# Already got a file without handle
my $file = $self->path;
if ($file) {
# New file
my $mode = '+>>';
# File exists
$mode = '<' if -s $file;
# Open
$handle->open("$mode $file")
or croak qq/Can't open file "$file": $!/;
return $handle;
}
# Generate temporary file
my $base = File::Spec->catfile($self->tmpdir, 'mojo.tmp');
$file = $base;
while (-e $file) {
my $sum = b(time . rand(999999999))->md5_sum;
$file = "$base.$sum";
}
$self->path($file);
# Enable automatic cleanup
$self->cleanup(1);
# Open for read/write access
$handle->open("+> $file") or croak qq/Can't open file "$file": $!/;
return $handle;
}
);
sub DESTROY {
my $self = shift;
my $file = $self->path;
# Cleanup
unlink $file if $self->cleanup && -f $file;
}
sub add_chunk {
my ($self, $chunk) = @_;
# Seek to end
$self->handle->sysseek(0, SEEK_END);
# Store
$chunk = '' unless defined $chunk;
utf8::encode $chunk if utf8::is_utf8 $chunk;
$self->handle->syswrite($chunk, length $chunk);
return $self;
}
# Your guilty consciences may make you vote Democratic, but secretly you all
# yearn for a Republican president to lower taxes, brutalize criminals, and
# rule you like a king!
sub contains {
my ($self, $bytestream) = @_;
my ($buffer, $window);
# Seek to start
$self->handle->sysseek($self->start_range, SEEK_SET);
my $end = defined $self->end_range ? $self->end_range : $self->size;
my $rlen = length($bytestream) * 2;
if ($rlen > $end - $self->start_range) {
$rlen = $end - $self->start_range;
}
# Read
my $read = $self->handle->sysread($window, $rlen);
my $offset = $read;
my $readlen = length($bytestream);
# Moving window search
my $range = $self->end_range;
while ($offset <= $end) {
if (defined $range) {
$readlen = $end + 1 - $offset;
return -1 if $readlen <= 0;
}
$read = $self->handle->sysread($buffer, $readlen);
$offset += $read;
$window .= $buffer;
my $pos = index $window, $bytestream;
return $pos if $pos >= 0;
return -1 if $read == 0;
substr $window, 0, $read, '';
}
return -1;
}
sub get_chunk {
my ($self, $offset) = @_;
# Seek to start
my $off = $offset + $self->start_range;
$self->handle->sysseek($off, SEEK_SET);
my $end = $self->end_range;
my $buffer;
# Chunk size
my $size = $ENV{MOJO_CHUNK_SIZE} || 8192;
# Range support
if (defined $end) {
my $chunk = $end + 1 - $off;
return '' if $chunk <= 0;
$chunk = $size if $chunk > $size;
$self->handle->sysread($buffer, $chunk);
}
else { $self->handle->sysread($buffer, $size) }
return $buffer;
}
sub move_to {
my ($self, $path) = @_;
my $src = $self->path;
# Close handle
close $self->handle;
$self->handle(undef);
# Move
File::Copy::move($src, $path)
or croak qq/Can't move file "$src" to "$path": $!/;
# Set new path
$self->path($path);
# Don't clean up a moved file
$self->cleanup(0);
return $self;
}
sub size {
my $self = shift;
# File size
my $file = $self->path;
return -s $file if $file;
return 0;
}
sub slurp {
my $self = shift;
# Seek to start
$self->handle->sysseek(0, SEEK_SET);
# Slurp
my $content = '';
while ($self->handle->sysread(my $buffer, 8192)) { $content .= $buffer }
return $content;
}
1;
__END__
=head1 NAME
Mojo::Asset::File - File Asset
=head1 SYNOPSIS
use Mojo::Asset::File;
my $asset = Mojo::Asset::File->new;
$asset->add_chunk('foo bar baz');
print $asset->slurp;
my $asset = Mojo::Asset::File->new(path => '/foo/bar/baz.txt');
print $asset->slurp;
=head1 DESCRIPTION
L<Mojo::Asset::File> is a container for file assets.
=head1 ATTRIBUTES
L<Mojo::Asset::File> implements the following attributes.
=head2 C<cleanup>
my $cleanup = $asset->cleanup;
$asset = $asset->cleanup(1);
Delete file automatically once it's not used anymore.
=head2 C<end_range>
my $end = $asset->end_range;
$asset = $asset->end_range(8);
Pretend file ends earlier.
=head2 C<handle>
my $handle = $asset->handle;
$asset = $asset->handle(IO::File->new);
Actual file handle.
=head2 C<path>
my $path = $asset->path;
$asset = $asset->path('/foo/bar/baz.txt');
Actual file path.
=head2 C<start_range>
my $start = $asset->start_range;
$asset = $asset->start_range(0);
Pretend file starts later.
=head2 C<tmpdir>
my $tmpdir = $asset->tmpdir;
$asset = $asset->tmpdir('/tmp');
Temporary directory.
=head1 METHODS
L<Mojo::Asset::File> inherits all methods from L<Mojo::Asset> and implements
the following new ones.
=head2 C<add_chunk>
$asset = $asset->add_chunk('foo bar baz');
Add chunk of data to asset.
=head2 C<contains>
my $position = $asset->contains('bar');
Check if asset contains a specific string.
=head2 C<get_chunk>
my $chunk = $asset->get_chunk($offset);
Get chunk of data starting from a specific position.
=head2 C<move_to>
$asset = $asset->move_to('/foo/bar/baz.txt');
Move asset data into a specific file.
=head2 C<size>
my $size = $asset->size;
Size of asset data in bytes.
=head2 C<slurp>
my $string = $file->slurp;
Read all asset data at once.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
|