/[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 118 - (hide annotations)
Sun Jul 13 18:14:07 2008 UTC (15 years, 9 months ago) by dpavlin
File size: 3722 byte(s)
show roles as such and don't try to design them
1 dpavlin 19 package Frey::Server;
2 dpavlin 2
3 dpavlin 55 use Moose;
4 dpavlin 10
5 dpavlin 100 with 'Frey::Web';
6    
7 dpavlin 2 use Continuity;
8 dpavlin 36 #use Continuity::REPL;
9 dpavlin 2 use Data::Dump qw/dump/;
10    
11 dpavlin 114 #use Carp::REPL;
12 dpavlin 101 use Frey::ClassLoader;
13 dpavlin 23
14 dpavlin 2 my @messages; # Global (shared) list of messages
15     my $got_message; # Flag to indicate that there is a new message to display
16    
17 dpavlin 10 use vars qw( $repl $server );
18 dpavlin 2
19 dpavlin 34 #$repl = Continuity::REPL->new;
20 dpavlin 37
21 dpavlin 25 sub run {
22 dpavlin 103 my ( $self, $port ) = @_;
23 dpavlin 64 $server = Continuity->new(
24 dpavlin 103 port => $port || 16001,
25 dpavlin 64 path_session => 1,
26     cookie_session => 'sid',
27     callback => \&main,
28     debug_level => 1,
29     staticp => sub { $_[0]->url =~ m/\.(jpg|jpeg|gif|png|css|ico|js|html?)$/ },
30     );
31 dpavlin 114 $Module::Reload::Debug = 1;
32 dpavlin 101 Frey::ClassLoader->new->load_all_classes();
33 dpavlin 25 $server->loop;
34     }
35 dpavlin 2
36     # This is the main entrypoint. We are looking for one of three things -- a
37     # pushstream, a sent message, or a request for the main HTML. We delegate each
38     # of these cases, none of which will return (they all loop forever).
39     sub main {
40 dpavlin 37 my ($req) = @_;
41 dpavlin 2
42 dpavlin 37 my $path = $req->request->url->path;
43     warn "REQUEST: $path\n";
44 dpavlin 2
45     warn $req->request->header('User_Agent');
46     #warn dump( $req );
47    
48 dpavlin 66 eval {
49    
50 dpavlin 114 my $f;
51 dpavlin 66
52 dpavlin 114 if ( $path =~ m!/~/([^/]+)(.*)! ) {
53     $f = Frey::Introspect->new( package => $1 );
54     } elsif ( $path =~ m!/ob/([^/]+)(.*)! ) {
55     $f = Frey::ObjectBrowser->new( fey_class => $1 );
56     } elsif ( $path =~ m!/od/([^/]+)(.*)! ) {
57     $f = Frey::ObjectDesigner->new( fey_class => $1 );
58 dpavlin 66 }
59 dpavlin 114 $f->html( $req ) if $f;
60 dpavlin 66
61     };
62    
63     if ( $@ ) {
64     warn $@;
65     #$req->conn->send_error( 404 ); # FIXME this should probably be 500, but we can't ship page with it
66     $req->print( qq{<pre class="error">$@<pre>} );
67 dpavlin 114 # Carp::REPL::repl; # FIXME if $self->debug
68 dpavlin 67 } else {
69    
70 dpavlin 100 my $f = Frey::ClassLoader->new;
71     my $classes = dom2html(
72 dpavlin 114 table => [
73 dpavlin 67 map {
74 dpavlin 101 my $package = $_;
75 dpavlin 114 ( tr => [
76     td => [ a => { href => '/~/' . $package, title => $f->package_path( $package ) } => [ $package ] ],
77 dpavlin 118 td => [
78     $package->can('meta') ?
79     $package->meta->isa('Moose::Meta::Role') ? 'role' :
80     ( a => { href => '/od/' . $package } => [ 'design' ] ) :
81     ''
82     ],
83 dpavlin 117 td => [ $package->can('collection_table') ? ( a => { href => '/ob/' . $package } => [ 'collection' ] ) : '' ],
84 dpavlin 67 ] )
85 dpavlin 101 } $f->classes
86 dpavlin 67 ],
87 dpavlin 100 );
88 dpavlin 114 $req->print( "<h1>Classes</h1>$classes" );
89 dpavlin 67
90 dpavlin 53 }
91    
92 dpavlin 37 # If this is a request for the pushtream, then give them that
93     if($path =~ /pushstream/) {
94     pushstream($req);
95     }
96 dpavlin 2
97 dpavlin 37 # If they are sending us a message, we give them a thread for that too
98     if($path =~ /sendmessage/) {
99     send_message($req);
100     }
101 dpavlin 2
102     }
103    
104     # Here we accept a connection to the browser, and keep it open. Meanwhile we
105     # watch the global $got_message variable, and when it gets touched we send off
106     # the list of messages through the held-open connection. Then we let the
107     # browser open a new connection and begin again.
108     sub pushstream {
109     my ($req) = @_;
110     # Set up watch event -- this will be triggered when $got_message is written
111     my $w = Coro::Event->var(var => \$got_message, poll => 'w');
112     while(1) {
113     print STDERR "**** GOT MESSAGE, SENDING ****\n";
114     my $log = join "<br>", @messages;
115     $req->print($log);
116     $req->next;
117     print STDERR "**** Waiting for got_message indicator ****\n";
118     $w->next;
119     }
120     }
121    
122    
123     # Watch for the user to send us a message. As soon as we get it, we add it to
124     # our list of messages and touch the $got_message flag to let all the
125     # pushstreams know.
126     sub send_message {
127     my ($req) = @_;
128     while(1) {
129     my $msg = $req->param('message');
130     my $name = $req->param('username');
131     if($msg) {
132     unshift @messages, "$name: $msg";
133     pop @messages if $#messages > 15; # Only keep the recent 15 messages
134     }
135     $got_message = 1;
136     $req->print("Got it!");
137     $req->next;
138     }
139     }
140    
141 dpavlin 25 1;

  ViewVC Help
Powered by ViewVC 1.1.26