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   21 use strict;
  3         7  
  3         82  
4 3     3   17 use warnings;
  3         6  
  3         72  
5              
6 3     3   841 use Call::Context ();
  3         859  
  3         62  
7              
8 3     3   800 use Net::WebSocket::X ();
  3         8  
  3         510  
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 13 my ($value) = @_;
35              
36 5         18 Call::Context::must_be_list();
37              
38 5         56 $value =~ s<\A[ \t]+><>;
39 5         16 $value =~ s<[ \t]+\z><>;
40              
41 5         10 my @tokens;
42 5         22 for my $p ( split m<[ \t]*,[ \t]*>, $value ) {
43 7 50       19 if ($p =~ tr~()<>@,;:\\"/[]?={} \t~~) {
44 0         0 die Net::WebSocket::X->create('BadToken', $p);
45             }
46              
47 7         23 push @tokens, $p;
48             }
49              
50 5         18 return @tokens;
51             }
52              
53             1;