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

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

revision 19 by dpavlin, Sun Jun 29 12:55:39 2008 UTC revision 28 by dpavlin, Sun Jun 29 20:13:46 2008 UTC
# Line 7  use Continuity; Line 7  use Continuity;
7  use Continuity::REPL;  use Continuity::REPL;
8  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
9    
10  use HTML;  use base 'Frey';
11    use Frey::HTML;
12    
13  my @messages;    # Global (shared) list of messages  my @messages;    # Global (shared) list of messages
14  my $got_message; # Flag to indicate that there is a new message to display  my $got_message; # Flag to indicate that there is a new message to display
15    
16  use vars qw( $repl $server );  use vars qw( $repl $server );
 $repl = Continuity::REPL->new;  
17    
18  $server = Continuity->new(  sub run {
19    port => 16001,          $repl = Continuity::REPL->new;
20    path_session => 1,          $server = Continuity->new(
21    cookie_session => 'sid',            port => 16001,
22    callback => \&main,            path_session => 1,
23  );            cookie_session => 'sid',
24  $server->debug_level( 2 );            callback => \&main,
25            );
26            $server->debug_level( 2 );
27    
28  $server->loop;          $server->loop;
29    }
30    
31  # This is the main entrypoint. We are looking for one of three things -- a  # This is the main entrypoint. We are looking for one of three things -- a
32  # 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
# Line 91  sub send_message { Line 94  sub send_message {
94  # This isn't a pushstream, nor a new message. It is just the main page. We loop  # This isn't a pushstream, nor a new message. It is just the main page. We loop
95  # in case they ask for it multiple times :)  # in case they ask for it multiple times :)
96  sub send_page {  sub send_page {
97    my ($req) = @_;          my ($req) = @_;
98    while(1) {          my $templates = Template::Declare->templates;
99          warn "param = ",dump($req->param);          while(1) {
100          $req->print( HTML->view( 'status' ) );                  warn "param = ",dump($req->param);
101      $req->next;                  my $path = $req->request->url->path;
102          Module::Refresh->refresh;  
103    }                  if ( $path =~ m/::/ ) {
104                            my ( undef, $module, $method ) = split(m!/!, $path, 3);
105    
106                            if ( ! defined( $templates->{$module} ) ) {
107                                    $req->conn->send_status_line( 404, "$module" );
108                                    $req->print("Package $module not found");
109                            } elsif ( ! $method ) {
110                                    $req->print( Frey::HTML->page( 'package-methods', $req, $module ) );
111                            } elsif ( grep(/^\Q$method\E$/, @{ $templates->{$module} }) ) {
112                                    $req->print( Frey::HTML->page( $method, $req ) );
113                            } else {
114                                    $req->conn->send_status_line( 404, "$module $method" );
115                                    $req->print("Package $module doesn't have $method");
116                            }
117                    } else {
118                            my $html = Frey::HTML->page( 'status' );
119                            $req->print( $html );
120                            warn ">> ",length( $html ), " bytes\n";
121                    }
122                    $req->next;
123            }
124  }  }
125    
126    1;

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

  ViewVC Help
Powered by ViewVC 1.1.26