/[cwmp]/google/trunk/lib/CWMP/Session.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /google/trunk/lib/CWMP/Session.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

google/lib/CWMP/Server.pm revision 72 by dpavlin, Wed Jun 20 23:48:45 2007 UTC google/lib/CWMP/Session.pm revision 110 by dpavlin, Sun Oct 21 01:33:53 2007 UTC
# Line 1  Line 1 
1  # Dobrica Pavlinusic, <dpavlin@rot13.org> 06/18/07 10:19:50 CEST  # Dobrica Pavlinusic, <dpavlin@rot13.org> 06/18/07 10:19:50 CEST
2  package CWMP::Server;  package CWMP::Session;
3    
4  use strict;  use strict;
5  use warnings;  use warnings;
# Line 7  use warnings; Line 7  use warnings;
7  use base qw/Class::Accessor/;  use base qw/Class::Accessor/;
8  __PACKAGE__->mk_accessors( qw/  __PACKAGE__->mk_accessors( qw/
9  debug  debug
10  port  store_path
11    
12  sock  sock
13  state  state
14  queue  queue
15    store
16  / );  / );
17    
18  use IO::Socket::INET;  use HTTP::Daemon;
19  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
20    use Carp qw/confess cluck croak/;
21    
22  use CWMP::Request;  use CWMP::Request;
23  use CWMP::Response;  use CWMP::Response;
24  use Carp qw/confess cluck/;  use CWMP::Store;
25    
26  =head1 NAME  =head1 NAME
27    
28  CWMP::Server - implement logic of CWMP protocol  CWMP::Session - implement logic of CWMP protocol
29    
30  =head1 METHODS  =head1 METHODS
31    
32  =head2 new  =head2 new
33    
34    my $server = CWMP::Server->new({ port => 3333 });    my $server = CWMP::Session->new({
35            sock => $io_socket_object,
36            store_path => 'state.db',
37            queue => [ qw/GetRPCMethods GetParameterNames/ ],
38            debug => 1,
39      });
40    
41  =head2 run  =cut
42    
43    $server->run();  sub new {
44            my $class = shift;
45            my $self = $class->SUPER::new( @_ );
46    
47  =cut          confess "need sock" unless $self->sock;
48    
49  sub run {          $self->debug( 0 ) unless $self->debug;
         my $self = shift;  
50    
51          my $listen = IO::Socket::INET->new(          warn "created ", __PACKAGE__, "(", dump( @_ ), ") for ", $self->sock->peerhost, "\n" if $self->debug;
                 Listen    => 5,  
 #               LocalAddr => 'localhost',  
                 LocalPort => $self->port,  
                 Proto     => 'tcp',  
                 Blocking  => 1,  
                 ReuseAddr => 1,  
         );  
   
         warn "ACS waiting for request on port ", $self->port,  
                 $self->queue ? " queue ( " . join(",",@{$self->queue}) . " )" : "",  
                 "\n";  
   
         warn "## debug level: ", $self->debug, "\n" if $self->debug;  
   
         while ( my $sock = $listen->accept ) {  
                 $sock->autoflush(1);  
   
                 warn "connection from ", $sock->peerhost, "\n" if $self->debug;  
   
                 $self->sock( $sock );   # FIXME this will not work for multiple clients  
                 while ( $self->process_request ) {  
                         warn "...another one bites the dust...\n";  
                 }  
52    
53                  warn "...returning to accepting new connections\n";          $self->store( CWMP::Store->new({
54          }                  debug => $self->debug,
55                    path => $self->store_path,
56            }) );
57    
58            croak "can't open ", $self->store_path, ": $!" unless $self->store;
59    
60            return $self;
61  }  }
62    
63  =head2 process_request  =head2 process_request
# Line 80  sub process_request { Line 73  sub process_request {
73    
74          my $sock = $self->sock || die "no sock?";          my $sock = $self->sock || die "no sock?";
75    
76          die "not IO::Socket::INET but ", ref( $sock ) unless ( ref($sock) eq 'IO::Socket::INET' );  #       die "not IO::Socket::INET but ", ref( $sock ) unless ( ref($sock) eq 'Net::Server::Proto::TCP' );
77    
78          if ( ! $sock->connected ) {          if ( ! $sock->connected ) {
79                  warn "SOCKET NOT CONNECTED\n";                  warn "SOCKET NOT CONNECTED\n";
80                  return 0;                  return 0;
81          }          }
82    
83          $sock->autoflush( 1 );          bless $sock, 'HTTP::Daemon::ClientConn';
         $sock->blocking( 1 );  
84    
85          ### read the first line of response          # why do I have to do this?
86          my $line = $sock->getline;          # solution from http://use.perl.org/~Matts/journal/12896
87          return $self->error(400, "No Data") unless ( defined $line );          ${*$sock}{'httpd_daemon'} = HTTP::Daemon->new;
   
         $line =~ s/[\r\n]+$//;  
         if ($line !~ /^ (\w+) \ + (\S+) \ + (HTTP\/1.\d) $ /x) {  
                 warn "ERROR: $line\n";  
                 return $self->error(400, "Bad request");  
         }  
         my ($method, $req, $protocol) = ($1, $2, $3);  
         warn "<<<< ", $sock->peerhost, " - - [" . localtime() . "] \"$method $req $protocol\"\n";  
88    
89          ### read in other headers          my $r = $sock->get_request || confess "can't get_request";
         $self->read_headers || return $self->error(400, "Strange headers");  
90    
91          ### do we support the type          warn "<<<< ", $sock->peerhost, " - - [" . localtime() . "] ", $r->method, " ", $r->uri, "\n";
 #       if ($method !~ /GET|POST|HEAD/) {  
         if ($method !~ /POST/) {  
                 return $self->error(400, "Unsupported Method");  
         }  
92    
93      my $chunk;          my $chunk = $r->content;
         my $transfer_encoding = $self->header('Transfer-Encoding');  
   
         if ( $transfer_encoding && $transfer_encoding =~ qr/^chunked/i ) {  
   
                 my $len = 0;  
   
                 do {  
   
                         warn "get chunk len\n" if $self->debug > 1;  
                           
                         my $hex;  
                         do {  
                                 $hex = $sock->getline;  
                                 $hex =~ s/[\n\r]+$//;  
                         } until ( $hex ne '' );  
   
                         die "chunk size not valid hex: $hex" unless ( $hex =~ m/^[0-9a-f]+$/i);  
                         $len = hex( $hex );  
   
                         warn "getting chunk of $len bytes\n" if $self->debug > 1;  
   
                         $sock->read( my $buff, $len );  
                         $chunk .= $buff;  
   
                         warn "--- $len bytes: --=>||$buff||<=--\n" if $self->debug > 1;  
   
                 } while ( $len > 0 );  
                 my $sep = $sock->getline;  
                 die "expected separator, not ", dump( $sep ) if ( $sep !~ m/^[\n\r]+$/ );  
   
         } else {  
                 die "right now, we support only Transfer-Encoding: chunked";  
         }  
94    
95          my $size = length( $chunk );          my $size = length( $chunk );
96    
# Line 154  sub process_request { Line 100  sub process_request {
100    
101          if ( $size > 0 ) {          if ( $size > 0 ) {
102    
103                  die "no SOAPAction header in ",dump($chunk) unless defined ( $self->header('SOAPAction') );                  die "no SOAPAction header in ",dump($chunk) unless defined ( $r->header('SOAPAction') );
104    
105    
106                  if ( $chunk ) {                  if ( $chunk ) {
# Line 165  sub process_request { Line 111  sub process_request {
111                          warn "## acquired state = ", dump( $state ), "\n";                          warn "## acquired state = ", dump( $state ), "\n";
112    
113                          $self->state( $state );                          $self->state( $state );
114                            $self->store->update_state( ID => $state->{ID}, $state );
115    
116                  } else {                  } else {
117                          warn "## empty request\n";                          warn "## empty request\n";
# Line 233  sub dispatch { Line 180  sub dispatch {
180          }          }
181  };  };
182    
 =head2 read_headers  
   
 parse headers from request  
   
 =cut  
   
 sub read_headers {  
   my $self = shift;  
   
   $self->{headers} = {};  
   
   while (defined($_ = $self->sock->getline)) {  
     s/[\r\n]+$//;  
     last unless length $_;  
         warn "-- $_\n" if $self->debug;  
     return 0 if ! /^ ([\w\-]+) :[\ \t]* (.*) $/x;  
     $self->{headers}->{$1} = $2;  
   }  
   
   return 1;  
 }  
   
 =head2 header  
   
 Getter for specific header  
   
   $self->header('Cookies');  
   
 =cut  
   
 sub header {  
         my $self = shift;  
         my $header = shift || die "no header?";  
         if ( defined( $self->{headers}->{$header} )) {  
                 return $self->{headers}->{$header};  
         } else {  
                 return;  
         }  
 }  
183    
184  =head2 error  =head2 error
185    

Legend:
Removed from v.72  
changed lines
  Added in v.110

  ViewVC Help
Powered by ViewVC 1.1.26