File Coverage

blib/lib/Net/WebSocket/Constants.pm
Criterion Covered Total %
statement 15 25 60.0
branch 0 4 0.0
condition n/a
subroutine 5 8 62.5
pod 0 3 0.0
total 20 40 50.0


line stmt bran cond sub pod time code
1             package Net::WebSocket::Constants;
2              
3 13     13   91 use strict;
  13         28  
  13         675  
4 13     13   77 use warnings;
  13         59  
  13         545  
5              
6 13         1159 use constant OPCODE => {
7             continuation => 0,
8             text => 1,
9             binary => 2,
10             close => 8,
11             ping => 9,
12             pong => 10,
13 13     13   77 };
  13         34  
14              
15             use constant {
16 13         1351 PROTOCOL_VERSION => 13,
17             REQUIRED_HTTP_METHOD => 'GET',
18             REQUIRED_HTTP_STATUS => 101,
19 13     13   91 };
  13         30  
20              
21             #These names are taken from:
22             #https://msdn.microsoft.com/en-us/library/windows/desktop/hh449350(v=vs.85).aspx
23 13         2862 use constant STATUS => {
24             SUCCESS => 1000,
25             ENDPOINT_UNAVAILABLE => 1001,
26             PROTOCOL_ERROR => 1002,
27             INVALID_DATA_TYPE => 1003,
28              
29             #These are never actually sent.
30             #EMPTY_CLOSE => 1005,
31             #ABORTED_CLOSE => 1006,
32              
33             INVALID_PAYLOAD => 1007,
34             POLICY_VIOLATION => 1008,
35             MESSAGE_TOO_BIG => 1009,
36             UNSUPPORTED_EXTENSIONS => 1010,
37             SERVER_ERROR => 1011,
38              
39             #RFC says not to use this one,
40             #but MS has it in their enum.
41             #SECURE_HANDSHAKE_ERROR => 1015,
42 13     13   104 };
  13         31  
43              
44             #----------------------------------------------------------------------
45              
46             my %status_code_name;
47              
48             sub status_name_to_code {
49 0     0 0   my ($name) = @_;
50              
51 0           return STATUS()->{$name};
52             }
53              
54             sub status_code_to_name {
55 0     0 0   my ($code) = @_;
56              
57 0 0         %status_code_name = reverse %{ STATUS() } if !%status_code_name;
  0            
58              
59 0           return $status_code_name{$code};
60             }
61              
62             #----------------------------------------------------------------------
63              
64             my %opcode_type;
65              
66             sub opcode_to_type {
67 0     0 0   my ($opcode) = @_;
68              
69 0 0         %opcode_type = reverse %{ OPCODE() } if !%opcode_type;
  0            
70              
71 0           return $opcode_type{$opcode};
72             }
73              
74             1;