/[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 456 by dpavlin, Wed Nov 19 15:35:34 2008 UTC revision 581 by dpavlin, Fri Nov 28 13:16:47 2008 UTC
# Line 43  sub run { Line 43  sub run {
43                  cookie_session => 'sid',                  cookie_session => 'sid',
44                  callback => \&main,                  callback => \&main,
45                  debug_level => 2,                  debug_level => 2,
46                  staticp => sub { $_[0]->url =~ m/^(static|var).*\.(jpg|jpeg|gif|png|css|ico|js|html?|xml|json|ya?ml)(\?.*)?$/ },                  staticp => sub {
47                            $_[0]->url =~ m{^/+(static|var).*\.(jpg|jpeg|gif|png|css|ico|js|html?|xml|json|ya?ml)(\?.*)?$}
48                    },
49          );          );
50          $Module::Reload::Debug = 1; # auto if debug_level > 1          $Module::Reload::Debug = 1; # auto if debug_level > 1
51          Frey::ClassLoader->new->load_all_classes();          Frey::ClassLoader->new->load_all_classes();
# Line 60  documented only in source code. Line 62  documented only in source code.
62  sub main {  sub main {
63          my ($req) = @_;          my ($req) = @_;
64    
65    #       $req->send_headers("X-Frey-VERSION: $Frey::VERSION");
66    
67          my $path = $req->request->url->path;          my $path = $req->request->url->path;
68    
69          eval {          eval {
70    
71                  #warn "REQUEST: $path ",dump( $req->params );                  if ( $path =~ m{/reload(.*)} ) {
72    
73                  if ( $path =~ m!reload! || $req->param('reload') ) {                          $ENV{FREY_NO_LOG} = 1;
74                          warn "# reload!";                          my $cmd = "perl -c $0";
75                          Module::Reload->check;                          warn "# check config with $cmd";
76                          Frey::Server->new->load_config;                          if ( system($cmd) == 0 ) {
77                                    $req->print( "\r\n" );
78                                    my $server = Frey::Server->new;
79                                    $server->load_config;
80                                    $req->print( "\r\n" );
81                                    Module::Reload->check;
82                                    $req->print( "\r\n" );
83                                    $req->print( refresh( $1, 1 ) );
84                                    $req->print( "\r\n" );
85                                    warn "# reload done";
86                                    return;
87                            } else {
88                                    warn "ERROR: $?";
89                            }
90                            $ENV{FREY_NO_LOG} = 0;
91            
92                    } elsif ( $path =~ m{/exit(.*)} ) {
93                            # FIXME do we need some kind of check here for production? :-)
94                            # ./bin/dev.sh will restart us during development
95                            $req->print( refresh( $1, 2 ) );
96                            $req->print( "\r\n" );
97                            exit;
98                  }                  }
99    
100  #               warn $req->request->header('User_Agent');  #               warn $req->request->header('User_Agent');
# Line 91  sub main { Line 116  sub main {
116                  # shared run params                  # shared run params
117                  my $run = {                  my $run = {
118                          request_url => $req->request->url,                          request_url => $req->request->url,
119                            debug => 1,
120                  };                  };
121    
122                  if (                  if (
# Line 108  sub main { Line 134  sub main {
134                          system( $editor->command( $path ) );                          system( $editor->command( $path ) );
135                          return;                          return;
136                  } elsif (                  } elsif (
137                          $path =~ m{/([^/]+)/(as_\w+)/?([^/]+)?}                          $path =~ m{/([^/]+)/(\w*as_\w+)/?([^/]+)?}
138                  ) {                  ) {
139                          my $class = rest2class $1;                          my $class = rest2class $1;
140                          warn "# run $path -> $class $2";                          warn "# run $path -> $class $2";
141                          $run->{format} = $3 if $3;                          $run->{format} = $3 if $3;
142                            $params{request_url} = $req->request->url;
143                            $req->print( "\r\n\r\n" ); # send something to browser so we don't time-out
144                          $f = Frey::Run->new( class => $class, params => \%params, run => $2, %$run );                          $f = Frey::Run->new( class => $class, params => \%params, run => $2, %$run );
145                  } elsif (                  } elsif (
146                          $path =~ m{/([^/]+)/?$}                          $path =~ m{/([^/]+)/?$}
# Line 125  sub main { Line 153  sub main {
153                  }                  }
154    
155                  if ( $f ) {                  if ( $f ) {
156                          $req->print( $f->html );                          $f->clean_status;
157                            $f->add_status( { request => $req } );
158                            $f->status_parts;
159                            if ( my $html = $f->html ) {
160                                    warn "## html ",length($html)," bytes";
161                                    $req->print( $html );
162                            } else {
163                                    $req->print( qq|<pre class="frey-error">no output from $f</pre>\r\n\r\n| );
164                            }
165                  } else {                  } else {
166                          warn "# can't call request on nothing!";                          warn "# can't call request on nothing!";
167                  }                  }
# Line 133  sub main { Line 169  sub main {
169          };          };
170    
171          if ( $@ ) {          if ( $@ ) {
172                  warn $@;                  warn "SERVER ERROR: $@";
173                  $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
174                  $req->print( qq{<pre class="frey-error">$@<pre>} );                  $req->print( qq{<pre class="frey-error">$@<pre>\r\n\r\n} );
175  #               Carp::REPL::repl;  #               Carp::REPL::repl;
176          }          }
177    
# Line 149  sub main { Line 185  sub main {
185                  send_message($req);                  send_message($req);
186          }          }
187    
188            if ( $req->conn ) {
189                    $req->conn->close;
190                    warn "## close connection: $@";
191            }
192  }  }
193    
194  # 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 188  sub send_message { Line 228  sub send_message {
228    }    }
229  }  }
230    
231    sub refresh {
232            my ( $url, $time ) = @_;
233            $url  ||= '/';
234            $time ||= 1;
235            warn "# refresh $url";
236            qq|
237                    <html>
238                    <head>
239                            <META HTTP-EQUIV="Refresh" CONTENT="$time; URL=$url"></META>
240                    </head>
241                    <body>
242                            Refresh <a href="$url"><tt>$url</tt></a> in $time sec
243                    </body>
244                    </html>
245                    \n\r\n\r
246            |; # XXX newlines at end are important to flush content to browser
247    }
248    
249  1;  1;

Legend:
Removed from v.456  
changed lines
  Added in v.581

  ViewVC Help
Powered by ViewVC 1.1.26