ProcManager: Fix start_delay causing a permanent hang.
[catagits/FCGI-ProcManager.git] / lib / FCGI / ProcManager.pm
CommitLineData
0baf5fac 1package FCGI::ProcManager;
2
3# Copyright (c) 2000, FundsXpress Financial Network, Inc.
4# This library is free software released under the GNU Lesser General
5# Public License, Version 2.1. Please read the important licensing and
6# disclaimer information included below.
7
50f238cd 8# $Id: ProcManager.pm,v 1.23 2001/04/23 16:10:11 muaddie Exp $
0baf5fac 9
10use strict;
4ceac1a1 11use Exporter;
50f238cd 12use POSIX qw(:signal_h);
4ceac1a1 13
50f238cd 14use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS $Q $SIG_CODEREF);
0baf5fac 15BEGIN {
2ae890a5 16 $VERSION = '0.19';
4ceac1a1 17 @ISA = qw(Exporter);
c2bbadb3 18 @EXPORT_OK = qw(pm_manage pm_die pm_wait
4b99386a 19 pm_write_pid_file pm_remove_pid_file
20 pm_pre_dispatch pm_post_dispatch
21 pm_change_process_name pm_received_signal pm_parameter
22 pm_warn pm_notify pm_abort pm_exit
23 $SIG_CODEREF);
4ceac1a1 24 $EXPORT_TAGS{all} = \@EXPORT_OK;
25 $FCGI::ProcManager::Default = 'FCGI::ProcManager';
0baf5fac 26}
27
28=head1 NAME
29
30 FCGI::ProcManager - functions for managing FastCGI applications.
31
32=head1 SYNOPSIS
33
518709ed 34 # In Object-oriented style.
0baf5fac 35 use CGI::Fast;
36 use FCGI::ProcManager;
c2bbadb3 37 my $proc_manager = FCGI::ProcManager->new({
4b99386a 38 n_processes => 10
c2bbadb3 39 });
518709ed 40 $proc_manager->pm_manage();
0baf5fac 41 while (my $cgi = CGI::Fast->new()) {
518709ed 42 $proc_manager->pm_pre_dispatch();
43 # ... handle the request here ...
44 $proc_manager->pm_post_dispatch();
45 }
46
47 # This style is also supported:
48 use CGI::Fast;
6e8b04f7 49 use FCGI::ProcManager qw(pm_manage pm_pre_dispatch
4b99386a 50 pm_post_dispatch);
518709ed 51 pm_manage( n_processes => 10 );
52 while (my $cgi = CGI::Fast->new()) {
53 pm_pre_dispatch();
0baf5fac 54 #...
518709ed 55 pm_post_dispatch();
56 }
0baf5fac 57
58=head1 DESCRIPTION
59
518709ed 60FCGI::ProcManager is used to serve as a FastCGI process manager. By
61re-implementing it in perl, developers can more finely tune performance in
62their web applications, and can take advantage of copy-on-write semantics
63prevalent in UNIX kernel process management. The process manager should
64be invoked before the caller''s request loop
65
66The primary routine, C<pm_manage>, enters a loop in which it maintains a
67number of FastCGI servers (via fork(2)), and which reaps those servers
68when they die (via wait(2)).
69
70C<pm_manage> provides too hooks:
71
72 C<managing_init> - called just before the manager enters the manager loop.
73 C<handling_init> - called just before a server is returns from C<pm_manage>
74
75It is necessary for the caller, when implementing its request loop, to
76insert a call to C<pm_pre_dispatch> at the top of the loop, and then
777C<pm_post_dispatch> at the end of the loop.
78
50f238cd 79=head2 Signal Handling
80
81FCGI::ProcManager attempts to do the right thing for proper shutdowns now.
82
83When it receives a SIGHUP, it sends a SIGTERM to each of its children, and
b48455f1 84then resumes its normal operations.
50f238cd 85
86When it receives a SIGTERM, it sends a SIGTERM to each of its children, sets
87an alarm(3) "die timeout" handler, and waits for each of its children to
88die. If all children die before this timeout, process manager exits with
89return status 0. If all children do not die by the time the "die timeout"
90occurs, the process manager sends a SIGKILL to each of the remaining
91children, and exists with return status 1.
92
93In order to get FastCGI servers to exit upon receiving a signal, it is
b48455f1 94necessary to use its FAIL_ACCEPT_ON_INTR. See L<FCGI>'s description of
95FAIL_ACCEPT_ON_INTR. Unfortunately, if you want/need to use L<CGI::Fast>, it
96is currently necessary to run the latest (at the time of writing) development
97version of FCGI.pm. (>= 0.71_02)
50f238cd 98
99Otherwise, if you don't, there is a loop around accept(2) which prevents
100os_unix.c OS_Accept() from returning the necessary error when FastCGI
101servers blocking on accept(2) receive the SIGTERM or SIGHUP.
102
103FCGI::ProcManager uses POSIX::sigaction() to override the default SA_RESTART
104policy used for perl's %SIG behavior. Specifically, the process manager
105never uses SA_RESTART, while the child FastCGI servers turn off SA_RESTART
106around the accept(2) loop, but re-enstate it otherwise.
107
108The desired (and implemented) effect is to give a request as big a chance as
109possible to succeed and to delay their exits until after their request,
110while allowing the FastCGI servers waiting for new requests to die right
b48455f1 111away.
0baf5fac 112
113=head1 METHODS
114
115=head2 new
116
c2bbadb3 117 class or instance
118 (ProcManager) new([hash parameters])
119
120Constructs a new process manager. Takes an option has of initial parameter
121values, and assigns these to the constructed object HASH, overriding any
122default values. The default parameter values currently are:
123
124 role => manager
125 start_delay => 0
126 die_timeout => 60
2ae890a5 127 pm_title => 'perl-fcgi-pm'
c2bbadb3 128
0baf5fac 129=cut
130
131sub new {
132 my ($proto,$init) = @_;
50f238cd 133 $init ||= {};
0baf5fac 134
518709ed 135 my $this = {
4b99386a 136 role => "manager",
137 start_delay => 0,
138 die_timeout => 60,
2ae890a5 139 pm_title => 'perl-fcgi-pm',
4b99386a 140 %$init
141 };
4ceac1a1 142 bless $this, ref($proto)||$proto;
0baf5fac 143
144 $this->{PIDS} = {};
145
50f238cd 146 # initialize signal constructions.
147 unless ($this->no_signals()) {
148 $this->{sigaction_no_sa_restart} =
4b99386a 149 POSIX::SigAction->new('FCGI::ProcManager::sig_sub');
50f238cd 150 $this->{sigaction_sa_restart} =
4b99386a 151 POSIX::SigAction->new('FCGI::ProcManager::sig_sub',undef,POSIX::SA_RESTART);
50f238cd 152 }
153
0baf5fac 154 return $this;
155}
156
518709ed 157=head1 Manager methods
4ceac1a1 158
159=head2 pm_manage
0baf5fac 160
c2bbadb3 161 instance or export
162 (int) pm_manage([hash parameters])
0baf5fac 163
164DESCRIPTION:
165
c2bbadb3 166When this is called by a FastCGI script to manage application servers. It
167defines a sequence of instructions for a process to enter this method and
168begin forking off and managing those handlers, and it defines a sequence of
169instructions to intialize those handlers.
170
171If n_processes < 1, the managing section is subverted, and only the
172handling sequence is executed.
173
174Either returns the return value of pm_die() and/or pm_abort() (which will
175not ever return in general), or returns 1 to the calling script to begin
176handling requests.
0baf5fac 177
178=cut
179
4ceac1a1 180sub pm_manage {
518709ed 181 my ($this,%values) = self_or_default(@_);
182 map { $this->pm_parameter($_,$values{$_}) } keys %values;
0baf5fac 183
518709ed 184 # skip to handling now if we won't be managing any processes.
50f238cd 185 $this->n_processes() or return;
0baf5fac 186
518709ed 187 # call the (possibly overloaded) management initialization hook.
188 $this->role("manager");
c146b63d 189 $this->managing_init();
518709ed 190 $this->pm_notify("initialized");
0baf5fac 191
518709ed 192 my $manager_pid = $$;
0baf5fac 193
518709ed 194 MANAGING_LOOP: while (1) {
195
518709ed 196 $this->n_processes() > 0 or
197 return $this->pm_die();
0baf5fac 198
518709ed 199 # while we have fewer servers than we want.
200 PIDS: while (keys(%{$this->{PIDS}}) < $this->n_processes()) {
201
202 if (my $pid = fork()) {
4b99386a 203 # the manager remembers the server.
204 $this->{PIDS}->{$pid} = { pid=>$pid };
518709ed 205 $this->pm_notify("server (pid $pid) started");
0baf5fac 206
207 } elsif (! defined $pid) {
4b99386a 208 return $this->pm_abort("fork: $!");
0baf5fac 209
210 } else {
4b99386a 211 $this->{MANAGER_PID} = $manager_pid;
212 # the server exits the managing loop.
213 last MANAGING_LOOP;
0baf5fac 214 }
0baf5fac 215
69817330 216 for (my $s = $this->start_delay(); $s > 0; $s -= sleep $s) {};
518709ed 217 }
c146b63d 218
518709ed 219 # this should block until the next server dies.
c2bbadb3 220 $this->pm_wait();
0baf5fac 221
222 }# while 1
223
518709ed 224HANDLING:
0baf5fac 225
c2bbadb3 226 # forget any children we had been collecting.
227 delete $this->{PIDS};
228
518709ed 229 # call the (possibly overloaded) handling init hook
230 $this->role("server");
c146b63d 231 $this->handling_init();
518709ed 232 $this->pm_notify("initialized");
0baf5fac 233
518709ed 234 # server returns
0baf5fac 235 return 1;
236}
237
c146b63d 238=head2 managing_init
0baf5fac 239
c2bbadb3 240 instance
241 () managing_init()
242
243DESCRIPTION:
244
245Overrideable method which initializes a process manager. In order to
246handle signals, manage the PID file, and change the process name properly,
247any method which overrides this should call SUPER::managing_init().
248
0baf5fac 249=cut
250
c146b63d 251sub managing_init {
c2bbadb3 252 my ($this) = @_;
0baf5fac 253
518709ed 254 # begin to handle signals.
50f238cd 255 # We do NOT want SA_RESTART in the process manager.
256 # -- we want start the shutdown sequence immediately upon SIGTERM.
257 unless ($this->no_signals()) {
258 sigaction(SIGTERM, $this->{sigaction_no_sa_restart}) or
4b99386a 259 $this->pm_warn("sigaction: SIGTERM: $!");
50f238cd 260 sigaction(SIGHUP, $this->{sigaction_no_sa_restart}) or
4b99386a 261 $this->pm_warn("sigaction: SIGHUP: $!");
50f238cd 262 $SIG_CODEREF = sub { $this->sig_manager(@_) };
263 }
0baf5fac 264
518709ed 265 # change the name of this process as it appears in ps(1) output.
2ae890a5 266 $this->pm_change_process_name($this->pm_parameter('pm_title'));
0baf5fac 267
518709ed 268 $this->pm_write_pid_file();
0baf5fac 269}
270
518709ed 271=head2 pm_die
0baf5fac 272
c2bbadb3 273 instance or export
274 () pm_die(string msg[, int exit_status])
275
276DESCRIPTION:
277
278This method is called when a process manager receives a notification to
279shut itself down. pm_die() attempts to shutdown the process manager
280gently, sending a SIGTERM to each managed process, waiting die_timeout()
281seconds to reap each process, and then exit gracefully once all children
282are reaped, or to abort if all children are not reaped.
283
0baf5fac 284=cut
285
518709ed 286sub pm_die {
287 my ($this,$msg,$n) = self_or_default(@_);
288
289 # stop handling signals.
50f238cd 290 undef $SIG_CODEREF;
518709ed 291 $SIG{HUP} = 'DEFAULT';
292 $SIG{TERM} = 'DEFAULT';
293
294 $this->pm_remove_pid_file();
295
296 # prepare to die no matter what.
297 if (defined $this->die_timeout()) {
50f238cd 298 $SIG{ALRM} = sub { $this->pm_abort("wait timeout") };
518709ed 299 alarm $this->die_timeout();
300 }
301
302 # send a TERM to each of the servers.
50f238cd 303 if (my @pids = keys %{$this->{PIDS}}) {
304 $this->pm_notify("sending TERM to PIDs, @pids");
305 kill "TERM", @pids;
306 }
518709ed 307
308 # wait for the servers to die.
309 while (%{$this->{PIDS}}) {
c2bbadb3 310 $this->pm_wait();
518709ed 311 }
312
313 # die already.
314 $this->pm_exit("dying: ".$msg,$n);
0baf5fac 315}
316
c2bbadb3 317=head2 pm_wait
318
319 instance or export
320 (int pid) pm_wait()
321
322DESCRIPTION:
323
324This calls wait() which suspends execution until a child has exited.
325If the process ID returned by wait corresponds to a managed process,
326pm_notify() is called with the exit status of that process.
327pm_wait() returns with the return value of wait().
0baf5fac 328
329=cut
330
c2bbadb3 331sub pm_wait {
4ceac1a1 332 my ($this) = self_or_default(@_);
518709ed 333
334 # wait for the next server to die.
335 next if (my $pid = wait()) < 0;
336
337 # notify when one of our servers have died.
338 delete $this->{PIDS}->{$pid} and
339 $this->pm_notify("server (pid $pid) exited with status $?");
c2bbadb3 340
341 return $pid;
0baf5fac 342}
343
c146b63d 344=head2 pm_write_pid_file
0baf5fac 345
c2bbadb3 346 instance or export
347 () pm_write_pid_file([string filename])
348
349DESCRIPTION:
350
351Writes current process ID to optionally specified file. If no filename is
352specified, it uses the value of the C<pid_fname> parameter.
353
0baf5fac 354=cut
355
4ceac1a1 356sub pm_write_pid_file {
357 my ($this,$fname) = self_or_default(@_);
0baf5fac 358 $fname ||= $this->pid_fname() or return;
359 if (!open PIDFILE, ">$fname") {
518709ed 360 $this->pm_warn("open: $fname: $!");
0baf5fac 361 return;
362 }
363 print PIDFILE "$$\n";
364 close PIDFILE;
365}
366
c146b63d 367=head2 pm_remove_pid_file
0baf5fac 368
c2bbadb3 369 instance or export
370 () pm_remove_pid_file()
371
372DESCRIPTION:
373
374Removes optionally specified file. If no filename is specified, it uses
375the value of the C<pid_fname> parameter.
376
0baf5fac 377=cut
378
4ceac1a1 379sub pm_remove_pid_file {
380 my ($this,$fname) = self_or_default(@_);
0baf5fac 381 $fname ||= $this->pid_fname() or return;
518709ed 382 my $ret = unlink($fname) or $this->pm_warn("unlink: $fname: $!");
0baf5fac 383 return $ret;
384}
385
50f238cd 386=head2 sig_sub
387
388 instance
389 () sig_sub(string name)
390
391DESCRIPTION:
392
393The name of this method is passed to POSIX::sigaction(), and handles signals
394for the process manager. If $SIG_CODEREF is set, then the input arguments
395to this are passed to a call to that.
396
397=cut
398
399sub sig_sub {
400 $SIG_CODEREF->(@_) if ref $SIG_CODEREF;
401}
402
518709ed 403=head2 sig_manager
0baf5fac 404
c2bbadb3 405 instance
406 () sig_manager(string name)
407
408DESCRIPTION:
409
410Handles signals of the process manager. Takes as input the name of signal
411being handled.
412
0baf5fac 413=cut
414
518709ed 415sub sig_manager {
416 my ($this,$name) = @_;
50f238cd 417 if ($name eq "TERM") {
c2bbadb3 418 $this->pm_notify("received signal $name");
419 $this->pm_die("safe exit from signal $name");
50f238cd 420 } elsif ($name eq "HUP") {
421 # send a TERM to each of the servers, and pretend like nothing happened..
422 if (my @pids = keys %{$this->{PIDS}}) {
423 $this->pm_notify("sending TERM to PIDs, @pids");
424 kill "TERM", @pids;
425 }
518709ed 426 } else {
427 $this->pm_notify("ignoring signal $name");
428 }
0baf5fac 429}
430
518709ed 431=head1 Handler methods
0baf5fac 432
518709ed 433=head2 handling_init
0baf5fac 434
c2bbadb3 435 instance or export
436 () handling_init()
437
438DESCRIPTION:
439
0baf5fac 440=cut
441
518709ed 442sub handling_init {
c2bbadb3 443 my ($this) = @_;
0baf5fac 444
518709ed 445 # begin to handle signals.
50f238cd 446 # We'll want accept(2) to return -1(EINTR) on caught signal..
447 unless ($this->no_signals()) {
448 sigaction(SIGTERM, $this->{sigaction_no_sa_restart}) or $this->pm_warn("sigaction: SIGTERM: $!");
449 sigaction(SIGHUP, $this->{sigaction_no_sa_restart}) or $this->pm_warn("sigaction: SIGHUP: $!");
450 $SIG_CODEREF = sub { $this->sig_handler(@_) };
451 }
0baf5fac 452
518709ed 453 # change the name of this process as it appears in ps(1) output.
454 $this->pm_change_process_name("perl-fcgi");
0baf5fac 455}
456
518709ed 457=head2 pm_pre_dispatch
0baf5fac 458
c2bbadb3 459 instance or export
460 () pm_pre_dispatch()
461
462DESCRIPTION:
463
0baf5fac 464=cut
465
518709ed 466sub pm_pre_dispatch {
4ceac1a1 467 my ($this) = self_or_default(@_);
50f238cd 468
469 # Now, we want the request to continue unhindered..
470 unless ($this->no_signals()) {
471 sigaction(SIGTERM, $this->{sigaction_sa_restart}) or $this->pm_warn("sigaction: SIGTERM: $!");
472 sigaction(SIGHUP, $this->{sigaction_sa_restart}) or $this->pm_warn("sigaction: SIGHUP: $!");
473 }
0baf5fac 474}
475
518709ed 476=head2 pm_post_dispatch
0baf5fac 477
c2bbadb3 478 instance or export
479 () pm_post_dispatch()
480
481DESCRIPTION:
482
0baf5fac 483=cut
484
518709ed 485sub pm_post_dispatch {
4ceac1a1 486 my ($this) = self_or_default(@_);
518709ed 487 if ($this->pm_received_signal("TERM")) {
488 $this->pm_exit("safe exit after SIGTERM");
489 }
490 if ($this->pm_received_signal("HUP")) {
491 $this->pm_exit("safe exit after SIGHUP");
492 }
c2bbadb3 493 if ($this->{MANAGER_PID} and getppid() != $this->{MANAGER_PID}) {
518709ed 494 $this->pm_exit("safe exit: manager has died");
495 }
50f238cd 496 # We'll want accept(2) to return -1(EINTR) on caught signal..
497 unless ($this->no_signals()) {
498 sigaction(SIGTERM, $this->{sigaction_no_sa_restart}) or $this->pm_warn("sigaction: SIGTERM: $!");
499 sigaction(SIGHUP, $this->{sigaction_no_sa_restart}) or $this->pm_warn("sigaction: SIGHUP: $!");
500 }
0baf5fac 501}
502
518709ed 503=head2 sig_handler
0baf5fac 504
c2bbadb3 505 instance or export
506 () sig_handler()
507
508DESCRIPTION:
509
0baf5fac 510=cut
511
518709ed 512sub sig_handler {
c146b63d 513 my ($this,$name) = @_;
518709ed 514 $this->pm_received_signal($name,1);
515}
516
517=head1 Common methods and routines
518
519=head2 self_or_default
520
521 private global
522 (ProcManager, @args) self_or_default([ ProcManager, ] @args);
523
524DESCRIPTION:
525
526This is a helper subroutine to acquire or otherwise create a singleton
527default object if one is not passed in, e.g., a method call.
528
529=cut
530
531sub self_or_default {
532 return @_ if defined $_[0] and !ref $_[0] and $_[0] eq 'FCGI::ProcManager';
533 if (!defined $_[0] or (ref($_[0]) ne 'FCGI::ProcManager' and
4b99386a 534 !UNIVERSAL::isa($_[0],'FCGI::ProcManager'))) {
518709ed 535 $Q or $Q = $FCGI::ProcManager::Default->new;
536 unshift @_, $Q;
0baf5fac 537 }
518709ed 538 return wantarray ? @_ : $Q;
539}
540
541=head2 pm_change_process_name
542
c2bbadb3 543 instance or export
544 () pm_change_process_name()
545
546DESCRIPTION:
547
518709ed 548=cut
549
550sub pm_change_process_name {
551 my ($this,$name) = self_or_default(@_);
552 $0 = $name;
553}
554
555=head2 pm_received_signal
556
c2bbadb3 557 instance or export
558 () pm_received signal()
559
560DESCRIPTION:
561
518709ed 562=cut
563
564sub pm_received_signal {
565 my ($this,$sig,$received) = self_or_default(@_);
566 $sig or return $this->{SIG_RECEIVED};
567 $received and $this->{SIG_RECEIVED}->{$sig}++;
568 return $this->{SIG_RECEIVED}->{$sig};
569}
570
c2bbadb3 571=head1 parameters
572
518709ed 573=head2 pm_parameter
574
c2bbadb3 575 instance or export
576 () pm_parameter()
577
578DESCRIPTION:
579
518709ed 580=cut
581
582sub pm_parameter {
583 my ($this,$key,$value) = self_or_default(@_);
584 defined $value and $this->{$key} = $value;
585 return $this->{$key};
0baf5fac 586}
587
518709ed 588=head2 n_processes
589
590=head2 no_signals
591
592=head2 pid_fname
593
594=head2 die_timeout
595
596=head2 role
597
598=head2 start_delay
599
c2bbadb3 600DESCRIPTION:
601
518709ed 602=cut
603
604sub n_processes { shift->pm_parameter("n_processes", @_); }
605sub pid_fname { shift->pm_parameter("pid_fname", @_); }
606sub no_signals { shift->pm_parameter("no_signals", @_); }
607sub die_timeout { shift->pm_parameter("die_timeout", @_); }
608sub role { shift->pm_parameter("role", @_); }
609sub start_delay { shift->pm_parameter("start_delay", @_); }
610
c2bbadb3 611=head1 notification and death
612
c146b63d 613=head2 pm_warn
0baf5fac 614
c2bbadb3 615 instance or export
616 () pm_warn()
617
618DESCRIPTION:
619
0baf5fac 620=cut
621
4ceac1a1 622sub pm_warn {
623 my ($this,$msg) = self_or_default(@_);
518709ed 624 $this->pm_notify($msg);
625}
626
627=head2 pm_notify
628
c2bbadb3 629 instance or export
630 () pm_notify()
631
632DESCRIPTION:
633
518709ed 634=cut
635
636sub pm_notify {
637 my ($this,$msg) = self_or_default(@_);
638 $msg =~ s/\s*$/\n/;
639 print STDERR "FastCGI: ".$this->role()." (pid $$): ".$msg;
0baf5fac 640}
641
c2bbadb3 642=head2 pm_exit
643
644 instance or export
645 () pm_exit(string msg[, int exit_status])
646
647DESCRIPTION:
0baf5fac 648
649=cut
650
4ceac1a1 651sub pm_exit {
652 my ($this,$msg,$n) = self_or_default(@_);
0baf5fac 653 $n ||= 0;
c2bbadb3 654
655 # if we still have children at this point, something went wrong.
656 # SIGKILL them now.
657 kill "KILL", keys %{$this->{PIDS}} if $this->{PIDS};
658
4ceac1a1 659 $this->pm_warn($msg);
0baf5fac 660 $@ = $msg;
661 exit $n;
662}
663
c146b63d 664=head2 pm_abort
0baf5fac 665
c2bbadb3 666 instance or export
667 () pm_abort(string msg[, int exit_status])
668
669DESCRIPTION:
670
0baf5fac 671=cut
672
4ceac1a1 673sub pm_abort {
674 my ($this,$msg,$n) = self_or_default(@_);
0baf5fac 675 $n ||= 1;
4ceac1a1 676 $this->pm_exit($msg,1);
0baf5fac 677}
678
6791;
680__END__
681
682=head1 BUGS
683
684No known bugs, but this does not mean no bugs exist.
685
686=head1 SEE ALSO
687
688L<FCGI>.
689
9d643399 690=head1 MAINTAINER
691
692Gareth Kirwan <gbjk@thermeon.com>
693
694=head1 AUTHOR
695
696James E Jurach Jr.
697
0baf5fac 698=head1 COPYRIGHT
699
700 FCGI-ProcManager - A Perl FCGI Process Manager
701 Copyright (c) 2000, FundsXpress Financial Network, Inc.
702
703 This library is free software; you can redistribute it and/or
704 modify it under the terms of the GNU Lesser General Public
705 License as published by the Free Software Foundation; either
706 version 2 of the License, or (at your option) any later version.
707
708 BECAUSE THIS LIBRARY IS LICENSED FREE OF CHARGE, THIS LIBRARY IS
709 BEING PROVIDED "AS IS WITH ALL FAULTS," WITHOUT ANY WARRANTIES
710 OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT
711 LIMITATION, ANY IMPLIED WARRANTIES OF TITLE, NONINFRINGEMENT,
712 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, AND THE
713 ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY,
714 AND EFFORT IS WITH THE YOU. See the GNU Lesser General Public
715 License for more details.
716
717 You should have received a copy of the GNU Lesser General Public
718 License along with this library; if not, write to the Free Software
719 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
720
721=cut