X-Git-Url: http://git.rot13.org/?p=perl-cwmp.git;a=blobdiff_plain;f=lib%2FCWMP%2FSession.pm;h=ff6d95d4b525e2332096fa6c7fac88f3de9edaf4;hp=fd50a53821709b92e71460b9f5ee099de8f998bb;hb=6ae55ee7caaa8c33a10a983dcc3b50928eb52914;hpb=f164de0a280f1ebcf8fd031f58ea917fb79bcedf diff --git a/lib/CWMP/Session.pm b/lib/CWMP/Session.pm index fd50a53..ff6d95d 100644 --- a/lib/CWMP/Session.pm +++ b/lib/CWMP/Session.pm @@ -11,7 +11,6 @@ store sock state -queue store / ); @@ -35,10 +34,6 @@ CWMP::Session - implement logic of CWMP protocol my $server = CWMP::Session->new({ sock => $io_socket_object, store => 'state.db', - queue => [ - 'GetRPCMethods', - [ 'GetParameterValyes', 'InternetGatewayDevice.DeviceInfo.SerialNumber', 0 ], - ], debug => 1, }); @@ -107,8 +102,10 @@ sub process_request { warn "<<<< ", $sock->peerhost, " [" . localtime() . "] ", $r->method, " ", $r->uri, " $size bytes\n"; + $dump_nr++; + my $file = sprintf("dump/%04d-%s.request", $dump_nr, $sock->peerhost); + if ( $self->debug > 2 ) { - my $file = sprintf("dump/%04d-%s.request", $dump_nr++, $sock->peerhost); write_file( $file, $r->as_string ); warn "### request dumped to file: $file\n"; } @@ -123,6 +120,11 @@ sub process_request { $state = CWMP::Request->parse( $xml ); + if ( defined( $state->{_dispatch} ) && $self->debug > 2 ) { + my $type = sprintf("dump/%04d-%s-%s", $dump_nr, $sock->peerhost, $state->{_dispatch}); + symlink $file, $type || warn "can't symlink $file -> $type: $!"; + } + warn "## acquired state = ", dump( $state ), "\n"; $self->state( $state ); @@ -146,18 +148,25 @@ sub process_request { )."\r\n"); $sock->send( "Set-Cookie: ID=" . $state->{ID} . "; path=/\r\n" ) if ( $state->{ID} ); - + + my $uid = $self->store->ID_to_uid( $state->{ID}, $state ); + + my $queue = CWMP::Queue->new({ + id => $uid, + debug => $self->debug, + }); + my $job; $xml = ''; if ( my $dispatch = $state->{_dispatch} ) { $xml = $self->dispatch( $dispatch ); - } elsif ( $dispatch = shift @{ $self->queue } ) { - $xml = $self->dispatch( $dispatch ); + } elsif ( $job = $queue->dequeue ) { + $xml = $self->dispatch( $job->dispatch ); } elsif ( $size == 0 ) { - warn ">>> no more queued commands, closing connection\n"; + warn ">>> no more queued commands, closing connection to $uid\n"; return 0; } else { - warn ">>> empty response\n"; + warn ">>> empty response to $uid\n"; $state->{NoMoreRequests} = 1; $xml = $self->dispatch( 'xml', sub {} ); } @@ -165,9 +174,10 @@ 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\n"; + warn ">>>> " . $sock->peerhost . " [" . localtime() . "] sent ", length( $xml )," bytes to $uid\n"; - warn "### request over\n" if $self->debug; + $job->finish if $job; + warn "### request over for $uid\n" if $self->debug; return 1; # next request }; @@ -183,20 +193,16 @@ If debugging level of 3 or more, it will create dumps of responses named C<< dum sub dispatch { my $self = shift; - my $dispatch = shift || die "no dispatch?"; - my @args = @_; +warn "##!!! dispatch(",dump( @_ ),")\n"; - if ( ref($dispatch) eq 'ARRAY' ) { - my @a = @$dispatch; - $dispatch = shift @a; - push @args, @a; - } + my $dispatch = shift || die "no dispatch?"; + my $args = shift; my $response = CWMP::Methods->new({ debug => $self->debug }); if ( $response->can( $dispatch ) ) { - warn ">>> dispatching to $dispatch\n"; - my $xml = $response->$dispatch( $self->state, @args ); + warn ">>> dispatching to $dispatch with args ",dump( $args ),"\n"; + my $xml = $response->$dispatch( $self->state, $args ); warn "## response payload: ",length($xml)," bytes\n$xml\n" if $self->debug; if ( $self->debug > 2 ) { my $file = sprintf("dump/%04d-%s.response", $dump_nr++, $self->sock->peerhost);