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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 341 - (show annotations)
Sun Nov 9 09:58:13 2008 UTC (15 years, 5 months ago) by dpavlin
File size: 4189 byte(s)
 r415@eeepy:  dpavlin | 2008-11-09 10:58:33 +0100
 move Frey::Server port to config

1 package Frey::Server;
2
3 use Moose;
4 extends 'Frey';
5 with 'Frey::Web';
6 with 'Frey::Config';
7
8 use Continuity;
9 #use Continuity::REPL;
10 use Data::Dump qw/dump/;
11
12 #use Carp::REPL; ## XXX it would be nice, but it breaks error reporting too much
13 use Frey::ClassLoader;
14 use Frey::Run;
15
16 my @messages; # Global (shared) list of messages
17 my $got_message; # Flag to indicate that there is a new message to display
18
19 use vars qw( $repl $server );
20
21 #$repl = Continuity::REPL->new;
22
23 =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 sub run {
38 my ( $self, $port ) = @_;
39 $server = Continuity->new(
40 port => $port || $self->config->{port} || 16001,
41 path_session => 1,
42 cookie_session => 'sid',
43 callback => \&main,
44 debug_level => 2,
45 staticp => sub { $_[0]->url =~ m/\.(jpg|jpeg|gif|png|css|ico|js|html?|xml|json|ya?ml)(\?.*)?$/ },
46 );
47 $Module::Reload::Debug = 1; # auto if debug_level > 1
48 Frey::ClassLoader->new->load_all_classes();
49 $server->loop;
50 }
51
52 =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 sub main {
60 my ($req) = @_;
61
62 my $path = $req->request->url->path;
63 #warn "REQUEST: $path ",dump( $req->params );
64
65 Module::Reload->check if $path =~ m!reload! || $req->param('reload');
66
67 # warn $req->request->header('User_Agent');
68
69 my %params = $req->params;
70 my $html;
71
72 sub rest2class {
73 my $class = shift;
74 $class =~ s/-/::/; # sigh!
75 return $class;
76 }
77
78
79 eval {
80
81 my $f;
82
83 my $run_regexp = join('|', Frey::Run->runnable );
84
85 if (
86 $path =~ m{/Frey[:-]+ObjectBrowser}
87 ) {
88 $f = Frey::ObjectBrowser->new( fey_class => $params{class} );
89 $f->request( $req );
90 } elsif (
91 $path =~ m{/Frey[:-]+ObjectDesigner}
92 ) {
93 $f = Frey::ObjectDesigner->new( fey_class => $params{class} );
94 $f->request( $req );
95 } elsif (
96 $path =~ m{/([^/]+)/($run_regexp)}
97 ) {
98 my $class = rest2class $1;
99 warn "# run $class $2\n";
100 $f = Frey::Run->new( class => $class, params => \%params );
101 } elsif (
102 $path =~ m{/([^/]+)/?$}
103 ) {
104 my $class = rest2class $1;
105 warn "# introspect $class";
106 $f = Frey::Run->new( class => 'Frey::Introspect', params => { class => $class } );
107 } else {
108 $f = Frey::Run->new( class => 'Frey::ClassBrowser' );
109 }
110
111 if ( $f ) {
112 $req->print( $f->html );
113 } else {
114 warn "# can't call request on nothing!";
115 }
116
117 };
118
119 my $self = $req;
120
121 if ( $@ ) {
122 warn $@;
123 $req->conn->send_error( 404 ); # FIXME this should probably be 500, but we can't ship page with it
124 $req->print( qq{<pre class="error">$@<pre>} );
125 # Carp::REPL::repl;
126
127 }
128
129 # If this is a request for the pushtream, then give them that
130 if($path =~ /pushstream/) {
131 pushstream($req);
132 }
133
134 # If they are sending us a message, we give them a thread for that too
135 if($path =~ /sendmessage/) {
136 send_message($req);
137 }
138
139 }
140
141 # Here we accept a connection to the browser, and keep it open. Meanwhile we
142 # watch the global $got_message variable, and when it gets touched we send off
143 # the list of messages through the held-open connection. Then we let the
144 # browser open a new connection and begin again.
145 sub pushstream {
146 my ($req) = @_;
147 # Set up watch event -- this will be triggered when $got_message is written
148 my $w = Coro::Event->var(var => \$got_message, poll => 'w');
149 while(1) {
150 print STDERR "**** GOT MESSAGE, SENDING ****\n";
151 my $log = join "<br>", @messages;
152 $req->print($log);
153 $req->next;
154 print STDERR "**** Waiting for got_message indicator ****\n";
155 $w->next;
156 }
157 }
158
159
160 # Watch for the user to send us a message. As soon as we get it, we add it to
161 # our list of messages and touch the $got_message flag to let all the
162 # pushstreams know.
163 sub send_message {
164 my ($req) = @_;
165 while(1) {
166 my $msg = $req->param('message');
167 my $name = $req->param('username');
168 if($msg) {
169 unshift @messages, "$name: $msg";
170 pop @messages if $#messages > 15; # Only keep the recent 15 messages
171 }
172 $got_message = 1;
173 $req->print("Got it!");
174 $req->next;
175 }
176 }
177
178 1;

  ViewVC Help
Powered by ViewVC 1.1.26