/usr/share/perl5/MooseX/Daemonize/Pid.pm is in libmoosex-daemonize-perl 0.20-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | use strict;
use warnings;
package MooseX::Daemonize::Pid;
# ABSTRACT: PID management for MooseX::Daemonize
our $VERSION = '0.20';
use Moose;
use Moose::Util::TypeConstraints qw(coerce from via);
use namespace::autoclean;
coerce 'MooseX::Daemonize::Pid'
=> from 'Int'
=> via { MooseX::Daemonize::Pid->new( pid => $_ ) };
has 'pid' => (
is => 'rw',
isa => 'Int',
lazy => 1,
clearer => 'clear_pid',
predicate => 'has_pid',
default => sub { $$ }
);
sub is_running { kill(0, (shift)->pid) ? 1 : 0 }
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
MooseX::Daemonize::Pid - PID management for MooseX::Daemonize
=head1 VERSION
version 0.20
=head1 DESCRIPTION
This is a very basic Pid management object, it doesn't do all that
much, and mostly just serves as a base class for L<MooseX::Daemonize::Pid::File>.
=head1 NAME
=head1 ATTRIBUTES
=over 4
=item I<pid Int>
=back
=head1 METHODS
=over 4
=item B<clear_pid>
This will clear the value of the I<pid> attribute. It is useful for making sure
that the parent process does not have a bad value stored in it.
=item B<has_pid>
This is a predicate method to tell you if your I<pid> attribute has
been initialized yet.
=item B<is_running>
This checks to see if the I<pid> is running.
=item meta()
The C<meta()> method from L<Class::MOP::Class>
=back
=head1 DEPENDENCIES
Obviously L<Moose>
=head1 BUGS AND LIMITATIONS
Please report any bugs or feature requests to
C<bug-MooseX-Daemonize@rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org>.
=head1 AUTHORS
=over 4
=item *
Stevan Little <stevan.little@iinteractive.com>
=item *
Chris Prather <chris@prather.org>
=back
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2007 by Chris Prather.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|