summaryrefslogtreecommitdiff
path: root/lib/Class/Struct.pm
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-09-05 12:07:53 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-09-05 12:07:53 +0000
commitf8aada623c35865871672070ed5ed83d6d2a63a7 (patch)
tree7ea014a6cc200ab76ab30e153bbc91ed587c7255 /lib/Class/Struct.pm
parent328bf3738a02f1c1bfa010034ca56aee254f8a25 (diff)
downloadperl-f8aada623c35865871672070ed5ed83d6d2a63a7.tar.gz
From Damian: Class::Struct was unable to define
recursive classes. After the patch an object reference (rather than a hash) is required to initialize an object attribute. If no such initializer is given to the constructor, object attributes are now default initialized to C<undef>. p4raw-id: //depot/perl@11877
Diffstat (limited to 'lib/Class/Struct.pm')
-rw-r--r--lib/Class/Struct.pm29
1 files changed, 21 insertions, 8 deletions
diff --git a/lib/Class/Struct.pm b/lib/Class/Struct.pm
index 5c68bf34d3..4685bd1cef 100644
--- a/lib/Class/Struct.pm
+++ b/lib/Class/Struct.pm
@@ -14,7 +14,7 @@ require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(struct);
-$VERSION = '0.60';
+$VERSION = '0.61';
## Tested on 5.002 and 5.003 without class membership tests:
my $CHECK_CLASS_MEMBERSHIP = ($] >= 5.003_95);
@@ -163,10 +163,10 @@ sub struct {
$out .= " \$r->$elem = $init undef;$cmt\n";
}
elsif( $type =~ /^\w+(?:::\w+)*$/ ){
- $init = "defined(\$init{'$name'}) ? \%{\$init{'$name'}} : ()";
- $out .= " croak 'Initializer for $name must be hash reference'\n";
- $out .= " if defined(\$init{'$name'}) && ref(\$init{'$name'}) ne 'HASH';\n";
- $out .= " \$r->$elem = '${type}'->new($init);$cmt\n";
+ $init = "defined(\$init{'$name'}) ? \$init{'$name'} : undef";
+ $out .= " croak 'Initializer for $name must be $type reference'\n";
+ $out .= " if defined(\$init{'$name'}) && !UNIVERSAL::isa(\$init{'$name'}, '$type');\n";
+ $out .= " \$r->$elem = $init;$cmt\n";
$classes{$name} = $type;
$got_class = 1;
}
@@ -440,8 +440,8 @@ The initializer value for a scalar element is just a scalar value. The
initializer for an array element is an array reference. The initializer
for a hash is a hash reference.
-The initializer for a class element is also a hash reference, and the
-contents of that hash are passed to the element's own constructor.
+The initializer for a class element is an object of the corresponding class,
+(or of one of its subclasses).
See Example 3 below for an example of initialization.
@@ -545,7 +545,7 @@ struct's constructor.
my $cat = Cat->new( name => 'Socks',
kittens => ['Monica', 'Kenneth'],
markings => { socks=>1, blaze=>"white" },
- breed => { name=>'short-hair', cross=>1 },
+ breed => Breed->new(name=>'short-hair', cross=>1),
);
print "Once a cat called ", $cat->name, "\n";
@@ -556,6 +556,19 @@ struct's constructor.
=head1 Author and Modification History
+Modified by Damian Conway, 2001-09-04, v0.61.
+
+ Removed implicit construction of nested objects.
+ This helpfulness was fraught with problems:
+ * the class's constructor might not be called 'new'
+ * the class might not have a no-argument constructor
+ * "recursive" data structures don't work well:
+ package Person;
+ struct { mother => 'Person', father => 'Person'};
+ It is now necessary to pass an object reference to initialize a
+ nested object.
+
+
Modified by Casey West, 2000-11-08, v0.59.
Added the ability for compile time class creation.