/[pxelator]/lib/PXElator/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 /lib/PXElator/server.pm

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

revision 75 by dpavlin, Fri Jul 31 13:22:45 2009 UTC revision 530 by dpavlin, Fri Sep 17 18:20:36 2010 UTC
# Line 3  package server; Line 3  package server;
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6  our $ip      = '172.16.10.1';  use Data::Dump qw(dump);
7  our $netmask = '255.255.255.0';  use YAML qw();
8    
9  our ( $ip_from, $ip_to ) = ( 10, 100 );  our $base_dir = '/srv/pxelator';
10    
11  our $base_dir = '/home/dpavlin/llin/pxelator';  use ties;
12    
13  use config;  tie our $ip,      'ties', 'server_ip' => '172.16.10.1';
14    tie our $netmask, 'ties', 'netmask'   => '255.255.255.0';
15    tie our $bcast,   'ties', 'bcast'     => '172.16.10.254';
16    tie our $ip_from, 'ties', 'ip_from'   => 10;
17    tie our $ip_to,   'ties', 'ip_to'     => 100;
18    tie our $domain,  'ties', 'domain'    => 'pxelator.lan';
19    tie our $new_clients, 'ties', 'new_clients' => $ip_to - $ip_from;
20    
21    if ( my $dev = $ENV{DEV} ) {
22            my $ifconfig = `ifconfig $dev`;
23            die "can't ifconfig $dev" unless $ifconfig;
24            die "device $dev not up: ifconfig $dev\n$ifconfig" unless $ifconfig =~ m/UP/;
25            $ip      = $1 if $ifconfig =~ m/inet addr:(\S+)/s;
26            $netmask = $1 if $ifconfig =~ m/Mask:(\S+)/s;
27            $bcast   = $1 if $ifconfig =~ m/Bcast:(\S+)/s;
28    }
29    
30    warn "DEV $ip $bcast $netmask";
31    
32    our $conf = "$base_dir/conf";
33    mkdir $conf unless -e $conf;
34    
35    sub conf {
36            warn "## conf $conf";
37            $conf;
38    }
39    
40    use Module::Refresh qw//;
41    sub refresh {
42            Module::Refresh->refresh;
43            my $from = (caller(1))[3];
44            $from =~ s{^(\w+)::.+$}{$1};
45            my $eval = '$' . $from . '::debug = server::debug();';
46            warn "refresh $eval\n";
47            eval $eval;
48            warn $@ if $@;
49    };
50    
51    mkdir $_ foreach grep { ! -d $_ } map { "$conf/$_" } ( 'ip', 'mac' );
52    
53    use File::Slurp;
54    sub shared {
55            my ($name, $value) = @_;
56    
57            my $path ="$conf/$name";
58            if ( defined $value ) {
59                    write_file $path, $value;
60                    warn "update $path = $value";
61            } else {
62                    $value = read_file $path if -e $path;
63            }
64            return $value;
65    }
66    
67    sub conf_default { shared($_[0]) || $_[1] }
68    
69    sub debug { shared('debug', @_) || 0 }
70    
71    sub as_hash_for {
72            my $ip = shift;
73    
74  our $debug;          my $server;
75  sub debug { $debug = config::shared('debug', @_) || 0 }          map { $server->{ $_ } = eval '$server::' . $_ } ( 'ip', 'netmask', 'bcast', 'domain', 'ip_from', 'ip_to', 'new_clients' );
76    
77            my $server_path = "$server::conf/ip/$ip/server.yaml";
78            $server =  YAML::LoadFile $server_path if -e $server_path;
79    
80            return $server;
81    }
82    
83  warn "loaded";  warn "loaded";
84    
85    1;

Legend:
Removed from v.75  
changed lines
  Added in v.530

  ViewVC Help
Powered by ViewVC 1.1.26