/[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

Annotation of /trunk/lib/Frey/Server.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 392 - (hide annotations)
Tue Nov 18 00:55:23 2008 UTC (15 years, 6 months ago) by dpavlin
File size: 4546 byte(s)
finish request_url support so it works now
1 dpavlin 19 package Frey::Server;
2 dpavlin 2
3 dpavlin 55 use Moose;
4 dpavlin 341 extends 'Frey';
5 dpavlin 100 with 'Frey::Web';
6 dpavlin 341 with 'Frey::Config';
7 dpavlin 100
8 dpavlin 2 use Continuity;
9 dpavlin 36 #use Continuity::REPL;
10 dpavlin 2 use Data::Dump qw/dump/;
11    
12 dpavlin 190 #use Carp::REPL; ## XXX it would be nice, but it breaks error reporting too much
13 dpavlin 101 use Frey::ClassLoader;
14 dpavlin 223 use Frey::Run;
15 dpavlin 23
16 dpavlin 2 my @messages; # Global (shared) list of messages
17     my $got_message; # Flag to indicate that there is a new message to display
18    
19 dpavlin 10 use vars qw( $repl $server );
20 dpavlin 2
21 dpavlin 34 #$repl = Continuity::REPL->new;
22 dpavlin 37
23 dpavlin 182 =head1 NAME
24    
25     Frey::Server - Continuity based server for Frey
26    
27     =head2 DESCRIPTION
28    
29     This is one of pissible server implementations for Frey. In it's current stage, it's also most complete one.
30    
31     =head2 run
32    
33     $o->run( $optional_port );
34    
35     =cut
36    
37 dpavlin 25 sub run {
38 dpavlin 103 my ( $self, $port ) = @_;
39 dpavlin 64 $server = Continuity->new(
40 dpavlin 341 port => $port || $self->config->{port} || 16001,
41 dpavlin 64 path_session => 1,
42     cookie_session => 'sid',
43     callback => \&main,
44 dpavlin 205 debug_level => 2,
45 dpavlin 162 staticp => sub { $_[0]->url =~ m/\.(jpg|jpeg|gif|png|css|ico|js|html?|xml|json|ya?ml)(\?.*)?$/ },
46 dpavlin 64 );
47 dpavlin 205 $Module::Reload::Debug = 1; # auto if debug_level > 1
48 dpavlin 101 Frey::ClassLoader->new->load_all_classes();
49 dpavlin 25 $server->loop;
50     }
51 dpavlin 2
52 dpavlin 182 =head2 main
53    
54     This is simple dispatcher for our server. Currently it's in flux and
55     documented only in source code.
56    
57     =cut
58    
59 dpavlin 2 sub main {
60 dpavlin 37 my ($req) = @_;
61 dpavlin 190
62 dpavlin 37 my $path = $req->request->url->path;
63 dpavlin 220 #warn "REQUEST: $path ",dump( $req->params );
64 dpavlin 2
65 dpavlin 142 Module::Reload->check if $path =~ m!reload! || $req->param('reload');
66 dpavlin 120
67 dpavlin 142 # warn $req->request->header('User_Agent');
68 dpavlin 2
69 dpavlin 277 my %params = $req->params;
70     my $html;
71 dpavlin 66
72 dpavlin 292 sub rest2class {
73     my $class = shift;
74     $class =~ s/-/::/; # sigh!
75     return $class;
76     }
77    
78    
79 dpavlin 277 eval {
80    
81 dpavlin 114 my $f;
82 dpavlin 66
83 dpavlin 314 my $run_regexp = join('|', Frey::Run->runnable );
84 dpavlin 223
85 dpavlin 292 if (
86     $path =~ m{/Frey[:-]+ObjectBrowser}
87     ) {
88 dpavlin 277 $f = Frey::ObjectBrowser->new( fey_class => $params{class} );
89     $f->request( $req );
90 dpavlin 292 } elsif (
91     $path =~ m{/Frey[:-]+ObjectDesigner}
92     ) {
93 dpavlin 277 $f = Frey::ObjectDesigner->new( fey_class => $params{class} );
94     $f->request( $req );
95 dpavlin 292 } elsif (
96 dpavlin 346 $path =~ m{/editor(.+?)\+(\d+)}
97     ) {
98     my $editor = $ENV{VISUAL} || $ENV{EDITOR} || 'vi';
99 dpavlin 387 # FIXME SECURITY path verification for $1
100     my $cmd = "$editor +$2 $1";
101 dpavlin 346 warn "# $path -> system $cmd";
102     $req->print( $cmd );
103     system( $cmd );
104     return;
105     } elsif (
106 dpavlin 292 $path =~ m{/([^/]+)/($run_regexp)}
107     ) {
108     my $class = rest2class $1;
109 dpavlin 280 warn "# run $class $2\n";
110 dpavlin 392 $f = Frey::Run->new( class => $class, params => \%params, run => $2, request_url => $req->request->url );
111 dpavlin 292 } elsif (
112     $path =~ m{/([^/]+)/?$}
113     ) {
114     my $class = rest2class $1;
115     warn "# introspect $class";
116 dpavlin 392 $f = Frey::Run->new( class => 'Frey::Introspect', params => { class => $class }, request_url => $req->request->url );
117 dpavlin 121 } else {
118 dpavlin 216 $f = Frey::Run->new( class => 'Frey::ClassBrowser' );
119 dpavlin 66 }
120    
121 dpavlin 277 if ( $f ) {
122     $req->print( $f->html );
123     } else {
124     warn "# can't call request on nothing!";
125     }
126    
127 dpavlin 66 };
128    
129 dpavlin 190 my $self = $req;
130    
131 dpavlin 66 if ( $@ ) {
132     warn $@;
133 dpavlin 220 $req->conn->send_error( 404 ); # FIXME this should probably be 500, but we can't ship page with it
134 dpavlin 350 $req->print( qq{<pre class="frey-error">$@<pre>} );
135 dpavlin 190 # Carp::REPL::repl;
136 dpavlin 67
137 dpavlin 53 }
138    
139 dpavlin 37 # If this is a request for the pushtream, then give them that
140     if($path =~ /pushstream/) {
141     pushstream($req);
142     }
143 dpavlin 121
144 dpavlin 37 # If they are sending us a message, we give them a thread for that too
145     if($path =~ /sendmessage/) {
146     send_message($req);
147     }
148 dpavlin 2
149     }
150    
151     # Here we accept a connection to the browser, and keep it open. Meanwhile we
152     # watch the global $got_message variable, and when it gets touched we send off
153     # the list of messages through the held-open connection. Then we let the
154     # browser open a new connection and begin again.
155     sub pushstream {
156     my ($req) = @_;
157     # Set up watch event -- this will be triggered when $got_message is written
158     my $w = Coro::Event->var(var => \$got_message, poll => 'w');
159     while(1) {
160     print STDERR "**** GOT MESSAGE, SENDING ****\n";
161     my $log = join "<br>", @messages;
162     $req->print($log);
163     $req->next;
164     print STDERR "**** Waiting for got_message indicator ****\n";
165     $w->next;
166     }
167     }
168    
169    
170     # Watch for the user to send us a message. As soon as we get it, we add it to
171     # our list of messages and touch the $got_message flag to let all the
172     # pushstreams know.
173     sub send_message {
174     my ($req) = @_;
175     while(1) {
176     my $msg = $req->param('message');
177     my $name = $req->param('username');
178     if($msg) {
179     unshift @messages, "$name: $msg";
180     pop @messages if $#messages > 15; # Only keep the recent 15 messages
181     }
182     $got_message = 1;
183     $req->print("Got it!");
184     $req->next;
185     }
186     }
187    
188 dpavlin 25 1;

  ViewVC Help
Powered by ViewVC 1.1.26