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.24 by pjm2, Tue Mar 6 08:38:42 2001 UTC vs.
Revision 1.27 by pjm2, Wed Mar 14 18:00:16 2001 UTC

# Line 33 | Line 33 | use vars qw (
33               $filter_addr
34               $file_list
35               $fqdn
36 +             $pidfile
37              );
38  
39   if (@ARGV != 2) {
# Line 44 | Line 45 | $filter_manager_port = $ARGV[1];
45  
46   $seq_no = 1;
47  
48 + # write our PID to a file
49 + $pidfile = "/var/tmp/ihost.pid";
50 + &write_pid();
51 +
52   &tcp_configure();
53   &send_udp_packet();
54  
# Line 71 | Line 76 | while (1) {
76      `sleep $delay`;
77   }
78  
79 + # we'll probably never get here...
80 + `rm -f $pidfile`;
81   exit(0);
82  
83  
# Line 304 | Line 311 | sub send_tcp_heartbeat() {
311                                      ) or return;
312      if (!defined $sock) {
313          print "IHOST WARNING: Failed to deliver a heartbeat to the i-scream filter.\n";
314 +        &tcp_configure();
315          return;
316      }
317  
# Line 317 | Line 325 | sub send_tcp_heartbeat() {
325      if (!$response eq "OK") {
326          close($sock);
327          print "Server gave wrong response to HEARTBEAT: $response\n";
328 +        &tcp_configure();
329          return;
330      }
331      
# Line 327 | Line 336 | sub send_tcp_heartbeat() {
336      if (!$response eq "OK") {
337          close($sock);
338          print "Server gave wrong response to CONFIG: $response\n";
339 +        &tcp_configure();
340          return;
341      }
342  
# Line 337 | Line 347 | sub send_tcp_heartbeat() {
347      if (!$response eq "OK") {
348          close($sock);
349          print "Server gave wrong response to file list: $response\n";
350 +        &tcp_configure();
351          return;
352      }
353      
# Line 346 | Line 357 | sub send_tcp_heartbeat() {
357      chop $response;
358      if ($response eq "ERROR") {
359          close($sock);
360 +        print "Server configuration changed.  Reconfiguring with filter manager.\n";
361          &tcp_configure();
362          return;
363      }
364      if (!$response eq "OK") {
365          close($sock);
366          print "Server gave wrong response to HEARTBEAT: $response\n";
367 +        &tcp_configure();
368          return;
369      }
370      
# Line 362 | Line 375 | sub send_tcp_heartbeat() {
375      if (!$response eq "OK") {
376          close($sock);
377          print "Server gave wrong response to ENDHEARTBEAT: $response\n";
378 +        &tcp_configure();
379          return;
380      }
381      
382      close($sock);
383      print "^";
384 +    
385 +    return;
386 + }
387 +
388 + #-----------------------------------------------------------------------
389 + # write_pid
390 + # Writes the PID (process ID) of this instance to $pidfile.
391 + # This is then used by a seperate script to check (and restart) ihost.
392 + #-----------------------------------------------------------------------
393 + sub write_pid() {
394 +    open PID, ">$pidfile";
395 +    print PID $$;
396 +    close PID;
397      
398      return;
399   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines