/usr/share/perl5/Mojo/Content.pm is in libmojolicious-perl 6.15+dfsg-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | package Mojo::Content;
use Mojo::Base 'Mojo::EventEmitter';
use Carp 'croak';
use Compress::Raw::Zlib qw(WANT_GZIP Z_STREAM_END);
use Mojo::Headers;
use Scalar::Util 'looks_like_number';
has [qw(auto_decompress auto_relax expect_close relaxed skip_body)];
has headers => sub { Mojo::Headers->new };
has max_buffer_size => sub { $ENV{MOJO_MAX_BUFFER_SIZE} || 262144 };
has max_leftover_size => sub { $ENV{MOJO_MAX_LEFTOVER_SIZE} || 262144 };
my $BOUNDARY_RE
= qr!multipart.*boundary\s*=\s*(?:"([^"]+)"|([\w'(),.:?\-+/]+))!i;
sub body_contains {
croak 'Method "body_contains" not implemented by subclass';
}
sub body_size { croak 'Method "body_size" not implemented by subclass' }
sub boundary {
(shift->headers->content_type // '') =~ $BOUNDARY_RE ? $1 // $2 : undef;
}
sub charset {
my $type = shift->headers->content_type // '';
return $type =~ /charset\s*=\s*"?([^"\s;]+)"?/i ? $1 : undef;
}
sub clone {
my $self = shift;
return undef if $self->is_dynamic;
return $self->new(headers => $self->headers->clone);
}
sub generate_body_chunk {
my ($self, $offset) = @_;
$self->emit(drain => $offset)
if !delete $self->{delay} && !length($self->{body_buffer} // '');
my $chunk = delete $self->{body_buffer} // '';
return $self->{eof} ? '' : undef unless length $chunk;
return $chunk;
}
sub get_body_chunk {
croak 'Method "get_body_chunk" not implemented by subclass';
}
sub get_header_chunk { substr shift->_headers->{header_buffer}, shift, 131072 }
sub header_size { length shift->_headers->{header_buffer} }
sub headers_contain { index(shift->_headers->{header_buffer}, shift) >= 0 }
sub is_chunked { !!shift->headers->transfer_encoding }
sub is_compressed { lc(shift->headers->content_encoding // '') eq 'gzip' }
sub is_dynamic { $_[0]{dynamic} && !defined $_[0]->headers->content_length }
sub is_finished { (shift->{state} // '') eq 'finished' }
sub is_limit_exceeded { !!shift->{limit} }
sub is_multipart {undef}
sub is_parsing_body { (shift->{state} // '') eq 'body' }
sub leftovers { shift->{buffer} }
sub parse {
my $self = shift;
# Headers
$self->_parse_until_body(@_);
return $self if $self->{state} eq 'headers';
# Chunked content
$self->{real_size} //= 0;
if ($self->is_chunked && $self->{state} ne 'headers') {
$self->_parse_chunked;
$self->{state} = 'finished' if ($self->{chunk_state} // '') eq 'finished';
}
# Not chunked, pass through to second buffer
else {
$self->{real_size} += length $self->{pre_buffer};
my $limit = $self->is_finished
&& length($self->{buffer}) > $self->max_leftover_size;
$self->{buffer} .= $self->{pre_buffer} unless $limit;
$self->{pre_buffer} = '';
}
# No content
if ($self->skip_body) {
$self->{state} = 'finished';
return $self;
}
# Relaxed parsing
my $headers = $self->headers;
my $len = $headers->content_length // '';
if ($self->auto_relax && !length $len) {
my $connection = lc($headers->connection // '');
$self->relaxed(1)
if $connection eq 'close' || (!$connection && $self->expect_close);
}
# Chunked or relaxed content
if ($self->is_chunked || $self->relaxed) {
$self->_decompress($self->{buffer} //= '');
$self->{size} += length $self->{buffer};
$self->{buffer} = '';
return $self;
}
# Normal content
$len = 0 unless looks_like_number $len;
if ((my $need = $len - ($self->{size} ||= 0)) > 0) {
my $len = length $self->{buffer};
my $chunk = substr $self->{buffer}, 0, $need > $len ? $len : $need, '';
$self->_decompress($chunk);
$self->{size} += length $chunk;
}
$self->{state} = 'finished' if $len <= $self->progress;
return $self;
}
sub parse_body {
my $self = shift;
$self->{state} = 'body';
return $self->parse(@_);
}
sub progress {
my $self = shift;
return 0 unless my $state = $self->{state};
return 0 unless $state eq 'body' || $state eq 'finished';
return $self->{raw_size} - ($self->{header_size} || 0);
}
sub write {
my ($self, $chunk, $cb) = @_;
$self->{dynamic} = 1;
if (defined $chunk) { $self->{body_buffer} .= $chunk }
else { $self->{delay} = 1 }
$self->once(drain => $cb) if $cb;
$self->{eof} = 1 if defined $chunk && $chunk eq '';
return $self;
}
sub write_chunk {
my ($self, $chunk, $cb) = @_;
$self->headers->transfer_encoding('chunked') unless $self->is_chunked;
$self->write(defined $chunk ? $self->_build_chunk($chunk) : $chunk, $cb);
$self->{eof} = 1 if defined $chunk && $chunk eq '';
return $self;
}
sub _build_chunk {
my ($self, $chunk) = @_;
# End
return "\x0d\x0a0\x0d\x0a\x0d\x0a" unless length $chunk;
# First chunk has no leading CRLF
my $crlf = $self->{chunks}++ ? "\x0d\x0a" : '';
return $crlf . sprintf('%x', length $chunk) . "\x0d\x0a$chunk";
}
sub _decompress {
my ($self, $chunk) = @_;
# No compression
return $self->emit(read => $chunk)
unless $self->auto_decompress && $self->is_compressed;
# Decompress
$self->{post_buffer} .= $chunk;
my $gz = $self->{gz}
//= Compress::Raw::Zlib::Inflate->new(WindowBits => WANT_GZIP);
my $status = $gz->inflate(\$self->{post_buffer}, my $out);
$self->emit(read => $out) if defined $out;
# Replace Content-Encoding with Content-Length
$self->headers->content_length($gz->total_out)->remove('Content-Encoding')
if $status == Z_STREAM_END;
# Check buffer size
@$self{qw(state limit)} = ('finished', 1)
if length($self->{post_buffer} // '') > $self->max_buffer_size;
}
sub _headers {
my $self = shift;
return $self if defined $self->{header_buffer};
my $headers = $self->headers->to_string;
$self->{header_buffer} = $headers ? "$headers\x0d\x0a\x0d\x0a" : "\x0d\x0a";
return $self;
}
sub _parse_chunked {
my $self = shift;
# Trailing headers
return $self->_parse_chunked_trailing_headers
if ($self->{chunk_state} // '') eq 'trailing_headers';
while (my $len = length $self->{pre_buffer}) {
# Start new chunk (ignore the chunk extension)
unless ($self->{chunk_len}) {
last
unless $self->{pre_buffer} =~ s/^(?:\x0d?\x0a)?([0-9a-fA-F]+).*\x0a//;
next if $self->{chunk_len} = hex $1;
# Last chunk
$self->{chunk_state} = 'trailing_headers';
last;
}
# Remove as much as possible from payload
$len = $self->{chunk_len} if $self->{chunk_len} < $len;
$self->{buffer} .= substr $self->{pre_buffer}, 0, $len, '';
$self->{real_size} += $len;
$self->{chunk_len} -= $len;
}
# Trailing headers
$self->_parse_chunked_trailing_headers
if ($self->{chunk_state} // '') eq 'trailing_headers';
# Check buffer size
@$self{qw(state limit)} = ('finished', 1)
if length($self->{pre_buffer} // '') > $self->max_buffer_size;
}
sub _parse_chunked_trailing_headers {
my $self = shift;
my $headers = $self->headers->parse(delete $self->{pre_buffer});
return unless $headers->is_finished;
$self->{chunk_state} = 'finished';
# Take care of leftover and replace Transfer-Encoding with Content-Length
$self->{buffer} .= $headers->leftovers;
$headers->remove('Transfer-Encoding');
$headers->content_length($self->{real_size}) unless $headers->content_length;
}
sub _parse_headers {
my $self = shift;
my $headers = $self->headers->parse(delete $self->{pre_buffer});
return unless $headers->is_finished;
$self->{state} = 'body';
# Take care of leftovers
my $leftovers = $self->{pre_buffer} = $headers->leftovers;
$self->{header_size} = $self->{raw_size} - length $leftovers;
}
sub _parse_until_body {
my ($self, $chunk) = @_;
$self->{raw_size} += length($chunk //= '');
$self->{pre_buffer} .= $chunk;
$self->_parse_headers if ($self->{state} ||= 'headers') eq 'headers';
$self->emit('body') if $self->{state} ne 'headers' && !$self->{body}++;
}
1;
=encoding utf8
=head1 NAME
Mojo::Content - HTTP content base class
=head1 SYNOPSIS
package Mojo::Content::MyContent;
use Mojo::Base 'Mojo::Content';
sub body_contains {...}
sub body_size {...}
sub get_body_chunk {...}
=head1 DESCRIPTION
L<Mojo::Content> is an abstract base class for HTTP content containers based on
L<RFC 7230|http://tools.ietf.org/html/rfc7230> and
L<RFC 7231|http://tools.ietf.org/html/rfc7231>, like
L<Mojo::Content::MultiPart> and L<Mojo::Content::Single>.
=head1 EVENTS
L<Mojo::Content> inherits all events from L<Mojo::EventEmitter> and can emit
the following new ones.
=head2 body
$content->on(body => sub {
my $content = shift;
...
});
Emitted once all headers have been parsed and the body starts.
$content->on(body => sub {
my $content = shift;
$content->auto_upgrade(0) if $content->headers->header('X-No-MultiPart');
});
=head2 drain
$content->on(drain => sub {
my ($content, $offset) = @_;
...
});
Emitted once all data has been written.
$content->on(drain => sub {
my $content = shift;
$content->write_chunk(time);
});
=head2 read
$content->on(read => sub {
my ($content, $bytes) = @_;
...
});
Emitted when a new chunk of content arrives.
$content->unsubscribe('read');
$content->on(read => sub {
my ($content, $bytes) = @_;
say "Streaming: $bytes";
});
=head1 ATTRIBUTES
L<Mojo::Content> implements the following attributes.
=head2 auto_decompress
my $bool = $content->auto_decompress;
$content = $content->auto_decompress($bool);
Decompress content automatically if L</"is_compressed"> is true.
=head2 auto_relax
my $bool = $content->auto_relax;
$content = $content->auto_relax($bool);
Try to detect when relaxed parsing is necessary.
=head2 expect_close
my $bool = $content->expect_close;
$content = $content->expect_close($bool);
Expect a response that is terminated with a connection close.
=head2 headers
my $headers = $content->headers;
$content = $content->headers(Mojo::Headers->new);
Content headers, defaults to a L<Mojo::Headers> object.
=head2 max_buffer_size
my $size = $content->max_buffer_size;
$content = $content->max_buffer_size(1024);
Maximum size in bytes of buffer for content parser, defaults to the value of
the C<MOJO_MAX_BUFFER_SIZE> environment variable or C<262144> (256KB).
=head2 max_leftover_size
my $size = $content->max_leftover_size;
$content = $content->max_leftover_size(1024);
Maximum size in bytes of buffer for pipelined HTTP requests, defaults to the
value of the C<MOJO_MAX_LEFTOVER_SIZE> environment variable or C<262144>
(256KB).
=head2 relaxed
my $bool = $content->relaxed;
$content = $content->relaxed($bool);
Activate relaxed parsing for responses that are terminated with a connection
close.
=head2 skip_body
my $bool = $content->skip_body;
$content = $content->skip_body($bool);
Skip body parsing and finish after headers.
=head1 METHODS
L<Mojo::Content> inherits all methods from L<Mojo::EventEmitter> and implements
the following new ones.
=head2 body_contains
my $bool = $content->body_contains('foo bar baz');
Check if content contains a specific string. Meant to be overloaded in a
subclass.
=head2 body_size
my $size = $content->body_size;
Content size in bytes. Meant to be overloaded in a subclass.
=head2 boundary
my $boundary = $content->boundary;
Extract multipart boundary from C<Content-Type> header.
=head2 charset
my $charset = $content->charset;
Extract charset from C<Content-Type> header.
=head2 clone
my $clone = $content->clone;
Clone content if possible, otherwise return C<undef>.
=head2 generate_body_chunk
my $bytes = $content->generate_body_chunk(0);
Generate dynamic content.
=head2 get_body_chunk
my $bytes = $content->get_body_chunk(0);
Get a chunk of content starting from a specific position. Meant to be
overloaded in a subclass.
=head2 get_header_chunk
my $bytes = $content->get_header_chunk(13);
Get a chunk of the headers starting from a specific position. Note that this
method finalizes the content.
=head2 header_size
my $size = $content->header_size;
Size of headers in bytes. Note that this method finalizes the content.
=head2 headers_contain
my $bool = $content->headers_contain('foo bar baz');
Check if headers contain a specific string. Note that this method finalizes the
content.
=head2 is_chunked
my $bool = $content->is_chunked;
Check if content is chunked.
=head2 is_compressed
my $bool = $content->is_compressed;
Check if content is gzip compressed.
=head2 is_dynamic
my $bool = $content->is_dynamic;
Check if content will be dynamically generated, which prevents L</"clone"> from
working.
=head2 is_finished
my $bool = $content->is_finished;
Check if parser is finished.
=head2 is_limit_exceeded
my $bool = $content->is_limit_exceeded;
Check if buffer has exceeded L</"max_buffer_size">.
=head2 is_multipart
my $bool = $content->is_multipart;
False, this is not a L<Mojo::Content::MultiPart> object.
=head2 is_parsing_body
my $bool = $content->is_parsing_body;
Check if body parsing started yet.
=head2 leftovers
my $bytes = $content->leftovers;
Get leftover data from content parser.
=head2 parse
$content
= $content->parse("Content-Length: 12\x0d\x0a\x0d\x0aHello World!");
Parse content chunk.
=head2 parse_body
$content = $content->parse_body('Hi!');
Parse body chunk and skip headers.
=head2 progress
my $size = $content->progress;
Size of content already received from message in bytes.
=head2 write
$content = $content->write;
$content = $content->write('');
$content = $content->write($bytes);
$content = $content->write($bytes => sub {...});
Write dynamic content non-blocking, the optional drain callback will be invoked
once all data has been written. Calling this method without a chunk of data
will finalize the L</"headers"> and allow for dynamic content to be written
later. You can write an empty chunk of data at any time to end the stream.
# Make sure previous chunk of data has been written before continuing
$content->write('He' => sub {
my $content = shift;
$content->write('llo!' => sub {
my $content = shift;
$content->write('');
});
});
=head2 write_chunk
$content = $content->write_chunk;
$content = $content->write_chunk('');
$content = $content->write_chunk($bytes);
$content = $content->write_chunk($bytes => sub {...});
Write dynamic content non-blocking with C<chunked> transfer encoding, the
optional drain callback will be invoked once all data has been written. Calling
this method without a chunk of data will finalize the L</"headers"> and allow
for dynamic content to be written later. You can write an empty chunk of data
at any time to end the stream.
# Make sure previous chunk of data has been written before continuing
$content->write_chunk('He' => sub {
my $content = shift;
$content->write_chunk('llo!' => sub {
my $content = shift;
$content->write_chunk('');
});
});
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
=cut
|