Test::AutoBuild::Package - Generated packages


Test-AutoBuild documentation Contained in the Test-AutoBuild distribution.

Index


Code Index:

NAME

Top

Test::AutoBuild::Package - Generated packages

SYNOPSIS

Top

  use Test::AutoBuild::Package




DESCRIPTION

Top

This module represents packages generated by a module during its build.

METHODS

Top

my $package = Test::AutoBuild::Package->new( );

AUTHORS

Top

Daniel Berrange <dan@berrange.com>

COPYRIGHT

Top

SEE ALSO

Top

perl(1)


Test-AutoBuild documentation Contained in the Test-AutoBuild distribution.
# -*- perl -*-
#
# Test::AutoBuild::Package by Daniel Berrange <dan@berrange.com>
#
# Copyright (C) 2002 Daniel Berrange <dan@berrange.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# $Id: Package.pm,v 1.6 2007/12/08 21:03:02 danpb Exp $

package Test::AutoBuild::Package;

use strict;
use warnings;
use Carp qw(confess);
use Digest::MD5;
use File::stat;

sub new {
    my $proto = shift;
    my $class = ref($proto) || $proto;
    my $self = {};
    my %params = @_;

    $self->{name} = exists $params{name} ? $params{name} : confess "name parameter is required";
    $self->{type} = exists $params{type} ? $params{type} : confess "type parameter is required";
    $self->{platform} = exists $params{platform} ? $params{platform} : undef;
    $self->{size} = undef;
    $self->{last_modified} = undef;
    $self->{md5sum} = undef;

    bless $self, $class;

    $self->_stat();

    return $self;
}

sub name {
    my $self = shift;
    $self->{name} = shift if @_;
    return $self->{name};
}

sub type {
    my $self = shift;
    $self->{type} = shift if @_;
    return $self->{type};
}


sub size {
    my $self = shift;

    return $self->{size};
}


sub last_modified {
    my $self = shift;

    return $self->{last_modified};
}


sub platform {
    my $self = shift;
    return $self->{platform};
}

sub md5sum {
    my $self = shift;
    $self->_md5sum() unless defined  $self->{md5sum};
    return $self->{md5sum};
}


sub _stat {
    my $self = shift;

    my $sb;
    if (-l $self->{name}) {
	$sb = lstat $self->{name};
    } else {
	$sb = stat $self->{name};
    }
    if (! defined $sb) {
	die "could not stat $self->{name}";
    }
    $self->{last_modified} = $sb->mtime;
    $self->{size} = $sb->size;
}


sub _md5sum {
    my $self = shift;

    my $md5 = Digest::MD5->new();

    if ($self->{type}->filetype() eq "directory") {
	my $listing = "";
	    opendir(DIR, $self->{name}) or die("can't opendir $self->{name}: $!");
	    foreach my $file_or_dir (grep { !m/^\.$/ && !m/^\.\.$/ } readdir(DIR)) {
	    my $sb = stat(File::Spec->catfile($self->{name}, $file_or_dir));
	    $listing .= join ":", $sb->mode, $sb->uid, $sb->gid, $sb->size, $sb->mtime;
	    }
	    closedir DIR;
	$md5->add($listing);
    } else {
	open FILE, $self->{name} or die "cannot open $self->{name}: $!";
	$md5->addfile(\*FILE);
    }

    $self->{md5sum} = $md5->hexdigest();

    close FILE;
}

1 # So that the require or use succeeds.

__END__