NAME

Object::Simple - a base class to provide constructor and accessors

VERSION

Version 3.0201

SYNOPSIS

   package Book;
   use base 'Object::Simple';
   
   __PACKAGE__->attr('title');
   __PACKAGE__->attr(pages => 159);
   __PACKAGE__->attr([qw/authors categories/] => sub { [] });
   
   __PACKAGE__->class_attr('foo');
   __PACKAGE__->class_attr(foo => 1);
   __PACAKGE__->class_attr('foo', default => 1, inherit => 'scalar_copy');
   
   __PACKAGE__->dual_attr('bar');
   __PACAKGE__->dual_attr(bar => 2);
   __PACAKGE__->dual_attr('bar', default => 1, inherit => 'scalar_copy');
   
   package main;
   use Book;

   my $book = Book->new;
   print $book->pages;
   print $book->pages(5)->pages;

   my $my_book = Car->new(title => 'Good Day');
   print $book->authors(['Ken', 'Tom'])->authors;
   
   Book->foo('a');
   
   Book->bar('b');
   $book->bar('c');

Methods

new

A subclass of Object::Simple can call "new", and create a instance. "new" can receive hash or hash ref.

package Book;
use base 'Object::Simple';

package main;
my $book = Book->new;
my $book = Book->new(title => 'Good day');
my $book = Book->new({title => 'Good'});

"new" can be overrided to arrange arguments or initialize the instance.

Arguments arrange

sub new {
    my ($class, $title, $author) = @_;
    
    my $self = $class->SUPER::new(title => $title, author => $author);
    
    return $self;
}

Instance initialization

sub new {
    my $self = shift->SUPER::new(@_);
    
    # Initialization
    
    return $self;
}

attr

Create accessor.

__PACKAGE__->attr('name');
__PACKAGE__->attr([qw/name1 name2 name3/]);

A default value can be specified. If array ref, hash ref, or object is specified as a default value, that must be wrapped with sub { }.

__PACKAGE__->attr(name => 'foo');
__PACKAGE__->attr(name => sub { ... });
__PACKAGE__->attr([qw/name1 name2/] => 'foo');
__PACKAGE__->attr([qw/name1 name2/] => sub { ... });

Options can be specified.

__PACKAGE__->attr('name', default => sub {[]}, inherit => 'hash_copy');

class_attr

Create accessor for class variable.

__PACKAGE__->class_attr('name');
__PACKAGE__->class_attr([qw/name1 name2 name3/]);
__PACKAGE__->class_attr(name => 'foo');
__PACKAGE__->class_attr(name => sub { ... });

This accessor is called from package, not instance.

Book->title('BBB');

Class variables is saved to package variable "$CLASS_ATTRS". If you want to delete the value or check existence, "delete" or "exists" function is available.

delete $Book::CLASS_ATTRS->{title};
exists $Book::CLASS_ATTRS->{title};

If This class is inherited, the value is saved to package variable of subclass. For example, Book->title('Beautiful days') is saved to $Book::CLASS_ATTRS->{title}, and Magazine->title('Good days') is saved to $Magazine::CLASS_ATTRS->{title}.

package Book;
use base 'Object::Simple';

__PACKAGE__->class_attr('title');

package Magazine;
use base 'Book';

package main;

Book->title('Beautiful days'); # Saved to $Book::CLASS_ATTRS->{title}
Magazine->title('Good days');  # Saved to $Magazine::CLASS_ATTRS->{title}

dual_attr

Create accessor for a instance and class variable.

__PACKAGE__->dual_attr('name');
__PACKAGE__->dual_attr([qw/name1 name2 name3/]);
__PACKAGE__->dual_attr(name => 'foo');
__PACKAGE__->dual_attr(name => sub { ... });

If this accessor is called from a package, the value is saved to $CLASS_ATTRS. If this accessor is called from a instance, the value is saved to the instance.

Book->title('Beautiful days'); # Saved to $CLASS_ATTRS->{title};

my $book = Book->new;
$book->title('Good days'); # Saved to $book->{title};

Options

default

Define a default value.

__PACKAGE__->attr('title', default => 'Good news');

If a default value is array ref, or hash ref, or object, the value is wrapped with sub { }.

__PACKAGE__->attr('authors', default => sub{ ['Ken', 'Taro'] });
__PACKAGE__->attr('ua',      default => sub { LWP::UserAgent->new });

Default value can be written by more simple way.

__PACKAGE__->attr(title   => 'Good news');
__PACKAGE__->attr(authors => sub { ['Ken', 'Taro'] });
__PACKAGE__->attr(ua      => sub { LWP::UserAgent->new });

inherit

Package variable of super class is copied to the class at first access, If the accessor is for class. Package variable is copied to the instance, If the accessor is for instance.

"inherit" is available by "class_attr", and "dual_attr". This options is generally used with "default" value.

__PACKAGE__->dual_attr('contraints', default => sub { {} }, inherit => 'hash_copy');

"scalar_copy", "array_copy", "hash_copy" is specified as "inherit" options.

Any subroutine for inherit is also available.

__PACKAGE__->dual_attr('url', default => sub { URI->new }, 
                              inherit   => sub { shift->clone });

Prototype system

Object::Simple provide a prototype system like JavaScript.

+--------+ 
| Class1 |
+--------+ 
    |
    v
+--------+    +----------+
| Class2 | -> |instance2 |
+--------+    +----------+

"Class1" has "title" accessor using "dual_attr" with "inherit" options.

package Class1;
use base 'Object::Simple';

__PACKAGE__->dual_attr('title', default => 'Good day', inherit => 'scalar_copy');

"title" can be changed in "Class2".

package Class2;
use base Class1;

__PACKAGE__->title('Beautiful day');

This value is used when instance is created. "title" value is "Beautiful day"

package main;
my $book = Class2->new;
$book->title;

This prototype system is very useful to create castamizable class for user.

This prototype system is used in Validator::Custom and DBIx::Custom.

See Validator::Custom and DBIx::Custom.

Provide only a ability to create accessor to a class.

If you want to provide only a ability to create accessor a class, use Object::Simple::Accessor.

package YourClass;
use base 'LWP::UserAgent';

use Object::Simple::Accessor 'attr';

__PACKAGE__->attr('foo');

Similar module

This module is compatible with Mojo::Base.

If you like Mojo::Base, Object:Simple is good select for you.

Author

Yuki Kimoto, <kimoto.yuki at gmail.com>

Github http://github.com/yuki-kimoto/

I develope this module at http://github.com/yuki-kimoto/Object-Simple

Please tell me bug if you find.

Copyright & license

Copyright 2008 Yuki Kimoto, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.