X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=lib%2FCWMP%2FSession.pm;h=e8fa1ddb57103b0cc94e5cea4e7663b9427b5154;hb=5ea6e09597af2a09a847b8973e30601811f52725;hp=c9c1f1ff74c5f667b8adb98ebb936af63432f104;hpb=73114373a890391990bba21f0b4eadb18a4a859b;p=perl-cwmp.git diff --git a/lib/CWMP/Session.pm b/lib/CWMP/Session.pm index c9c1f1f..e8fa1dd 100644 --- a/lib/CWMP/Session.pm +++ b/lib/CWMP/Session.pm @@ -17,13 +17,15 @@ store use HTTP::Daemon; use Data::Dump qw/dump/; -use Carp qw/confess cluck croak/; +use Carp qw/carp confess cluck croak/; use File::Slurp; use CWMP::Request; use CWMP::Methods; use CWMP::Store; +#use Devel::LeakTrace::Fast; + =head1 NAME CWMP::Session - implement logic of CWMP protocol @@ -100,7 +102,12 @@ sub process_request { # solution from http://use.perl.org/~Matts/journal/12896 ${*$sock}{'httpd_daemon'} = HTTP::Daemon->new; - my $r = $sock->get_request || confess "can't get_request"; + my $r = $sock->get_request; + + if ( ! $r ) { + carp "can't get_request"; + return 0; + } my $xml = $r->content; @@ -113,7 +120,7 @@ sub process_request { if ( $self->create_dump ) { write_file( $file, $r->as_string ); - warn "### request dumped to file: $file\n"; + warn "### request dumped to file: $file\n" if $self->debug; } my $state; @@ -131,7 +138,7 @@ sub process_request { symlink $file, $type || warn "can't symlink $file -> $type: $!"; } - warn "## acquired state = ", dump( $state ), "\n"; + warn "## acquired state = ", dump( $state ), "\n" if $self->debug; if ( ! defined( $state->{DeviceID} ) ) { warn "## state with DeviceID, using old one...\n"; @@ -150,18 +157,26 @@ sub process_request { #warn "last request state = ", dump( $state ), "\n" if $self->debug > 1; } - $sock->send(join("\r\n", 'HTTP/1.1 200 OK', 'Content-Type: text/xml; charset="utf-8"', - 'Server: AcmeCWMP/42', - 'SOAPServer: AcmeCWMP/42' + 'Server: PerlCWMP/42', + 'SOAPServer: PerlCWMP/42' )."\r\n"); $sock->send( "Set-Cookie: ID=" . $state->{ID} . "; path=/\r\n" ) if ( $state->{ID} ); my $uid = $self->store->state_to_uid( $state ); + my $to_uid = join(" ", grep { defined($_) } "to $uid", + # board + $state->{Parameter}->{'InternetGatewayDevice.DeviceInfo.HardwareVersion'}, + # version + $state->{Parameter}->{'InternetGatewayDevice.DeviceInfo.SoftwareVersion'}, + # summary +# $state->{Parameter}->{'InternetGatewayDevice.DeviceSummary'}, + ) . "\n"; + my $queue = CWMP::Queue->new({ id => $uid, debug => $self->debug, @@ -174,10 +189,11 @@ sub process_request { } elsif ( $job = $queue->dequeue ) { $xml = $self->dispatch( $job->dispatch ); } elsif ( $size == 0 ) { - warn ">>> no more queued commands, closing connection to $uid\n"; - return 0; + warn ">>> over, closing connection $to_uid"; + $sock->close; + return; } else { - warn ">>> empty response to $uid\n"; + warn ">>> empty response $to_uid"; $state->{NoMoreRequests} = 1; $xml = $self->dispatch( 'xml', sub {} ); } @@ -185,7 +201,7 @@ sub process_request { $sock->send( "Content-Length: " . length( $xml ) . "\r\n\r\n" ); $sock->send( $xml ) or die "can't send response"; - warn ">>>> " . $sock->peerhost . " [" . localtime() . "] sent ", length( $xml )," bytes to $uid\n"; + warn ">>>> " . $sock->peerhost . " [" . localtime() . "] sent ", length( $xml )," bytes $to_uid"; $job->finish if $job; warn "### request over for $uid\n" if $self->debug; @@ -216,7 +232,7 @@ sub dispatch { if ( $self->create_dump ) { my $file = sprintf("dump/%04d-%s.response", $dump_nr++, $self->sock->peerhost); write_file( $file, $xml ); - warn "### response dump: $file\n"; + warn "### response dump: $file\n" if $self->debug; } return $xml; } else {