-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPacket.pm
69 lines (50 loc) · 1.49 KB
/
Packet.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package NRD::Packet;
use strict;
use warnings;
use Carp;
#length needs to count bytes. not characters
use bytes;
sub new {
my ($class, $options) = @_;
my $self = {
'max_packet_size' => 256*1024
};
bless ($self, $class);
return $self;
}
sub pack {
my ($self, $content) = @_;
my $packet = length($content)."\n".$content;
return $packet;
}
# Expect 1234 as a size of bytes to read next. If 'TEST', then will just return undef - useful for testing connectivity
# Needs a line terminator because of buffered input/output
sub unpack {
my ($self, $fd) = @_;
my $bytes = <$fd>;
croak "No data received" unless defined $bytes;
chomp $bytes;
if ($bytes eq "TEST") {
return undef;
}
if ($bytes !~ /^\d+$/) {
# Unknown
croak "Can't read packet header";
}
croak "NRD packet bigger than expected ($bytes bytes). Are you getting trash?" if ($bytes > $self->{'max_packet_size'});
croak "NRD packet with zero length. Are you getting trash?" if ($bytes <= 0);
read($fd, my $buffer, $bytes) == $bytes or croak "Didn't receive whole packet";
return $buffer;
}
#################### main pod documentation begin ###################
=head1 NAME
NRD::Packet - Interpret the requests and responses for NRD
=head1 DESCRIPTION
Project Home Page: http://code.google.com/p/nrd/
=head1 METHODS
=head2 pack($content)
Prepare a string to get transmitted over the net
=head2 unpack($fd)
Get a content from $fd that was transmitted with "pack" on the other end
=cut
1;