/[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 580 by dpavlin, Thu Nov 27 22:29:01 2008 UTC revision 581 by dpavlin, Fri Nov 28 13:16:47 2008 UTC
# Line 68  sub main { Line 68  sub main {
68    
69          eval {          eval {
70    
                 sub refresh {  
                         my ( $url, $time ) = @_;  
                         $url  ||= '/';  
                         $time ||= 1;  
                         warn "# refresh $url";  
                         qq|  
                                 <html>  
                                 <head>  
                                         <META HTTP-EQUIV="Refresh" CONTENT="$time; URL=$url"></META>  
                                 </head>  
                                 <body>  
                                         Refresh <a href="$url"><tt>$url</tt></a> in $time sec  
                                 </body>  
                                 </html>  
                                 \n\r\n\r  
                         |; # XXX newlines at end are important to flush content to browser  
                 }  
   
71                  if ( $path =~ m{/reload(.*)} ) {                  if ( $path =~ m{/reload(.*)} ) {
72    
73                          $ENV{FREY_NO_LOG} = 1;                          $ENV{FREY_NO_LOG} = 1;
74                          my $cmd = "perl -c $0";                          my $cmd = "perl -c $0";
75                          warn "# check config with $cmd";                          warn "# check config with $cmd";
76                          if ( system($cmd) == 0 ) {                          if ( system($cmd) == 0 ) {
77                                  Frey::Server->new->load_config;                                  $req->print( "\r\n" );
78                                    my $server = Frey::Server->new;
79                                    $server->load_config;
80                                    $req->print( "\r\n" );
81                                  Module::Reload->check;                                  Module::Reload->check;
82                                    $req->print( "\r\n" );
83                                  $req->print( refresh( $1, 1 ) );                                  $req->print( refresh( $1, 1 ) );
84                                    $req->print( "\r\n" );
85                                  warn "# reload done";                                  warn "# reload done";
86                                  return;                                  return;
87                          } else {                          } else {
# Line 106  sub main { Line 93  sub main {
93                          # FIXME do we need some kind of check here for production? :-)                          # FIXME do we need some kind of check here for production? :-)
94                          # ./bin/dev.sh will restart us during development                          # ./bin/dev.sh will restart us during development
95                          $req->print( refresh( $1, 2 ) );                          $req->print( refresh( $1, 2 ) );
96                            $req->print( "\r\n" );
97                          exit;                          exit;
98                  }                  }
99    
# Line 146  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";
# Line 167  sub main { Line 155  sub main {
155                  if ( $f ) {                  if ( $f ) {
156                          $f->clean_status;                          $f->clean_status;
157                          $f->add_status( { request => $req } );                          $f->add_status( { request => $req } );
158                          warn "## status ", dump( map { keys %$_ } $f->status );                          $f->status_parts;
159                          my $html = $f->html;                          if ( my $html = $f->html ) {
160                          die "no html output" unless $html;                                  warn "## html ",length($html)," bytes";
                         warn "## html ",length($html)," bytes";  
                         eval {  
161                                  $req->print( $html );                                  $req->print( $html );
162                          };                          } else {
163                          die "can't send to wire: $@" if $@;                                  $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 182  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 241  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.580  
changed lines
  Added in v.581

  ViewVC Help
Powered by ViewVC 1.1.26