ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/ihost-perl/ihost.pl
(Generate patch)

Comparing projects/cms/source/host/ihost-perl/ihost.pl (file contents):
Revision 1.43 by tdb, Tue Dec 18 03:51:11 2001 UTC vs.
Revision 1.47 by tdb, Thu Mar 21 17:57:13 2002 UTC

# Line 33 | Line 33 | use vars qw (
33               $fqdn
34               $pidfile
35               $retry_wait
36 +             $ostype
37 +             $key
38               @data
39              );
40  
# Line 46 | Line 48 | $filter_manager_port = $ARGV[1];
48   $seq_no = 1;
49   $retry_wait = 60;
50  
51 + # work out our platform, if we can.
52 + $ostype = `uname -s`;
53 + chomp $ostype;
54 + $ostype = "unknown" if not defined $ostype;
55 +
56   # write our PID to a file
57   # use home dir by default
58   #$pidfile = $ENV{"HOME"};
# Line 55 | Line 62 | $pidfile .= "/.ihost.pid";
62   &write_pid();
63  
64   &tcp_configure();
65 + &send_tcp_heartbeat();
66   &send_udp_packet();
67  
68   $last_udp_time = time;
# Line 266 | Line 274 | sub send_udp_packet() {
274      opendir PLUGINS, $plugins_dir;
275      my(@plugins) = readdir PLUGINS;
276      foreach my $plugin (@plugins) {
277 <        push @data, `$plugins_dir/$plugin` if -x "$plugins_dir/$plugin" && -f "$plugins_dir/$plugin";
277 >        push @data, `$plugins_dir/$plugin $ostype` if -x "$plugins_dir/$plugin" && -f "$plugins_dir/$plugin";
278      }
279      
280      # get some extra data
# Line 280 | Line 288 | sub send_udp_packet() {
288      push(@data, "packet.attributes.date $date");
289      push(@data, "packet.attributes.type data");
290      push(@data, "packet.attributes.ip $ip");
291 +    push(@data, "packet.attributes.key $key");
292      
293      # sort the data
294      @data = sort(grep(!/^$/, grep(/^packet\./, @data)));
# Line 368 | Line 377 | sub send_tcp_heartbeat() {
377          return;
378      }
379      
380 +    print $sock "KEY\n";
381 +    $key = <$sock>;
382 +    
383      print $sock "ENDHEARTBEAT\n";
384      $response = <$sock>;
385      if (!$response eq "OK\n") {
# Line 423 | Line 435 | sub make_xml() {
435                  $xmltemp .= &make_xml("$curlevel$curtag", $curline);
436              }
437              my($nextline) = $data[0]; chomp $nextline if defined $nextline;
438 <            if((defined $nextline) && ($nextline =~ /^$curlevel$curtag/)) {
438 >            $curtag =~ s/(.*)\./$1/;
439 >            if((defined $nextline) && ($nextline =~ /^$curlevel$curtag\./)) {
440                  $curline = "";
441              }
442              else {
430                $curtag =~ s/(.*)\./$1/;
443                  $xmltemp = "<$curtag$attributes>$xmltemp</$curtag>" unless $curtag eq "";
444                  return $xmltemp;
445              }
# Line 445 | Line 457 | sub make_xml() {
457                  return $xmltemp;
458              }
459          }
460 +        # dealing with a null value
461 +        elsif($curline =~ /^$curlevel([^\.\s]+)$/) {
462 +            # simply adding a space makes the above elsif deal with it :)
463 +            # just level with an empty tag in the XML
464 +            $curline .= " ";
465 +        }
466 +        # failing all that, skip the line
467 +        else {
468 +            $curline = "";
469 +        }
470      }
471   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines