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 5     5   1348 use strict;
  5         8  
  5         115  
4 5     5   24 use warnings;
  5         9  
  5         110  
5              
6 5     5   1206 use Call::Context ();
  5         1036  
  5         79  
7              
8 5     5   1095 use Net::WebSocket::X ();
  5         11  
  5         667  
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 31     31 1 14000 my ($value) = @_;
35              
36 31         88 Call::Context::must_be_list();
37              
38 30         1005 $value =~ s<\A[ \t]+><>;
39 30         79 $value =~ s<[ \t]+\z><>;
40              
41 30         44 my @tokens;
42 30         95 for my $p ( split m<[ \t]*,[ \t]*>, $value ) {
43 34 100       88 if ($p =~ tr~()<>@,;:\\"/[]?={} \t~~) {
44 16         57 die Net::WebSocket::X->create('BadToken', $p);
45             }
46              
47 18         39 push @tokens, $p;
48             }
49              
50 14         54 return @tokens;
51             }
52              
53             1;