line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
## Domain Registry Interface, Dummy transport for tests & debug |
2
|
|
|
|
|
|
|
## |
3
|
|
|
|
|
|
|
## Copyright (c) 2005,2007,2009,2011,2013 Patrick Mevzek . All rights reserved. |
4
|
|
|
|
|
|
|
## |
5
|
|
|
|
|
|
|
## This file is part of Net::DRI |
6
|
|
|
|
|
|
|
## |
7
|
|
|
|
|
|
|
## Net::DRI is free software; you can redistribute it and/or modify |
8
|
|
|
|
|
|
|
## it under the terms of the GNU General Public License as published by |
9
|
|
|
|
|
|
|
## the Free Software Foundation; either version 2 of the License, or |
10
|
|
|
|
|
|
|
## (at your option) any later version. |
11
|
|
|
|
|
|
|
## |
12
|
|
|
|
|
|
|
## See the LICENSE file that comes with this distribution for more details. |
13
|
|
|
|
|
|
|
######################################################################################### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
package Net::DRI::Transport::Dummy; |
16
|
|
|
|
|
|
|
|
17
|
58
|
|
|
58
|
|
43293
|
use strict; |
|
58
|
|
|
|
|
96
|
|
|
58
|
|
|
|
|
2590
|
|
18
|
58
|
|
|
58
|
|
248
|
use warnings; |
|
58
|
|
|
|
|
69
|
|
|
58
|
|
|
|
|
2452
|
|
19
|
|
|
|
|
|
|
|
20
|
58
|
|
|
58
|
|
392
|
use base qw(Net::DRI::Transport); |
|
58
|
|
|
|
|
148
|
|
|
58
|
|
|
|
|
31313
|
|
21
|
|
|
|
|
|
|
|
22
|
58
|
|
|
58
|
|
419
|
use Net::DRI::Data::Raw; |
|
58
|
|
|
|
|
97
|
|
|
58
|
|
|
|
|
488
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=pod |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Net::DRI::Transport::Dummy - Net::DRI dummy transport for tests & debug |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 DESCRIPTION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Please see the README file for details. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 SUPPORT |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
For now, support questions should be sent to: |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Enetdri@dotandco.comE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Please also see the SUPPORT file in the distribution. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 SEE ALSO |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Ehttp://www.dotandco.com/services/software/Net-DRI/E |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 AUTHOR |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Patrick Mevzek, Enetdri@dotandco.comE |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 COPYRIGHT |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Copyright (c) 2005,2007,2009,2011,2013 Patrick Mevzek . |
53
|
|
|
|
|
|
|
All rights reserved. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
56
|
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by |
57
|
|
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or |
58
|
|
|
|
|
|
|
(at your option) any later version. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
See the LICENSE file that comes with this distribution for more details. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=cut |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
#################################################################################################### |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
sub new |
67
|
|
|
|
|
|
|
{ |
68
|
1
|
|
|
1
|
1
|
2
|
my ($class,$ctx,$rh)=@_; |
69
|
1
|
|
|
|
|
11
|
my $self=$class->SUPER::new($ctx,$rh); ## We are now officially a Net::DRI::Transport instance |
70
|
1
|
|
|
|
|
6
|
$self->has_state(0); |
71
|
1
|
|
|
|
|
9
|
$self->is_sync(1); |
72
|
1
|
|
|
|
|
10
|
$self->name('dummy'); |
73
|
1
|
|
|
|
|
9
|
$self->version('0.1'); |
74
|
|
|
|
|
|
|
|
75
|
1
|
50
|
|
|
|
9
|
$self->{f_send}=(exists($rh->{f_send}))? $rh->{f_send} : \&_print; |
76
|
1
|
50
|
|
|
|
4
|
$self->{f_recv}=(exists($rh->{f_recv}))? $rh->{f_recv} : \&_got_ok; |
77
|
|
|
|
|
|
|
|
78
|
1
|
|
|
|
|
3
|
return $self; |
79
|
|
|
|
|
|
|
} |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
sub send ## no critic (Subroutines::ProhibitBuiltinHomonyms) |
82
|
|
|
|
|
|
|
{ |
83
|
10
|
|
|
10
|
0
|
17
|
my ($self,$ctx,$tosend)=@_; |
84
|
10
|
|
|
|
|
66
|
return $self->SUPER::send($ctx,$tosend,$self->{f_send},\&handle_error); |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
sub handle_error |
88
|
|
|
|
|
|
|
{ |
89
|
0
|
|
|
0
|
0
|
0
|
my ($self,$err,$c,$is_timeout,$ok)=@_; |
90
|
0
|
|
|
|
|
0
|
die($err->as_string()); |
91
|
|
|
|
|
|
|
} |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
sub _print |
94
|
|
|
|
|
|
|
{ |
95
|
0
|
|
|
0
|
|
0
|
my ($self,$count,$tosend)=@_; |
96
|
0
|
|
|
|
|
0
|
print STDOUT ">>>>>>>>>>>>>>>>>> (Net::DRI::Transport::Dummy) (count=$count)\n"; |
97
|
0
|
|
|
|
|
0
|
print STDOUT $tosend->as_string(); |
98
|
0
|
|
|
|
|
0
|
print STDOUT ">>>>>>>>>>>>>>>>>>\n\n"; |
99
|
0
|
|
|
|
|
0
|
return 1; ## very important |
100
|
|
|
|
|
|
|
} |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
sub receive |
103
|
|
|
|
|
|
|
{ |
104
|
10
|
|
|
10
|
0
|
14
|
my ($self,$ctx,$count)=@_; |
105
|
10
|
|
|
|
|
44
|
return $self->SUPER::receive($ctx,$self->{f_recv}); |
106
|
|
|
|
|
|
|
} |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
sub _got_ok |
109
|
|
|
|
|
|
|
{ |
110
|
0
|
|
|
0
|
|
|
my ($self,$count)=@_; |
111
|
0
|
|
|
|
|
|
my $m="200 OK\r\n.\r\n"; |
112
|
0
|
|
|
|
|
|
print STDOUT "<<<<<<<<<<<<<<<<<< (Net::DRI::Transport::Dummy) (count=$count)\n"; |
113
|
0
|
|
|
|
|
|
print STDOUT $m; |
114
|
0
|
|
|
|
|
|
print STDOUT "<<<<<<<<<<<<<<<<<<\n\n"; |
115
|
0
|
|
|
|
|
|
return Net::DRI::Data::Raw->new_from_string($m); |
116
|
|
|
|
|
|
|
} |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
###################################################################################### |
119
|
|
|
|
|
|
|
1; |