view Lib/IMPL/Object.pm @ 250:129e48bb5afb

DOM refactoring ObjectToDOM methods are virtual QueryToDOM uses inflators Fixed transform for the complex values in the ObjectToDOM QueryToDOM doesn't allow to use complex values (HASHes) as values for nodes (overpost problem)
author sergey
date Wed, 07 Nov 2012 04:17:53 +0400
parents 6d8092d8ce1b
children 8a5da17d7ef9
line wrap: on
line source

package IMPL::Object;
use strict;

use parent qw(IMPL::Object::Abstract);
require IMPL::Class::Property::Direct;

sub surrogate {
    bless {}, ref $_[0] || $_[0];
}

__PACKAGE__->static_accessor( propertyInfoClass => 'IMPL::Class::DirectPropertyInfo' );

sub new {
    my $class = shift;
    my $self = bless {}, ref($class) || $class;    
    $self->callCTOR(@_);
  
    $self;
}

sub _PropertyImplementor {
    'IMPL::Class::Property::Direct'
}

1;

__END__

=pod

=head1 SINOPSYS

=begin code

package Foo;
use parent qw(IMPL::Object);

sub CTOR {
    my ($this,$arg) = @_;
    print "Foo: $arg\n";
}

package Bar;
use parent qw(IMPL::Object);

sub CTOR {
    my ($this,$arg) = @_;
    print "Bar: $arg\n";
}

package Baz;
use parent qw(Foo Bar);

our %CTOR = (
    Foo => sub { my %args = @_; $args{Mazzi}; },
    Bar => sub { my %args = @_; $args{Fugi}; }
);

package Composite;
use parent qw(Baz Foo Bar);

our %CTOR = (
    Foo => undef,
    Bar => undef
);

sub CTOR {
    my ($this,%args) = @_;
    
    print "Composite: $args{Text}\n";
}

package main;

my $obj = new Composite(
    Text => 'Hello World!',
    Mazzi => 'Mazzi',
    Fugi => 'Fugi'
);

# will print
#
# Foo: Mazzi
# Bar: Fugi
# Bar:
# Composite: Hello World!

=end code

=head1 Description

Базовый класс для объектов, основанных на хеше.

=head1 Members

=over

=item operator C<new>(@args)

Создает экземпляр объекта и вызывает конструктор с параметрами @args.

=item operator C<surrogate>()

Создает неинициализированный экземпляр объекта.

=back

=head1 Cavearts

Нужно заметить, что директива C<use parent> работает не совсем прозрачно, если в нашем примере
класс C<Composite> наследуется от C<Baz>, а затем C<Foo>, то наследование от
C<Foo> не произойдет поскольку он уже имеется в C<Baz>. Вот не задача:)

=cut