POOF::Example::Vehicle::Automobile - Sample class to illustrate POOF.


POOF documentation Contained in the POOF distribution.

Index


Code Index:

NAME

Top

POOF::Example::Vehicle::Automobile - Sample class to illustrate POOF.

SYNOPSIS

Top

Todo

SEE ALSO

Top

POOF man page.

AUTHOR

Top

Benny Millares <bmillares@cpan.org>

COPYRIGHT AND LICENSE

Top


POOF documentation Contained in the POOF distribution.

package POOF::Example::Vehicle::Automobile;

use strict;
use warnings;

use base qw(POOF::Example::Vehicle);

use POOF::Example::Lock;
use POOF::Example::Engine;
use POOF::Example::Wheels;

#-------------------------------------------------------------------------------
# init 

sub _init : Method Protected Virtual
{
    my $obj = shift;
    my ($args) = $obj->SUPER::_init( @_ );
    
    $obj->{'Engine'} = POOF::Example::Engine->new;
    #$obj->{'Wheels'} = POOF::Example::Wheel->new;
    
    return (@_);
}

#-------------------------------------------------------------------------------
# properties

sub Engine : Property Protected
{
    {
        'type' => 'POOF::Example::Engine'
    }
}

sub Wheels : Property Public
{
    {
        'type' => 'POOF::Example::Wheels',
        'ofilter' => sub
        {
            my ($obj,$val) = @_;
            unless($val)
            {
                my $wheels = POOF::Example::Wheels->new(
                    'name'      => 'Wheels',
                    'access'    => 'Public',
                    'otype'     => 'POOF::Example::Wheel',
                    'maxsize'   => 4,
                );
                $obj->{'Wheels'} = $wheels;
                return $wheels;
            }
            return $val;
        }
    }
}

sub lock : Property Private
{
    {
        'type' => 'POOF::Example::Lock',
        'ofilter' => sub
        {
            my ($obj,$val) = @_;
            unless($val)
            {
                #warn "Trying ton instantiate lock\n";
                $obj->{'lock'} = POOF::Example::Lock->new;
                return $obj->{'lock'};
            }
            return $val;
        }
    }
}

sub state : Property Private
{
    {
        'type' => 'string'
    }
};

#-------------------------------------------------------------------------------
# methods
    
sub StartEngine : Method Public
{
    my $obj = shift;
    my $key = shift;
    
    if ($obj->{'lock'}->Unlock($key))
    {
        my $result = $obj->{'Engine'}->StartEngine;
        my $engineState = $obj->{'Engine'}->GetState;
        
        $obj->{'state'} =
            $engineState
                ? 'running'
                : 'stoped';
                
        return $result;
    }
    else
    {
        return 0;
    }
}

sub StopEngine : Method Public
{
    my $obj = shift;
    my $key = shift;
    
    if ($obj->{'lock'}->Lock($key))
    {
        my $result = $obj->{'Engine'}->StopEngine;
        my $engineState = $obj->{'Engine'}->GetState;
        
        $obj->{'state'} =
            $engineState
                ? 'running'
                : 'stoped';
                
        return $result;
    }
    else
    {
        return 0;
    }
}


1;
__END__