NAME
Venus::Meta - Class Metadata
ABSTRACT
Class Metadata for Perl 5
SYNOPSIS
package Person;
use Venus::Class;
attr 'fname';
attr 'lname';
package Identity;
use Venus::Role;
attr 'id';
attr 'login';
attr 'password';
sub EXPORT {
# explicitly declare routines to be consumed
['id', 'login', 'password']
}
package Authenticable;
use Venus::Role;
sub authenticate {
return true;
}
sub AUDIT {
my ($self, $from) = @_;
# ensure the caller has a login and password when consumed
die "${from} missing the login attribute" if !$from->can('login');
die "${from} missing the password attribute" if !$from->can('password');
}
sub EXPORT {
# explicitly declare routines to be consumed
['authenticate']
}
package Novice;
use Venus::Mixin;
sub points {
100
}
package User;
use Venus::Class 'attr', 'base', 'mixin', 'test', 'with';
base 'Person';
with 'Identity';
mixin 'Novice';
attr 'email';
test 'Authenticable';
sub valid {
my ($self) = @_;
return $self->login && $self->password ? true : false;
}
package main;
my $user = User->new(
fname => 'Elliot',
lname => 'Alderson',
);
my $meta = $user->meta;
# bless({name => 'User'}, 'Venus::Meta')
DESCRIPTION
This package provides configuration information for Venus derived classes, roles, and interfaces.
METHODS
This package provides the following methods:
attr
attr(Str $name) (Bool)
The attr method returns true or false if the package referenced has the attribute accessor named.
Since 1.00
attrs
attrs() (ArrayRef)
The attrs method returns all of the attributes composed into the package referenced.
Since 1.00
- attrs example 1
-
# given: synopsis package main; my $attrs = $meta->attrs; # [ # 'email', # 'fname', # 'id', # 'lname', # 'login', # 'password', # ]
base
base(Str $name) (Bool)
The base method returns true or false if the package referenced has inherited the package named.
Since 1.00
bases
bases() (ArrayRef)
The bases method returns returns all of the packages inherited by the package referenced.
Since 1.00
- bases example 1
-
# given: synopsis package main; my $bases = $meta->bases; # [ # 'Person', # 'Venus::Core::Class', # 'Venus::Core', # ]
data
data() (HashRef)
The data method returns a data structure representing the shallow configuration for the package referenced.
Since 1.00
- data example 1
-
# given: synopsis package main; my $data = $meta->data; # { # 'ATTR' => { # 'email' => [ # 'email' # ] # }, # 'BASE' => { # 'Person' => [ # 'Person' # ] # }, # 'ROLE' => { # 'Authenticable' => [ # 'Authenticable' # ], # 'Identity' => [ # 'Identity' # ] # } # }
emit
emit(Str $name, Any @args) (Any)
The emit method invokes the lifecycle hook specified on the underlying package and returns the result.
Since 2.91
find
find(Str $type, Str $name) (Tuple[Str,Tuple[Int,ArrayRef]])
The find method finds and returns the first configuration for the property type specified. This method uses the "search" method to search roles
, bases
, mixins
, and the source package, in the order listed. The "property type" can be any one of attr
, base
, mixin
, or role
.
Since 1.02
- find example 2
-
# given: synopsis package main; my $find = $meta->find('attr', 'id'); # ['Identity', [ 1, ['id']]]
- find example 3
-
# given: synopsis package main; my $find = $meta->find('sub', 'valid'); # ['User', [1, [sub {...}]]]
- find example 4
-
# given: synopsis package main; my $find = $meta->find('sub', 'authenticate'); # ['Authenticable', [1, [sub {...}]]]
local
local(Str $type) (ArrayRef)
The local method returns the names of properties defined in the package directly (not inherited) for the property type specified. The $type
provided can be either attrs
, bases
, roles
, or subs
.
Since 1.02
- local example 2
-
# given: synopsis package main; my $bases = $meta->local('bases'); # ['Person', 'Venus::Core::Class']
- local example 3
-
# given: synopsis package main; my $roles = $meta->local('roles'); # ['Identity', 'Authenticable']
- local example 4
-
# given: synopsis package main; my $subs = $meta->local('subs'); # [ # 'attr', # 'authenticate', # 'base', # 'email', # 'false', # 'id', # 'login', # 'password', # 'test', # 'true', # 'valid', # 'with', # ]
mixin
mixin(Str $name) (Bool)
The mixin method returns true or false if the package referenced has consumed the mixin named.
Since 1.02
mixins
mixins() (ArrayRef)
The mixins method returns all of the mixins composed into the package referenced.
Since 1.02
new
new(Any %args | HashRef $args) (Object)
The new method returns a new instance of this package.
Since 1.00
- new example 1
-
# given: synopsis package main; $meta = Venus::Meta->new(name => 'User'); # bless({name => 'User'}, 'Venus::Meta')
- new example 2
-
# given: synopsis package main; $meta = Venus::Meta->new({name => 'User'}); # bless({name => 'User'}, 'Venus::Meta')
role
role(Str $name) (Bool)
The role method returns true or false if the package referenced has consumed the role named.
Since 1.00
roles
roles() (ArrayRef)
The roles method returns all of the roles composed into the package referenced.
Since 1.00
- roles example 1
-
# given: synopsis package main; my $roles = $meta->roles; # [ # 'Identity', # 'Authenticable' # ]
search
search(Str $from, Str $type, Str $name) (ArrayRef[Tuple[Str,Tuple[Int,ArrayRef]]])
The search method searches the source specified and returns the configurations for the property type specified. The source can be any one of bases
, roles
, mixins
, or self
for the source package. The "property type" can be any one of attr
, base
, mixin
, or role
.
Since 1.02
- search example 2
-
# given: synopsis package main; my $search = $meta->search('roles', 'attr', 'id'); # [['Identity', [ 1, ['id']]]]
- search example 3
-
# given: synopsis package main; my $search = $meta->search('self', 'sub', 'valid'); # [['User', [1, [sub {...}]]]]
- search example 4
-
# given: synopsis package main; my $search = $meta->search('self', 'sub', 'authenticate'); # [['User', [1, [sub {...}]]]]
sub
sub(Str $name) (Bool)
The sub method returns true or false if the package referenced has the subroutine named on the package directly, or any of its superclasses.
Since 1.00
subs
subs() (ArrayRef)
The subs method returns all of the subroutines composed into the package referenced.
Since 1.00
- subs example 1
-
# given: synopsis package main; my $subs = $meta->subs; # [ # 'attr', ..., # 'base', # 'email', # 'false', # 'fname', ..., # 'id', # 'lname', # 'login', # 'new', ..., # 'role', # 'test', # 'true', # 'with', ..., # ]
AUTHORS
Awncorp, awncorp@cpan.org
LICENSE
Copyright (C) 2000, Al Newkirk.
This program is free software, you can redistribute it and/or modify it under the terms of the Apache license version 2.0.