/[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

revision 50 by dpavlin, Tue Jun 19 21:29:04 2007 UTC revision 67 by dpavlin, Wed Jun 20 23:13:47 2007 UTC
# Line 47  sub run { Line 47  sub run {
47                  ReuseAddr => 1,                  ReuseAddr => 1,
48          );          );
49    
50          warn "waiting for request on port ", $self->port, $/;          warn "ACS waiting for request on port ", $self->port,
51                    $self->queue ? " queue ( " . join(",",@{$self->queue}) . " )" : "",
52                    "\n";
53    
54            warn "## debug level: ", $self->debug, "\n" if $self->debug;
55    
56          while ( my $sock = $listen->accept ) {          while ( my $sock = $listen->accept ) {
57                  $sock->autoflush(1);                  $sock->autoflush(1);
58    
59                  warn "connection from ", $sock->peerhost, "\n";                  warn "connection from ", $sock->peerhost, "\n" if $self->debug;
60    
61                  $self->sock( $sock );   # FIXME this will not work for multiple clients                  $self->sock( $sock );   # FIXME this will not work for multiple clients
62                  while ( $self->process_request ) {                  while ( $self->process_request ) {
63                          warn "...another one bites a dust...\n";                          warn "...another one bites the dust...\n";
64                  }                  }
65    
66                  warn "...returning to accepting new connections\n";                  warn "...returning to accepting new connections\n";
# Line 79  sub process_request { Line 83  sub process_request {
83          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 'IO::Socket::INET' );
84    
85          if ( ! $sock->connected ) {          if ( ! $sock->connected ) {
86                  warn "SOCKET NOT CONNECTED";                  warn "SOCKET NOT CONNECTED\n";
87                  return 0;                  return 0;
88          }          }
89    
# Line 116  sub process_request { Line 120  sub process_request {
120    
121                  do {                  do {
122    
123                          warn "get chunk len\n" if $self->debug;                          warn "get chunk len\n" if $self->debug > 1;
124                                                    
125                          my $hex;                          my $hex;
126                          do {                          do {
# Line 127  sub process_request { Line 131  sub process_request {
131                          die "chunk size not valid hex: $hex" unless ( $hex =~ m/^[0-9a-f]+$/i);                          die "chunk size not valid hex: $hex" unless ( $hex =~ m/^[0-9a-f]+$/i);
132                          $len = hex( $hex );                          $len = hex( $hex );
133    
134                          warn "getting chunk of $len bytes\n" if $self->debug;                          warn "getting chunk of $len bytes\n" if $self->debug > 1;
135    
136                          $sock->read( my $buff, $len );                          $sock->read( my $buff, $len );
137                          $chunk .= $buff;                          $chunk .= $buff;
138    
139                          warn "--- $len bytes: --=>||$buff||<=--\n";                          warn "--- $len bytes: --=>||$buff||<=--\n" if $self->debug > 1;
140    
141                  } while ( $len > 0 );                  } while ( $len > 0 );
142                  my $sep = $sock->getline;                  my $sep = $sock->getline;
# Line 168  sub process_request { Line 172  sub process_request {
172    
173          } else {          } else {
174                  $state = $self->state;                  $state = $self->state;
175                  warn "last request state = ", dump( $state ), "\n";                  warn "last request state = ", dump( $state ), "\n" if $self->debug > 1;
176          }          }
177    
178    
# Line 177  sub process_request { Line 181  sub process_request {
181                  'Content-Type: text/xml; charset="utf-8"',                  'Content-Type: text/xml; charset="utf-8"',
182                  'Server: AcmeCWMP/42',                  'Server: AcmeCWMP/42',
183                  'SOAPServer: AcmeCWMP/42'                  'SOAPServer: AcmeCWMP/42'
184          ));          )."\r\n");
185    
186          $sock->send( "Set-Cookie: ID=" . $state->{ID} . "; path=/\r\n" ) if ( $state->{ID} );          $sock->send( "Set-Cookie: ID=" . $state->{ID} . "; path=/\r\n" ) if ( $state->{ID} );
187                    
# Line 219  sub dispatch { Line 223  sub dispatch {
223          if ( $response->can( $dispatch ) ) {          if ( $response->can( $dispatch ) ) {
224                  warn ">>> dispatching to $dispatch\n";                  warn ">>> dispatching to $dispatch\n";
225                  my $xml = $response->$dispatch( $self->state, @_ ) . "\r\n";                  my $xml = $response->$dispatch( $self->state, @_ ) . "\r\n";
226                  warn "## response payload: ",length($xml)," bytes\n$xml\n";                  warn "## response payload: ",length($xml)," bytes\n$xml\n" if $self->debug;
227                  return $xml;                  return $xml;
228          } else {          } else {
229                  confess "can't dispatch to $dispatch";                  confess "can't dispatch to $dispatch";
# Line 240  sub read_headers { Line 244  sub read_headers {
244    while (defined($_ = $self->sock->getline)) {    while (defined($_ = $self->sock->getline)) {
245      s/[\r\n]+$//;      s/[\r\n]+$//;
246      last unless length $_;      last unless length $_;
247          warn "-- $_\n";          warn "-- $_\n" if $self->debug;
248      return 0 if ! /^ ([\w\-]+) :[\ \t]* (.*) $/x;      return 0 if ! /^ ([\w\-]+) :[\ \t]* (.*) $/x;
249      $self->{headers}->{$1} = $2;      $self->{headers}->{$1} = $2;
250    }    }

Legend:
Removed from v.50  
changed lines
  Added in v.67

  ViewVC Help
Powered by ViewVC 1.1.26