/[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 280 by dpavlin, Wed Nov 5 08:20:53 2008 UTC revision 421 by dpavlin, Tue Nov 18 17:12:09 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 11  use Data::Dump qw/dump/; Line 12  use Data::Dump qw/dump/;
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;  use Frey::Run;
15    use Frey::Editor;
16    
17  my @messages;    # Global (shared) list of messages  my @messages;    # Global (shared) list of messages
18  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 36  This is one of pissible server implement Line 38  This is one of pissible server implement
38  sub run {  sub run {
39          my ( $self, $port ) = @_;          my ( $self, $port ) = @_;
40          $server = Continuity->new(          $server = Continuity->new(
41                  port => $port || 16001,                  port => $port || $self->config->{port} || 16001,
42                  path_session => 1,                  path_session => 1,
43                  cookie_session => 'sid',                  cookie_session => 'sid',
44                  callback => \&main,                  callback => \&main,
# Line 68  sub main { Line 70  sub main {
70          my %params = $req->params;          my %params = $req->params;
71          my $html;          my $html;
72    
73            sub rest2class {
74                    my $class = shift;
75                    $class =~ s/-/::/; # sigh!
76                    return $class;
77            }
78    
79    
80          eval {          eval {
81    
82                  my $f;                  my $f;
83    
84                  my $run_regexp = join('|', Frey::Run->execute );                  my $run_regexp = join('|', Frey::Run->runnable );
85                    my $editor = Frey::Editor->new;
86    
87                  if ( $path =~ m!/Frey[:-]+ObjectBrowser! ) {                  # shared run params
88                    my $run = {
89                            request_url => $req->request->url,
90                    };
91    
92                    if (
93                            $path =~ m{/Frey[:-]+ObjectBrowser}
94                    ) {
95                          $f = Frey::ObjectBrowser->new( fey_class => $params{class} );                          $f = Frey::ObjectBrowser->new( fey_class => $params{class} );
96                          $f->request( $req );                          $f->request( $req );
97                  } elsif ( $path =~ m!/Frey[:-]+ObjectDesigner! ) {                  } elsif (
98                            $path =~ m{/Frey[:-]+ObjectDesigner}
99                    ) {
100                          $f = Frey::ObjectDesigner->new( fey_class => $params{class} );                          $f = Frey::ObjectDesigner->new( fey_class => $params{class} );
101                          $f->request( $req );                          $f->request( $req );
102                  } elsif ( $path =~ m!/([^/]+)/($run_regexp)! ) {                  } elsif ( $path =~ $editor->url_regex ) {
103                          my $class = $1;                          $req->print( $editor->command( $path ) );
104                          $class =~ s/-/::/; # sigh!                          system( $editor->command( $path ) );
105                          warn "# run $class $2\n";                          return;
106                          $f = Frey::Run->new( class => $class, params => \%params );                  } elsif (
107                            $path =~ m{/([^/]+)/($run_regexp)/?([^/]+)?}
108                    ) {
109                            my $class = rest2class $1;
110                            warn "# run $path -> $class $2";
111                            $run->{format} = $3 if $3;
112                            $f = Frey::Run->new( class => $class, params => \%params, run => $2, %$run );
113                    } elsif (
114                            $path =~ m{/([^/]+)/?$}
115                    ) {
116                            my $class = rest2class $1;
117                            warn "# introspect $class";
118                            $f = Frey::Run->new( class => 'Frey::Introspect', params => { class => $class }, %$run );
119                  } else {                  } else {
120                          $f = Frey::Run->new( class => 'Frey::ClassBrowser' );                          $f = Frey::Run->new( class => 'Frey::ClassBrowser', %$run );
121                  }                  }
122    
123                  if ( $f ) {                  if ( $f ) {
# Line 102  sub main { Line 133  sub main {
133          if ( $@ ) {          if ( $@ ) {
134                  warn $@;                  warn $@;
135                  $req->conn->send_error( 404 );  # FIXME this should probably be 500, but we can't ship page with it                  $req->conn->send_error( 404 );  # FIXME this should probably be 500, but we can't ship page with it
136                  $req->print( qq{<pre class="error">$@<pre>} );                  $req->print( qq{<pre class="frey-error">$@<pre>} );
137  #               Carp::REPL::repl;  #               Carp::REPL::repl;
138    
139          }          }

Legend:
Removed from v.280  
changed lines
  Added in v.421

  ViewVC Help
Powered by ViewVC 1.1.26