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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 196 - (show annotations)
Sun Nov 8 16:17:59 2009 UTC (14 years, 6 months ago) by dpavlin
File size: 3535 byte(s)
send views to clients and collect loaded shards

1 #!/usr/bin/perl
2
3 package Sack::Server;
4
5 use warnings;
6 use strict;
7
8 use IO::Socket::INET;
9 use IO::Select;
10
11 use Data::Dump qw(dump);
12 use Storable qw();
13 use File::Slurp;
14 use Cwd qw(abs_path);
15
16 my @cloud;
17 my $cloud_path = $ENV{CLOUD} || die "start with: CLOUD=etc/cloud perl -I/srv/Sack/lib $0\n";
18 @cloud = read_file $cloud_path;
19 @cloud = map { chomp $_; $_ } @cloud;
20
21 warn "# cloud ",dump( @cloud );
22
23 my $listen_port = 4444;
24
25 my $node_path = abs_path $0;
26 $node_path =~ s{Server}{Client};
27
28 my $lsn = IO::Socket::INET->new(Listen => 1, LocalPort => $listen_port, Reuse => 1) or die $!;
29 my $sel = IO::Select->new($lsn);
30
31 my $info;
32 sub info {
33 my $port = shift;
34 push @{ $info->{$port} }, [ @_ ];
35 }
36
37 sub fork_ssh {
38 my ( $port, $host ) = @_;
39
40 if ( my $pid = fork ) {
41 # parent
42 info $port => 'forked', $pid;
43 return $port;
44
45 } elsif ( ! defined $pid ) {
46 warn "can't fork $host $port";
47 return;
48 } else {
49 # child
50 my $cmd = qq|ssh -F $cloud_path.ssh -R $port:127.0.0.1:$listen_port $host $node_path $port|;
51 warn "# exec: $cmd\n";
52 exec $cmd;
53 }
54 }
55
56 my $node_port = 4000;
57
58 foreach my $host ( @cloud ) {
59 system "find /srv/Sack/ | cpio --create --dereference | ssh -T -F $cloud_path.ssh $host cpio --extract --make-directories --unconditional";
60 fork_ssh( $node_port++, $host );
61 }
62
63 my $session;
64
65 sub to_all {
66 my $data = shift;
67 foreach my $port ( keys %{ $session->{port} } ) {
68 warn ">>>> [$port]\n";
69 Storable::store_fd( $data, $session->{port}->{$port} );
70 }
71 }
72
73 my @shard_paths;
74
75 while (1) {
76 for my $sock ($sel->can_read(1)) {
77 if ($sock == $lsn) {
78 my $new = $lsn->accept;
79 $sel->add($new);
80 $session->{peerport}->{ $new->peerport } = $new;
81 warn "[socket] connect\n";
82 Storable::store_fd( { ping => 1 }, $new );
83 info 0 => 'ping', $new->peerport;
84 } else {
85 my $data = eval { Storable::fd_retrieve( $sock ) };
86 if ( $@ ) {
87 delete $session->{$sock};
88 warn "[socket] disconnect: $@\n";
89 $sel->remove($sock);
90 $sock->close;
91 } else {
92 warn "<<<< ", dump($data), $/;
93
94 if ( my $path = $data->{shard} ) {
95 push @{ $info->{shard}->{ $data->{port} } }, $path;
96 }
97
98 if ( my $repl = $data->{repl} ) {
99 my $response = { repl_pid => $$ };
100 if ( $repl =~ m/ping/ ) {
101 to_all { ping => 1 };
102 } elsif ( $repl =~ m/info/ ) {
103 $response->{info} = $info;
104 } elsif ( $repl =~ m{load\s*(\S+)?} ) {
105 my $name = $1 || 'shard';
106 @shard_paths = glob "/tmp/sack/$name/*";
107 warn "loading shards ", dump( @shard_paths );
108 to_all { load => $name };
109 } elsif ( $repl =~ m{view\s*(\S+)?} ) {
110 my $path = $1 || '/srv/Sack/views/00.demo.pl';
111 my $code = read_file $path;
112 to_all { view => $code, path => $path };
113 $response->{view}->{$path}->{running};
114 } elsif ( $repl =~ m{debug\s*(.+)?} ) {
115 to_all { debug => $1 };
116 } else {
117 $response->{error}->{unknown} = $data;
118 }
119 Storable::store_fd( $response, $sock );
120 } elsif ( $data->{ping} ) {
121 my $port = $data->{port};
122 info $port => 'ping', $port;
123 $session->{port}->{ $data->{port} } = $sock;
124 } elsif ( $data->{load} eq 'shard' ) {
125 if ( my $path = shift @shard_paths ) {
126 warn "retrieve $path ", -s $path;
127 my $shard = Storable::retrieve $path;
128 warn ">>>> [", $data->{port}, "] sending shard $path\n";
129 Storable::store_fd( { path => $path, shard => $shard }, $sock );
130 } else {
131 warn "no more shards for [", $data->{port}, "]\n";
132 }
133 } else {
134 warn "UNKNOWN ",dump($data);
135 }
136 }
137 }
138 }
139 }

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26