File Coverage

blib/lib/Mojo/ByteStream.pm
Criterion Covered Total %
statement 46 46 100.0
branch n/a
condition 8 9 88.8
subroutine 44 44 100.0
pod 12 12 100.0
total 110 111 99.1


line stmt bran cond sub pod time code
1             package Mojo::ByteStream;
2 84     1669   326273 use Mojo::Base -strict;
  84         207  
  84         626  
3 84     84   690 use overload bool => sub {1}, '""' => sub { ${$_[0]} }, fallback => 1;
  84     756   225  
  84         1202  
  68         186  
  2323         29819  
  2323         10594  
4              
5 84     84   8238 use Exporter qw(import);
  84         252  
  84         2938  
6 84     84   5244 use Mojo::Collection;
  84         214  
  84         4084  
7 84     84   590 use Mojo::Util;
  84         240  
  84         74798  
8              
9             our @EXPORT_OK = ('b');
10              
11             # Turn most functions from Mojo::Util into methods
12             my @UTILS = (
13             qw(b64_decode b64_encode camelize decamelize gunzip gzip hmac_sha1_sum html_unescape humanize_bytes md5_bytes),
14             qw(md5_sum punycode_decode punycode_encode quote sha1_bytes sha1_sum slugify term_escape trim unindent unquote),
15             qw(url_escape url_unescape xml_escape xor_encode)
16             );
17             for my $name (@UTILS) {
18             my $sub = Mojo::Util->can($name);
19             Mojo::Util::monkey_patch __PACKAGE__, $name, sub {
20 52     52   132 my $self = shift;
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
        52      
21 52         356 $$self = $sub->($$self, @_);
22 52         323 return $self;
23             };
24             }
25              
26 69     69 1 89269 sub b { __PACKAGE__->new(@_) }
27              
28 3     3 1 24 sub clone { $_[0]->new(${$_[0]}) }
  3         13  
29              
30 5     5 1 27 sub decode { shift->_delegate(\&Mojo::Util::decode, @_) }
31 9     9 1 49 sub encode { shift->_delegate(\&Mojo::Util::encode, @_) }
32              
33             sub new {
34 2398     2398 1 9592 my $class = shift;
35 2398   66     19859 return bless \(my $dummy = join '', @_), ref $class || $class;
36             }
37              
38             sub say {
39 3     3 1 9 my ($self, $handle) = @_;
40 3   100     16 $handle ||= \*STDOUT;
41 3         13 say $handle $$self;
42 3         10 return $self;
43             }
44              
45 2     2 1 7 sub secure_compare { Mojo::Util::secure_compare ${shift()}, shift }
  2         9  
46              
47 4     4 1 9 sub size { length ${$_[0]} }
  4         25  
48              
49             sub split {
50 10   100 10 1 53 my ($self, $pat, $lim) = (shift, shift, shift // 0);
51 10         117 return Mojo::Collection->new(map { $self->new($_) } split $pat, $$self, $lim);
  34         65  
52             }
53              
54 1     1 1 6 sub tap { shift->Mojo::Base::tap(@_) }
55              
56 21     21 1 106 sub to_string { ${$_[0]} }
  21         140  
57              
58 1     1 1 2117 sub with_roles { shift->Mojo::Base::with_roles(@_) }
59              
60             sub _delegate {
61 14     14   51 my ($self, $sub) = (shift, shift);
62 14   100     248 $$self = $sub->(shift || 'UTF-8', $$self);
63 14         11279 return $self;
64             }
65              
66             1;
67              
68             =encoding utf8
69              
70             =head1 NAME
71              
72             Mojo::ByteStream - ByteStream
73              
74             =head1 SYNOPSIS
75              
76             use Mojo::ByteStream;
77              
78             # Manipulate bytestream
79             my $stream = Mojo::ByteStream->new('foo_bar_baz');
80             say $stream->camelize;
81              
82             # Chain methods
83             my $stream = Mojo::ByteStream->new('foo bar baz')->quote;
84             $stream = $stream->unquote->encode('UTF-8')->b64_encode('');
85             say "$stream";
86              
87             # Use the alternative constructor
88             use Mojo::ByteStream qw(b);
89             my $stream = b('foobarbaz')->b64_encode('')->say;
90              
91             =head1 DESCRIPTION
92              
93             L is a scalar-based container for bytestreams that provides a more friendly API for many of the
94             functions in L.
95              
96             # Access scalar directly to manipulate bytestream
97             my $stream = Mojo::ByteStream->new('foo');
98             $$stream .= 'bar';
99              
100             =head1 FUNCTIONS
101              
102             L implements the following functions, which can be imported individually.
103              
104             =head2 b
105              
106             my $stream = b('test123');
107              
108             Construct a new scalar-based L object.
109              
110             =head1 METHODS
111              
112             L implements the following methods.
113              
114             =head2 b64_decode
115              
116             $stream = $stream->b64_decode;
117              
118             Base64 decode bytestream with L.
119              
120             =head2 b64_encode
121              
122             $stream = $stream->b64_encode;
123             $stream = $stream->b64_encode("\n");
124              
125             Base64 encode bytestream with L.
126              
127             # "Zm9vIGJhciBiYXo="
128             b('foo bar baz')->b64_encode('');
129              
130             =head2 camelize
131              
132             $stream = $stream->camelize;
133              
134             Camelize bytestream with L.
135              
136             =head2 clone
137              
138             my $stream2 = $stream->clone;
139              
140             Return a new L object cloned from this bytestream.
141              
142             =head2 decamelize
143              
144             $stream = $stream->decamelize;
145              
146             Decamelize bytestream with L.
147              
148             =head2 decode
149              
150             $stream = $stream->decode;
151             $stream = $stream->decode('iso-8859-1');
152              
153             Decode bytestream with L, defaults to using C.
154              
155             # "♥"
156             b('%E2%99%A5')->url_unescape->decode;
157              
158             =head2 encode
159              
160             $stream = $stream->encode;
161             $stream = $stream->encode('iso-8859-1');
162              
163             Encode bytestream with L, defaults to using C.
164              
165             # "%E2%99%A5"
166             b('♥')->encode->url_escape;
167              
168             =head2 gunzip
169              
170             $stream = $stream->gunzip;
171              
172             Uncompress bytestream with L.
173              
174             =head2 gzip
175              
176             stream = $stream->gzip;
177              
178             Compress bytestream with L.
179              
180             =head2 hmac_sha1_sum
181              
182             $stream = $stream->hmac_sha1_sum('passw0rd');
183              
184             Generate HMAC-SHA1 checksum for bytestream with L.
185              
186             # "7fbdc89263974a89210ea71f171c77d3f8c21471"
187             b('foo bar baz')->hmac_sha1_sum('secr3t');
188              
189             =head2 html_unescape
190              
191             $stream = $stream->html_unescape;
192              
193             Unescape all HTML entities in bytestream with L.
194              
195             # "%3Chtml%3E"
196             b('<html>')->html_unescape->url_escape;
197              
198             =head2 humanize_bytes
199              
200             $stream = $stream->humanize_bytes;
201              
202             Turn number of bytes into a simplified human readable format for bytestream with L.
203              
204             =head2 md5_bytes
205              
206             $stream = $stream->md5_bytes;
207              
208             Generate binary MD5 checksum for bytestream with L.
209              
210             =head2 md5_sum
211              
212             $stream = $stream->md5_sum;
213              
214             Generate MD5 checksum for bytestream with L.
215              
216             =head2 new
217              
218             my $stream = Mojo::ByteStream->new('test123');
219              
220             Construct a new scalar-based L object.
221              
222             =head2 punycode_decode
223              
224             $stream = $stream->punycode_decode;
225              
226             Punycode decode bytestream with L.
227              
228             =head2 punycode_encode
229              
230             $stream = $stream->punycode_encode;
231              
232             Punycode encode bytestream with L.
233              
234             =head2 quote
235              
236             $stream = $stream->quote;
237              
238             Quote bytestream with L.
239              
240             =head2 say
241              
242             $stream = $stream->say;
243             $stream = $stream->say(*STDERR);
244              
245             Print bytestream to handle and append a newline, defaults to using C.
246              
247             =head2 secure_compare
248              
249             my $bool = $stream->secure_compare($str);
250              
251             Compare bytestream with L.
252              
253             =head2 sha1_bytes
254              
255             $stream = $stream->sha1_bytes;
256              
257             Generate binary SHA1 checksum for bytestream with L.
258              
259             =head2 sha1_sum
260              
261             $stream = $stream->sha1_sum;
262              
263             Generate SHA1 checksum for bytestream with L.
264              
265             =head2 size
266              
267             my $size = $stream->size;
268              
269             Size of bytestream.
270              
271             =head2 slugify
272              
273             $stream = $stream->slugify;
274             $stream = $stream->slugify($bool);
275              
276             Generate URL slug for bytestream with L.
277              
278             =head2 split
279              
280             my $collection = $stream->split(',');
281             my $collection = $stream->split(',', -1);
282              
283             Turn bytestream into L object containing L objects.
284              
285             # "One,Two,Three"
286             b("one,two,three")->split(',')->map('camelize')->join(',');
287              
288             # "One,Two,Three,,,"
289             b("one,two,three,,,")->split(',', -1)->map('camelize')->join(',');
290              
291             =head2 tap
292              
293             $stream = $stream->tap(sub {...});
294              
295             Alias for L.
296              
297             =head2 term_escape
298              
299             $stream = $stream->term_escape;
300              
301             Escape POSIX control characters in bytestream with L.
302              
303             # Print binary checksum to terminal
304             b('foo')->sha1_bytes->term_escape->say;
305              
306             =head2 to_string
307              
308             my $str = $stream->to_string;
309              
310             Stringify bytestream.
311              
312             =head2 trim
313              
314             $stream = $stream->trim;
315              
316             Trim whitespace characters from both ends of bytestream with L.
317              
318             =head2 unindent
319              
320             $stream = $stream->unindent;
321              
322             Unindent bytestream with L.
323              
324             =head2 unquote
325              
326             $stream = $stream->unquote;
327              
328             Unquote bytestream with L.
329              
330             =head2 url_escape
331              
332             $stream = $stream->url_escape;
333             $stream = $stream->url_escape('^A-Za-z0-9\-._~');
334              
335             Percent encode all unsafe characters in bytestream with L.
336              
337             # "%E2%98%83"
338             b('☃')->encode->url_escape;
339              
340             =head2 url_unescape
341              
342             $stream = $stream->url_unescape;
343              
344             Decode percent encoded characters in bytestream with L.
345              
346             # "<html>"
347             b('%3Chtml%3E')->url_unescape->xml_escape;
348              
349             =head2 with_roles
350              
351             my $new_class = Mojo::ByteStream->with_roles('Mojo::ByteStream::Role::One');
352             my $new_class = Mojo::ByteStream->with_roles('+One', '+Two');
353             $stream = $stream->with_roles('+One', '+Two');
354              
355             Alias for L.
356              
357             =head2 xml_escape
358              
359             $stream = $stream->xml_escape;
360              
361             Escape only the characters C<&>, C>, C>, C<"> and C<'> in bytestream with L.
362              
363             =head2 xor_encode
364              
365             $stream = $stream->xor_encode($key);
366              
367             XOR encode bytestream with L.
368              
369             # "%04%0E%15B%03%1B%10"
370             b('foo bar')->xor_encode('baz')->url_escape;
371              
372             =head1 OPERATORS
373              
374             L overloads the following operators.
375              
376             =head2 bool
377              
378             my $bool = !!$bytestream;
379              
380             Always true.
381              
382             =head2 stringify
383              
384             my $str = "$bytestream";
385              
386             Alias for L.
387              
388             =head1 SEE ALSO
389              
390             L, L, L.
391              
392             =cut