/[Sack]/trunk/lib/Sack/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/Sack/Server.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 189 by dpavlin, Sun Nov 8 13:44:10 2009 UTC revision 211 by dpavlin, Sat Nov 21 16:12:18 2009 UTC
# Line 13  use Storable qw(); Line 13  use Storable qw();
13  use File::Slurp;  use File::Slurp;
14  use Cwd qw(abs_path);  use Cwd qw(abs_path);
15    
16    use lib '/srv/Sack/lib';
17    use Sack::Merge;
18    use Sack::Server::HTTP;
19    
20  my @cloud;  my @cloud;
21  my $cloud_path = $ENV{CLOUD} || die "start with: CLOUD=etc/cloud perl -I/srv/Sack/lib $0\n";  my $cloud_path = $ENV{CLOUD} || "etc/cloud";
22    die "start with: CLOUD=etc/cloud perl -I/srv/Sack/lib $0\n" unless -e $cloud_path;
23  @cloud = read_file $cloud_path;  @cloud = read_file $cloud_path;
24  @cloud = map { chomp $_; $_ } @cloud;  @cloud = map { chomp $_; $_ } @cloud;
25    
26  warn "# cloud ",dump( @cloud );  warn "# cloud ",dump( @cloud );
27    
28  my $listen_port = 4444;  my $listen_port = 4444;
29    my $http_port   = 4480;
30    
31  my $node_path = abs_path $0;  my $node_path = abs_path $0;
32  $node_path =~ s{Server}{Client};  $node_path =~ s{Server}{Client};
33    
34  my $lsn = IO::Socket::INET->new(Listen => 1, LocalPort => $listen_port, Reuse => 1) or die $!;  my $lsn = IO::Socket::INET->new(Listen => 1, LocalPort => $listen_port, Reuse => 1) or die "$listen_port $!";
35    my $www = IO::Socket::INET->new(Listen => 1, LocalPort => $http_port,   Reuse => 1) or die "$http_port $!";
36  my $sel = IO::Select->new($lsn);  my $sel = IO::Select->new($lsn);
37    $sel->add( $www );
38    
39  my $info;  my $info;
40  sub info {  sub info {
41          my $port = shift;          my $port = shift;
42          push @{ $info->{$port} }, [ @_ ];          push @{ $info->{node}->{$port} }, [ @_ ];
43  }  }
44    
45  sub fork_ssh {  sub fork_ssh {
# Line 70  sub to_all { Line 78  sub to_all {
78          }          }
79  }  }
80    
81    my @shard_paths;
82    
83  while (1) {  while (1) {
84          for my $sock ($sel->can_read(1)) {          for my $sock ($sel->can_read(1)) {
85                  if ($sock == $lsn) {                  if ($sock == $lsn) {
# Line 79  while (1) { Line 89  while (1) {
89                          warn "[socket] connect\n";                          warn "[socket] connect\n";
90                          Storable::store_fd( { ping => 1 }, $new );                          Storable::store_fd( { ping => 1 }, $new );
91                          info 0 => 'ping', $new->peerport;                          info 0 => 'ping', $new->peerport;
92                    } elsif ( $sock == $www ) {
93                            my $client = $www->accept;
94                            Sack::Server::HTTP::request( $client, sub {
95    warn "XXX callback ",dump( @_ );
96                                    my ( $send, $method, $param ) = @_;
97                                    print $send "HTTP/1.0 200 OK\r\nContent-Type: text/plain\r\n\r\n"
98                                            , dump( $info )
99                                            ;
100                            } );
101                  } else {                  } else {
102                          my $data = eval { Storable::fd_retrieve( $sock ) };                          my $data = eval { Storable::fd_retrieve( $sock ) };
103                          if ( $@ ) {                          if ( $@ ) {
# Line 88  while (1) { Line 107  while (1) {
107                                  $sock->close;                                  $sock->close;
108                          } else {                          } else {
109                                  warn "<<<< ", dump($data), $/;                                  warn "<<<< ", dump($data), $/;
110                                  if ( $data->{repl} ) {  
111                                          my $response = { repl => $$ };                                  if ( my $path = $data->{shard} ) {
112                                          if ( $data->{repl} =~ m/ping/ ) {                                          $info->{shard}->{ $path } = $data->{port};
113                                            # FIXME will need push for multiple copies of shards
114                                    }
115    
116                                    if ( my $repl = $data->{repl} ) {
117                                            my $response = { repl_pid => $$ };
118                                            if ( $repl =~ m/ping/ ) {
119                                                  to_all { ping => 1 };                                                  to_all { ping => 1 };
120                                          } elsif ( $data->{repl} =~ m/info/ ) {                                          } elsif ( $repl =~ m/info/ ) {
121                                                  $response->{info} = $info;                                                  $response->{info} = $info;
122                                            } elsif ( $repl =~ m{load\s*(\S+)?} ) {
123                                                    my $name = $1 || 'shard';
124                                                    @shard_paths = glob "/tmp/sack/$name/*";
125                                                    warn "loading shard $name from ", dump( @shard_paths );
126                                                    to_all { load => $name };
127                                            } elsif ( $repl =~ m{view\s*(\S+)?} ) {
128                                                    my $path = $1 || '/srv/Sack/views/00.demo.pl';
129                                                    my $code = read_file $path;
130                                                    Sack::Merge->clean;
131                                                    to_all { view => $code, path => $path };
132                                                    $response->{view}->{$path}->{running};
133                                            } elsif ( $repl =~ m{debug\s*(.+)?} ) {
134                                                    to_all { debug => $1 };
135                                            } elsif ( $repl =~ m{out} ) {
136                                                    my $out = Sack::Merge->out;    
137                                                    warn "out ",dump( $out );
138                                                    $response->{out} = $out;
139                                            } elsif ( $repl =~ m{clean} ) {
140                                                    delete $info->{shard};
141                                                    to_all { clean => 1 };
142                                          } else {                                          } else {
143                                                  $response->{error}->{unknown} = $data;                                                  $response->{error}->{unknown} = $data;
144                                          }                                          }
# Line 102  while (1) { Line 147  while (1) {
147                                          my $port = $data->{port};                                          my $port = $data->{port};
148                                          info $port => 'ping', $port;                                          info $port => 'ping', $port;
149                                          $session->{port}->{ $data->{port} } = $sock;                                          $session->{port}->{ $data->{port} } = $sock;
150                                    } elsif ( $data->{load} eq 'shard' ) {
151                                            if ( my $path = shift @shard_paths ) {
152                                                    warn "retrieve $path ", -s $path;
153                                                    my $shard = Storable::retrieve $path;
154                                                    warn ">>>> [", $data->{port}, "] sending shard $path\n";
155                                                    Storable::store_fd( { path => $path, shard => $shard }, $sock );
156                                            } else {
157                                                    warn "no more shards for [", $data->{port}, "]\n";
158                                            }
159                                    } elsif ( defined $data->{out} ) {
160                                            Sack::Merge->add( $data->{out} );
161                                    } else {
162                                            warn "UNKNOWN ",dump($data);
163                                  }                                  }
164                          }                          }
165                  }                  }

Legend:
Removed from v.189  
changed lines
  Added in v.211

  ViewVC Help
Powered by ViewVC 1.1.26