/[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 277 by dpavlin, Wed Nov 5 08:20:50 2008 UTC revision 392 by dpavlin, Tue Nov 18 00:55:23 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 36  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 68  sub main { Line 69  sub main {
69          my %params = $req->params;          my %params = $req->params;
70          my $html;          my $html;
71    
72            sub rest2class {
73                    my $class = shift;
74                    $class =~ s/-/::/; # sigh!
75                    return $class;
76            }
77    
78    
79          eval {          eval {
80    
81                  my $f;                  my $f;
82    
83                  my $run_regexp = join('|', Frey::Run->execute );                  my $run_regexp = join('|', Frey::Run->runnable );
84    
85                  if ( $path =~ m!/Frey[:-]+ObjectBrowser! ) {                  if (
86                            $path =~ m{/Frey[:-]+ObjectBrowser}
87                    ) {
88                          $f = Frey::ObjectBrowser->new( fey_class => $params{class} );                          $f = Frey::ObjectBrowser->new( fey_class => $params{class} );
89                          $f->request( $req );                          $f->request( $req );
90                  } elsif ( $path =~ m!/Frey[:-]+ObjectDesigner! ) {                  } elsif (
91                            $path =~ m{/Frey[:-]+ObjectDesigner}
92                    ) {
93                          $f = Frey::ObjectDesigner->new( fey_class => $params{class} );                          $f = Frey::ObjectDesigner->new( fey_class => $params{class} );
94                          $f->request( $req );                          $f->request( $req );
95                  } elsif ( $path =~ m!/Frey[:-]+Introspect! ) {                  } elsif (
96                          $f = Frey::Introspect->new( class => $params{class} );                          $path =~ m{/editor(.+?)\+(\d+)}
97                          $req->print( $f->markup );                  ) {
98                          undef $f;                          my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
99                  } elsif ( $path =~ m!/([^/]+)/($run_regexp)! ) {                          # FIXME SECURITY path verification for $1
100                          warn "# run $1 $2\n";                          my $cmd = "$editor +$2 $1";
101                          $f = Frey::Run->new( class => $1, params => \%params );                          warn "# $path -> system $cmd";
102                            $req->print( $cmd );
103                            system( $cmd );
104                            return;
105                    } elsif (
106                            $path =~ m{/([^/]+)/($run_regexp)}
107                    ) {
108                            my $class = rest2class $1;
109                            warn "# run $class $2\n";
110                            $f = Frey::Run->new( class => $class, params => \%params, run => $2, request_url => $req->request->url );
111                    } elsif (
112                            $path =~ m{/([^/]+)/?$}
113                    ) {
114                            my $class = rest2class $1;
115                            warn "# introspect $class";
116                            $f = Frey::Run->new( class => 'Frey::Introspect', params => { class => $class }, request_url => $req->request->url );
117                  } else {                  } else {
118                          $f = Frey::Run->new( class => 'Frey::ClassBrowser' );                          $f = Frey::Run->new( class => 'Frey::ClassBrowser' );
119                  }                  }
# Line 104  sub main { Line 131  sub main {
131          if ( $@ ) {          if ( $@ ) {
132                  warn $@;                  warn $@;
133                  $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
134                  $req->print( qq{<pre class="error">$@<pre>} );                  $req->print( qq{<pre class="frey-error">$@<pre>} );
135  #               Carp::REPL::repl;  #               Carp::REPL::repl;
136    
137          }          }

Legend:
Removed from v.277  
changed lines
  Added in v.392

  ViewVC Help
Powered by ViewVC 1.1.26