Puns aside, I'm trying to implement an import method in my Perl class to instantiate a Data object, which is essentially a glorified array of hashrefs, from a proper array of hashrefs.
Here's an example of how I plan to use it:
# Pull in the data
my $data = Data->import(
[
{ a => 1, b => 7, c => 3},
{ a => 7, b => 9, c => 2},
]
);
$data->manipulate; # Use package methods
My import implementation is as follows:
package Data;
sub initialize {
my $class = shift;
my $data = [];
bless $data, $class;
return $data;
}
sub import {
my ( $class, $data ) = @_;
bless $data, $class;
return $data;
}
1;
The surprising thing is that Perl reports the error at compile-time (note the BEGIN block):
Can't bless non-reference value at Data.pm line 51.
BEGIN failed--compilation aborted at myScript.pl line 8.
perldiag didn't add much clarity to what's going on:
Can't bless non-reference value
(F)Only hard references may be blessed. This is how Perl "enforces" encapsulation of objects. Seeperlobj.
I even tried initializing the object and adding the data in two separate steps:
sub import { #< Another constructor >
my ( $class, $data ) = @_;
my $obj = $class->initialize;
push @$obj, @$data;
return $obj;
}
This resulted in the following compile-time error:
Can't use an undefined value as an ARRAY reference...
BEGIN failed--compilation aborted at...
Two questions:
- What's wrong with what I've done?
- Could someone please clarify the
perldiagexplanation of this compile-time error?

perldiagto understand warning/error messages? – Zaid Sep 11 '11 at 10:30print "import got: @_\n";) That would have let you know that what you thought was an array actually wasn't. Next, add a guard, something likeref $data eq 'ARRAY' or confess "not an array: '$data'";and you will find out where the offending call is coming from. (confessis fromuse Carp 'confess';and provides a full backtrace) Keep that line in, as it may help you immediately catch other errors in the future, perhaps changingconfesstocroak. – Eric Strom Sep 11 '11 at 20:53Acme::Damnmodule (which does the opposite ofbless) – Zaid Nov 14 '11 at 14:32