| MooseX-GlobRef documentation | Contained in the MooseX-GlobRef distribution. |
MooseX::GlobRef - Store a Moose object in glob reference
package My::IO;
use Moose;
use MooseX::GlobRef;
has 'file' => ( is => 'ro', isa => 'Str', required => 1 );
sub open {
my $fh = shift;
open $fh, $fh->file or confess "cannot open";
return $fh;
}
sub getlines {
my $fh = shift;
return readline $fh;
}
my $io = My::IO->new( file => '/etc/passwd' );
print "::::::::::::::\n";
print $io->file, "\n";
print "::::::::::::::\n";
$io->open;
print $io->getlines;
This module allows to store Moose object in glob reference of file handle. The class attributes will be stored in hash slot associated with glob reference. It allows to create a Moose version of IO::Handle.
The attributes can be accessed directly with following expression:
my $hashref = \%{*$self};
print $hashref->{key};
or shorter:
print *$self->{key};
but the standard accessors should be used instead:
print $self->key;
See Moose::Exporter.
Piotr Roszatycki <dexter@cpan.org>
Copyright (c) 2007, 2008, 2009, 2010 Piotr Roszatycki <dexter@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as perl itself.
| MooseX-GlobRef documentation | Contained in the MooseX-GlobRef distribution. |
#!/usr/bin/perl -c package MooseX::GlobRef;
use 5.006; use strict; use warnings; our $VERSION = '0.0701'; use Moose 0.94 (); use Moose::Exporter; use Moose::Util::MetaRole; use MooseX::GlobRef::Role::Object; use MooseX::GlobRef::Role::Meta::Instance; Moose::Exporter->setup_import_methods();
sub init_meta { my (undef, %args) = @_; Moose->init_meta(%args); my $caller = $args{for_class}; Moose::Util::MetaRole::apply_metaroles( for => $caller, class_metaroles => { instance => [ 'MooseX::GlobRef::Role::Meta::Instance' ], }, ); Moose::Util::MetaRole::apply_base_class_roles( for => $caller, roles => [ 'MooseX::GlobRef::Role::Object' ], ); return $caller->meta(); }; 1;