File Coverage

blib/lib/Net/WebSocket/HTTP.pm
Criterion Covered Total %
statement 22 22 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 30 30 100.0


line stmt bran cond sub pod time code
1             package Net::WebSocket::HTTP;
2              
3 4     4   1283 use strict;
  4         8  
  4         108  
4 4     4   17 use warnings;
  4         7  
  4         83  
5              
6 4     4   961 use Call::Context ();
  4         907  
  4         65  
7              
8 4     4   944 use Net::WebSocket::X ();
  4         10  
  4         589  
9              
10             =encoding utf-8
11              
12             =head1 NAME
13              
14             Net::WebSocket::HTTP - HTTP utilities for Net::WebSocket
15              
16             =head1 SYNOPSIS
17              
18             @tokens = Net::WebSocket::HTTP::split_tokens($tokens_str);
19              
20             =head1 FUNCTIONS
21              
22             =head2 @tokens = split_tokens( TOKENS_STR )
23              
24             A parser for the C<1#token> format as defined in L. (C<1#> and C are defined independently of each other.)
25              
26             Returns a list of the HTTP tokens in TOKENS_STR. Throws an exception
27             if any of the tokens is invalid as per the RFC’s C definition.
28              
29             =cut
30              
31             #Would this be useful to publish separately? It seemed so at one point,
32             #but “#1token” doesn’t appear in the HTTP RFC.
33             sub split_tokens {
34 25     25 1 12692 my ($value) = @_;
35              
36 25         84 Call::Context::must_be_list();
37              
38 24         656 $value =~ s<\A[ \t]+><>;
39 24         53 $value =~ s<[ \t]+\z><>;
40              
41 24         34 my @tokens;
42 24         66 for my $p ( split m<[ \t]*,[ \t]*>, $value ) {
43 28 100       63 if ($p =~ tr~()<>@,;:\\"/[]?={} \t~~) {
44 16         60 die Net::WebSocket::X->create('BadToken', $p);
45             }
46              
47 12         24 push @tokens, $p;
48             }
49              
50 8         29 return @tokens;
51             }
52              
53             1;