File Coverage

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


line stmt bran cond sub pod time code
1             package Net::WebSocket::HTTP;
2              
3 3     3   17 use strict;
  3         6  
  3         69  
4 3     3   12 use warnings;
  3         5  
  3         68  
5              
6 3     3   744 use Call::Context ();
  3         626  
  3         48  
7              
8 3     3   634 use Net::WebSocket::X ();
  3         7  
  3         423  
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 5     5 1 11 my ($value) = @_;
35              
36 5         12 Call::Context::must_be_list();
37              
38 5         40 $value =~ s<\A[ \t]+><>;
39 5         10 $value =~ s<[ \t]+\z><>;
40              
41 5         9 my @tokens;
42 5         14 for my $p ( split m<[ \t]*,[ \t]*>, $value ) {
43 7 50       13 if ($p =~ tr~()<>@,;:\\"/[]?={} \t~~) {
44 0         0 die Net::WebSocket::X->create('BadToken', $p);
45             }
46              
47 7         13 push @tokens, $p;
48             }
49              
50 5         12 return @tokens;
51             }
52              
53             1;