/[Frey]/trunk/lib/Frey/Server.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 /trunk/lib/Frey/Server.pm

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

revision 28 by dpavlin, Sun Jun 29 20:13:46 2008 UTC revision 48 by dpavlin, Wed Jul 2 12:36:59 2008 UTC
# Line 4  use strict; Line 4  use strict;
4  use warnings;  use warnings;
5    
6  use Continuity;  use Continuity;
7  use Continuity::REPL;  #use Continuity::REPL;
8  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
9    
10  use base 'Frey';  use base 'Frey';
# Line 15  my $got_message; # Flag to indicate that Line 15  my $got_message; # Flag to indicate that
15    
16  use vars qw( $repl $server );  use vars qw( $repl $server );
17    
18  sub run {  #$repl = Continuity::REPL->new;
19          $repl = Continuity::REPL->new;  $server = Continuity->new(
20          $server = Continuity->new(          port => 16001,
21            port => 16001,          path_session => 1,
22            path_session => 1,          cookie_session => 'sid',
23            cookie_session => 'sid',          callback => \&main,
24            callback => \&main,          debug_level => 1,
25          );          staticp => sub { $_[0]->url =~ m/\.(jpg|jpeg|gif|png|css|ico|js|html?)$/ },
26          $server->debug_level( 2 );  );
27    
28    sub run {
29          $server->loop;          $server->loop;
30  }  }
31    
# Line 32  sub run { Line 33  sub run {
33  # pushstream, a sent message, or a request for the main HTML. We delegate each  # pushstream, a sent message, or a request for the main HTML. We delegate each
34  # of these cases, none of which will return (they all loop forever).  # of these cases, none of which will return (they all loop forever).
35  sub main {  sub main {
36    my ($req) = @_;          my ($req) = @_;
37        
38    my $path = $req->request->url->path;          my $path = $req->request->url->path;
39    warn "REQUEST: $path\n";          warn "REQUEST: $path\n";
40    
41          warn $req->request->header('User_Agent');          warn $req->request->header('User_Agent');
42  #warn dump( $req );  #warn dump( $req );
43    
44    # If this is a request for the pushtream, then give them that          # If this is a request for the pushtream, then give them that
45    if($path =~ /pushstream/) {          if($path =~ /pushstream/) {
46          pushstream($req);                  pushstream($req);
47    }          }
48        
49    # If they are sending us a message, we give them a thread for that too          # If they are sending us a message, we give them a thread for that too
50    if($path =~ /sendmessage/) {          if($path =~ /sendmessage/) {
51          send_message($req);                  send_message($req);
52    }          }
53    
54    # Otherwise, lets give them page          # Otherwise, lets give them page
55    send_page($req);          send_page($req);
56  }  }
57    
58  # Here we accept a connection to the browser, and keep it open. Meanwhile we  # Here we accept a connection to the browser, and keep it open. Meanwhile we
# Line 100  sub send_page { Line 101  sub send_page {
101                  warn "param = ",dump($req->param);                  warn "param = ",dump($req->param);
102                  my $path = $req->request->url->path;                  my $path = $req->request->url->path;
103    
104                    my $html;
105    
106                  if ( $path =~ m/::/ ) {                  if ( $path =~ m/::/ ) {
107                          my ( undef, $module, $method ) = split(m!/!, $path, 3);                          my ( undef, $module, $method ) = split(m!/!, $path, 3);
108    
109                          if ( ! defined( $templates->{$module} ) ) {                          if ( ! defined( $templates->{$module} ) ) {
110                                  $req->conn->send_status_line( 404, "$module" );                                  $req->conn->send_status_line( 404, "$module" );
111                                  $req->print("Package $module not found");                                  $html = "Package $module not found";
112                          } elsif ( ! $method ) {                          } elsif ( ! $method ) {
113                                  $req->print( Frey::HTML->page( 'package-methods', $req, $module ) );                                  $html = Frey::HTML->page( 'package-methods', $req, $module );
114                          } elsif ( grep(/^\Q$method\E$/, @{ $templates->{$module} }) ) {                          } elsif ( grep(/^\Q$method\E$/, @{ $templates->{$module} }) ) {
115                                  $req->print( Frey::HTML->page( $method, $req ) );                                  $html = Frey::HTML->page( $method, $req );
116                          } else {                          } else {
117                                  $req->conn->send_status_line( 404, "$module $method" );                                  $req->conn->send_status_line( 404, "$module $method" );
118                                  $req->print("Package $module doesn't have $method");                                  $html = "Package $module doesn't have $method";
119                          }                          }
120                  } else {                  } else {
121                          my $html = Frey::HTML->page( 'status' );                          warn "fallback to status page\n";
122                          $req->print( $html );                          $html = Frey::HTML->page( 'status' );
                         warn ">> ",length( $html ), " bytes\n";  
123                  }                  }
124    
125                    $req->print( $html );
126                    warn ">> ",length( $html ), " bytes\n";
127                  $req->next;                  $req->next;
128          }          }
129  }  }

Legend:
Removed from v.28  
changed lines
  Added in v.48

  ViewVC Help
Powered by ViewVC 1.1.26