/[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 220 by dpavlin, Fri Oct 31 23:07:46 2008 UTC revision 341 by dpavlin, Sun Nov 9 09:58:13 2008 UTC
# Line 1  Line 1 
1  package Frey::Server;  package Frey::Server;
2    
3  use Moose;  use Moose;
4    extends 'Frey';
5  with 'Frey::Web';  with 'Frey::Web';
6    with 'Frey::Config';
7    
8  use Continuity;  use Continuity;
9  #use Continuity::REPL;  #use Continuity::REPL;
# Line 10  use Data::Dump qw/dump/; Line 11  use Data::Dump qw/dump/;
11    
12  #use Carp::REPL; ## XXX it would be nice, but it breaks error reporting too much  #use Carp::REPL; ## XXX it would be nice, but it breaks error reporting too much
13  use Frey::ClassLoader;  use Frey::ClassLoader;
14    use Frey::Run;
15    
16  my @messages;    # Global (shared) list of messages  my @messages;    # Global (shared) list of messages
17  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
# Line 35  This is one of pissible server implement Line 37  This is one of pissible server implement
37  sub run {  sub run {
38          my ( $self, $port ) = @_;          my ( $self, $port ) = @_;
39          $server = Continuity->new(          $server = Continuity->new(
40                  port => $port || 16001,                  port => $port || $self->config->{port} || 16001,
41                  path_session => 1,                  path_session => 1,
42                  cookie_session => 'sid',                  cookie_session => 'sid',
43                  callback => \&main,                  callback => \&main,
# Line 64  sub main { Line 66  sub main {
66    
67  #       warn $req->request->header('User_Agent');  #       warn $req->request->header('User_Agent');
68    
69  #       eval {          my %params = $req->params;
70          {          my $html;
71    
72            sub rest2class {
73                    my $class = shift;
74                    $class =~ s/-/::/; # sigh!
75                    return $class;
76            }
77    
78    
79            eval {
80    
81                  my $f;                  my $f;
82    
83                  if ( $path =~ m!/~/([^/]+)(.*)! ) {                  my $run_regexp = join('|', Frey::Run->runnable );
84                          $f = Frey::Introspect->new( package => $1 );  
85                  } elsif ( $path =~ m!/ob/([^/]+)(.*)! ) {                  if (
86                          $f = Frey::ObjectBrowser->new( fey_class => $1 );                          $path =~ m{/Frey[:-]+ObjectBrowser}
87                  } elsif ( $path =~ m!/od/([^/]+)(.*)! ) {                  ) {
88                          $f = Frey::ObjectDesigner->new( fey_class => $1 );                          $f = Frey::ObjectBrowser->new( fey_class => $params{class} );
89                  } elsif ( $path =~ m!/(markup|request)/([^/]+)(.*)! ) {                          $f->request( $req );
90                          $f = Frey::Run->new( class => $2 );                  } elsif (
91                            $path =~ m{/Frey[:-]+ObjectDesigner}
92                    ) {
93                            $f = Frey::ObjectDesigner->new( fey_class => $params{class} );
94                            $f->request( $req );
95                    } elsif (
96                            $path =~ m{/([^/]+)/($run_regexp)}
97                    ) {
98                            my $class = rest2class $1;
99                            warn "# run $class $2\n";
100                            $f = Frey::Run->new( class => $class, params => \%params );
101                    } elsif (
102                            $path =~ m{/([^/]+)/?$}
103                    ) {
104                            my $class = rest2class $1;
105                            warn "# introspect $class";
106                            $f = Frey::Run->new( class => 'Frey::Introspect', params => { class => $class } );
107                  } else {                  } else {
108                          $f = Frey::Run->new( class => 'Frey::ClassBrowser' );                          $f = Frey::Run->new( class => 'Frey::ClassBrowser' );
109                  }                  }
110                  $f->request( $req ) if $f;  
111                    if ( $f ) {
112                            $req->print( $f->html );
113                    } else {
114                            warn "# can't call request on nothing!";
115                    }
116    
117          };          };
118    

Legend:
Removed from v.220  
changed lines
  Added in v.341

  ViewVC Help
Powered by ViewVC 1.1.26