Start anew
[msysgit.git] / lib / perl5 / 5.6.1 / Class / Struct.pm
blob185a8ff142c0a6e32872daea7adc1c40486dc3ac
1 package Class::Struct;
3 ## See POD after __END__
5 use 5.005_64;
7 use strict;
8 use warnings::register;
9 our(@ISA, @EXPORT, $VERSION);
11 use Carp;
13 require Exporter;
14 @ISA = qw(Exporter);
15 @EXPORT = qw(struct);
17 $VERSION = '0.59';
19 ## Tested on 5.002 and 5.003 without class membership tests:
20 my $CHECK_CLASS_MEMBERSHIP = ($] >= 5.003_95);
22 my $print = 0;
23 sub printem {
24 if (@_) { $print = shift }
25 else { $print++ }
29 package Class::Struct::Tie_ISA;
31 sub TIEARRAY {
32 my $class = shift;
33 return bless [], $class;
36 sub STORE {
37 my ($self, $index, $value) = @_;
38 Class::Struct::_subclass_error();
41 sub FETCH {
42 my ($self, $index) = @_;
43 $self->[$index];
46 sub FETCHSIZE {
47 my $self = shift;
48 return scalar(@$self);
51 sub DESTROY { }
54 sub import {
55 my $self = shift;
57 if ( @_ == 0 ) {
58 $self->export_to_level( 1, $self, @EXPORT );
59 } elsif ( @_ == 1 ) {
60 # This is admittedly a little bit silly:
61 # do we ever export anything else than 'struct'...?
62 $self->export_to_level( 1, $self, @_ );
63 } else {
64 &struct;
68 sub struct {
70 # Determine parameter list structure, one of:
71 # struct( class => [ element-list ])
72 # struct( class => { element-list })
73 # struct( element-list )
74 # Latter form assumes current package name as struct name.
76 my ($class, @decls);
77 my $base_type = ref $_[1];
78 if ( $base_type eq 'HASH' ) {
79 $class = shift;
80 @decls = %{shift()};
81 _usage_error() if @_;
83 elsif ( $base_type eq 'ARRAY' ) {
84 $class = shift;
85 @decls = @{shift()};
86 _usage_error() if @_;
88 else {
89 $base_type = 'ARRAY';
90 $class = (caller())[0];
91 @decls = @_;
94 _usage_error() if @decls % 2 == 1;
96 # Ensure we are not, and will not be, a subclass.
98 my $isa = do {
99 no strict 'refs';
100 \@{$class . '::ISA'};
102 _subclass_error() if @$isa;
103 tie @$isa, 'Class::Struct::Tie_ISA';
105 # Create constructor.
107 croak "function 'new' already defined in package $class"
108 if do { no strict 'refs'; defined &{$class . "::new"} };
110 my @methods = ();
111 my %refs = ();
112 my %arrays = ();
113 my %hashes = ();
114 my %classes = ();
115 my $got_class = 0;
116 my $out = '';
118 $out = "{\n package $class;\n use Carp;\n sub new {\n";
119 $out .= " my (\$class, \%init) = \@_;\n";
120 $out .= " \$class = __PACKAGE__ unless \@_;\n";
122 my $cnt = 0;
123 my $idx = 0;
124 my( $cmt, $name, $type, $elem );
126 if( $base_type eq 'HASH' ){
127 $out .= " my(\$r) = {};\n";
128 $cmt = '';
130 elsif( $base_type eq 'ARRAY' ){
131 $out .= " my(\$r) = [];\n";
133 while( $idx < @decls ){
134 $name = $decls[$idx];
135 $type = $decls[$idx+1];
136 push( @methods, $name );
137 if( $base_type eq 'HASH' ){
138 $elem = "{'${class}::$name'}";
140 elsif( $base_type eq 'ARRAY' ){
141 $elem = "[$cnt]";
142 ++$cnt;
143 $cmt = " # $name";
145 if( $type =~ /^\*(.)/ ){
146 $refs{$name}++;
147 $type = $1;
149 my $init = "defined(\$init{'$name'}) ? \$init{'$name'} :";
150 if( $type eq '@' ){
151 $out .= " croak 'Initializer for $name must be array reference'\n";
152 $out .= " if defined(\$init{'$name'}) && ref(\$init{'$name'}) ne 'ARRAY';\n";
153 $out .= " \$r->$elem = $init [];$cmt\n";
154 $arrays{$name}++;
156 elsif( $type eq '%' ){
157 $out .= " croak 'Initializer for $name must be hash reference'\n";
158 $out .= " if defined(\$init{'$name'}) && ref(\$init{'$name'}) ne 'HASH';\n";
159 $out .= " \$r->$elem = $init {};$cmt\n";
160 $hashes{$name}++;
162 elsif ( $type eq '$') {
163 $out .= " \$r->$elem = $init undef;$cmt\n";
165 elsif( $type =~ /^\w+(?:::\w+)*$/ ){
166 $init = "defined(\$init{'$name'}) ? \%{\$init{'$name'}} : ()";
167 $out .= " croak 'Initializer for $name must be hash reference'\n";
168 $out .= " if defined(\$init{'$name'}) && ref(\$init{'$name'}) ne 'HASH';\n";
169 $out .= " \$r->$elem = '${type}'->new($init);$cmt\n";
170 $classes{$name} = $type;
171 $got_class = 1;
173 else{
174 croak "'$type' is not a valid struct element type";
176 $idx += 2;
178 $out .= " bless \$r, \$class;\n }\n";
180 # Create accessor methods.
182 my( $pre, $pst, $sel );
183 $cnt = 0;
184 foreach $name (@methods){
185 if ( do { no strict 'refs'; defined &{$class . "::$name"} } ) {
186 warnings::warnif("function '$name' already defined, overrides struct accessor method");
188 else {
189 $pre = $pst = $cmt = $sel = '';
190 if( defined $refs{$name} ){
191 $pre = "\\(";
192 $pst = ")";
193 $cmt = " # returns ref";
195 $out .= " sub $name {$cmt\n my \$r = shift;\n";
196 if( $base_type eq 'ARRAY' ){
197 $elem = "[$cnt]";
198 ++$cnt;
200 elsif( $base_type eq 'HASH' ){
201 $elem = "{'${class}::$name'}";
203 if( defined $arrays{$name} ){
204 $out .= " my \$i;\n";
205 $out .= " \@_ ? (\$i = shift) : return \$r->$elem;\n";
206 $sel = "->[\$i]";
208 elsif( defined $hashes{$name} ){
209 $out .= " my \$i;\n";
210 $out .= " \@_ ? (\$i = shift) : return \$r->$elem;\n";
211 $sel = "->{\$i}";
213 elsif( defined $classes{$name} ){
214 if ( $CHECK_CLASS_MEMBERSHIP ) {
215 $out .= " croak '$name argument is wrong class' if \@_ && ! UNIVERSAL::isa(\$_[0], '$classes{$name}');\n";
218 $out .= " croak 'Too many args to $name' if \@_ > 1;\n";
219 $out .= " \@_ ? ($pre\$r->$elem$sel = shift$pst) : $pre\$r->$elem$sel$pst;\n";
220 $out .= " }\n";
223 $out .= "}\n1;\n";
225 print $out if $print;
226 my $result = eval $out;
227 carp $@ if $@;
230 sub _usage_error {
231 confess "struct usage error";
234 sub _subclass_error {
235 croak 'struct class cannot be a subclass (@ISA not allowed)';
238 1; # for require
241 __END__
243 =head1 NAME
245 Class::Struct - declare struct-like datatypes as Perl classes
247 =head1 SYNOPSIS
249 use Class::Struct;
250 # declare struct, based on array:
251 struct( CLASS_NAME => [ ELEMENT_NAME => ELEMENT_TYPE, ... ]);
252 # declare struct, based on hash:
253 struct( CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... });
255 package CLASS_NAME;
256 use Class::Struct;
257 # declare struct, based on array, implicit class name:
258 struct( ELEMENT_NAME => ELEMENT_TYPE, ... );
260 # Declare struct at compile time
261 use Class::Struct CLASS_NAME => [ ELEMENT_NAME => ELEMENT_TYPE, ... ];
262 use Class::Struct CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... };
264 package Myobj;
265 use Class::Struct;
266 # declare struct with four types of elements:
267 struct( s => '$', a => '@', h => '%', c => 'My_Other_Class' );
269 $obj = new Myobj; # constructor
271 # scalar type accessor:
272 $element_value = $obj->s; # element value
273 $obj->s('new value'); # assign to element
275 # array type accessor:
276 $ary_ref = $obj->a; # reference to whole array
277 $ary_element_value = $obj->a(2); # array element value
278 $obj->a(2, 'new value'); # assign to array element
280 # hash type accessor:
281 $hash_ref = $obj->h; # reference to whole hash
282 $hash_element_value = $obj->h('x'); # hash element value
283 $obj->h('x', 'new value'); # assign to hash element
285 # class type accessor:
286 $element_value = $obj->c; # object reference
287 $obj->c->method(...); # call method of object
288 $obj->c(new My_Other_Class); # assign a new object
290 =head1 DESCRIPTION
292 C<Class::Struct> exports a single function, C<struct>.
293 Given a list of element names and types, and optionally
294 a class name, C<struct> creates a Perl 5 class that implements
295 a "struct-like" data structure.
297 The new class is given a constructor method, C<new>, for creating
298 struct objects.
300 Each element in the struct data has an accessor method, which is
301 used to assign to the element and to fetch its value. The
302 default accessor can be overridden by declaring a C<sub> of the
303 same name in the package. (See Example 2.)
305 Each element's type can be scalar, array, hash, or class.
307 =head2 The C<struct()> function
309 The C<struct> function has three forms of parameter-list.
311 struct( CLASS_NAME => [ ELEMENT_LIST ]);
312 struct( CLASS_NAME => { ELEMENT_LIST });
313 struct( ELEMENT_LIST );
315 The first and second forms explicitly identify the name of the
316 class being created. The third form assumes the current package
317 name as the class name.
319 An object of a class created by the first and third forms is
320 based on an array, whereas an object of a class created by the
321 second form is based on a hash. The array-based forms will be
322 somewhat faster and smaller; the hash-based forms are more
323 flexible.
325 The class created by C<struct> must not be a subclass of another
326 class other than C<UNIVERSAL>.
328 It can, however, be used as a superclass for other classes. To facilitate
329 this, the generated constructor method uses a two-argument blessing.
330 Furthermore, if the class is hash-based, the key of each element is
331 prefixed with the class name (see I<Perl Cookbook>, Recipe 13.12).
333 A function named C<new> must not be explicitly defined in a class
334 created by C<struct>.
336 The I<ELEMENT_LIST> has the form
338 NAME => TYPE, ...
340 Each name-type pair declares one element of the struct. Each
341 element name will be defined as an accessor method unless a
342 method by that name is explicitly defined; in the latter case, a
343 warning is issued if the warning flag (B<-w>) is set.
345 =head2 Class Creation at Compile Time
347 C<Class::Struct> can create your class at compile time. The main reason
348 for doing this is obvious, so your class acts like every other class in
349 Perl. Creating your class at compile time will make the order of events
350 similar to using any other class ( or Perl module ).
352 There is no significant speed gain between compile time and run time
353 class creation, there is just a new, more standard order of events.
355 =head2 Element Types and Accessor Methods
357 The four element types -- scalar, array, hash, and class -- are
358 represented by strings -- C<'$'>, C<'@'>, C<'%'>, and a class name --
359 optionally preceded by a C<'*'>.
361 The accessor method provided by C<struct> for an element depends
362 on the declared type of the element.
364 =over
366 =item Scalar (C<'$'> or C<'*$'>)
368 The element is a scalar, and by default is initialized to C<undef>
369 (but see L<Initializing with new>).
371 The accessor's argument, if any, is assigned to the element.
373 If the element type is C<'$'>, the value of the element (after
374 assignment) is returned. If the element type is C<'*$'>, a reference
375 to the element is returned.
377 =item Array (C<'@'> or C<'*@'>)
379 The element is an array, initialized by default to C<()>.
381 With no argument, the accessor returns a reference to the
382 element's whole array (whether or not the element was
383 specified as C<'@'> or C<'*@'>).
385 With one or two arguments, the first argument is an index
386 specifying one element of the array; the second argument, if
387 present, is assigned to the array element. If the element type
388 is C<'@'>, the accessor returns the array element value. If the
389 element type is C<'*@'>, a reference to the array element is
390 returned.
392 =item Hash (C<'%'> or C<'*%'>)
394 The element is a hash, initialized by default to C<()>.
396 With no argument, the accessor returns a reference to the
397 element's whole hash (whether or not the element was
398 specified as C<'%'> or C<'*%'>).
400 With one or two arguments, the first argument is a key specifying
401 one element of the hash; the second argument, if present, is
402 assigned to the hash element. If the element type is C<'%'>, the
403 accessor returns the hash element value. If the element type is
404 C<'*%'>, a reference to the hash element is returned.
406 =item Class (C<'Class_Name'> or C<'*Class_Name'>)
408 The element's value must be a reference blessed to the named
409 class or to one of its subclasses. The element is initialized to
410 the result of calling the C<new> constructor of the named class.
412 The accessor's argument, if any, is assigned to the element. The
413 accessor will C<croak> if this is not an appropriate object
414 reference.
416 If the element type does not start with a C<'*'>, the accessor
417 returns the element value (after assignment). If the element type
418 starts with a C<'*'>, a reference to the element itself is returned.
420 =back
422 =head2 Initializing with C<new>
424 C<struct> always creates a constructor called C<new>. That constructor
425 may take a list of initializers for the various elements of the new
426 struct.
428 Each initializer is a pair of values: I<element name>C< =E<gt> >I<value>.
429 The initializer value for a scalar element is just a scalar value. The
430 initializer for an array element is an array reference. The initializer
431 for a hash is a hash reference.
433 The initializer for a class element is also a hash reference, and the
434 contents of that hash are passed to the element's own constructor.
436 See Example 3 below for an example of initialization.
438 =head1 EXAMPLES
440 =over
442 =item Example 1
444 Giving a struct element a class type that is also a struct is how
445 structs are nested. Here, C<timeval> represents a time (seconds and
446 microseconds), and C<rusage> has two elements, each of which is of
447 type C<timeval>.
449 use Class::Struct;
451 struct( rusage => {
452 ru_utime => timeval, # seconds
453 ru_stime => timeval, # microseconds
456 struct( timeval => [
457 tv_secs => '$',
458 tv_usecs => '$',
461 # create an object:
462 my $t = new rusage;
464 # $t->ru_utime and $t->ru_stime are objects of type timeval.
465 # set $t->ru_utime to 100.0 sec and $t->ru_stime to 5.0 sec.
466 $t->ru_utime->tv_secs(100);
467 $t->ru_utime->tv_usecs(0);
468 $t->ru_stime->tv_secs(5);
469 $t->ru_stime->tv_usecs(0);
471 =item Example 2
473 An accessor function can be redefined in order to provide
474 additional checking of values, etc. Here, we want the C<count>
475 element always to be nonnegative, so we redefine the C<count>
476 accessor accordingly.
478 package MyObj;
479 use Class::Struct;
481 # declare the struct
482 struct ( 'MyObj', { count => '$', stuff => '%' } );
484 # override the default accessor method for 'count'
485 sub count {
486 my $self = shift;
487 if ( @_ ) {
488 die 'count must be nonnegative' if $_[0] < 0;
489 $self->{'count'} = shift;
490 warn "Too many args to count" if @_;
492 return $self->{'count'};
495 package main;
496 $x = new MyObj;
497 print "\$x->count(5) = ", $x->count(5), "\n";
498 # prints '$x->count(5) = 5'
500 print "\$x->count = ", $x->count, "\n";
501 # prints '$x->count = 5'
503 print "\$x->count(-5) = ", $x->count(-5), "\n";
504 # dies due to negative argument!
506 =item Example 3
508 The constructor of a generated class can be passed a list
509 of I<element>=>I<value> pairs, with which to initialize the struct.
510 If no initializer is specified for a particular element, its default
511 initialization is performed instead. Initializers for non-existent
512 elements are silently ignored.
514 Note that the initializer for a nested struct is specified
515 as an anonymous hash of initializers, which is passed on to the nested
516 struct's constructor.
518 use Class::Struct;
520 struct Breed =>
522 name => '$',
523 cross => '$',
526 struct Cat =>
528 name => '$',
529 kittens => '@',
530 markings => '%',
531 breed => 'Breed',
535 my $cat = Cat->new( name => 'Socks',
536 kittens => ['Monica', 'Kenneth'],
537 markings => { socks=>1, blaze=>"white" },
538 breed => { name=>'short-hair', cross=>1 },
541 print "Once a cat called ", $cat->name, "\n";
542 print "(which was a ", $cat->breed->name, ")\n";
543 print "had two kittens: ", join(' and ', @{$cat->kittens}), "\n";
545 =back
547 =head1 Author and Modification History
549 Modified by Casey Tweten, 2000-11-08, v0.59.
551 Added the ability for compile time class creation.
553 Modified by Damian Conway, 1999-03-05, v0.58.
555 Added handling of hash-like arg list to class ctor.
557 Changed to two-argument blessing in ctor to support
558 derivation from created classes.
560 Added classname prefixes to keys in hash-based classes
561 (refer to "Perl Cookbook", Recipe 13.12 for rationale).
563 Corrected behaviour of accessors for '*@' and '*%' struct
564 elements. Package now implements documented behaviour when
565 returning a reference to an entire hash or array element.
566 Previously these were returned as a reference to a reference
567 to the element.
569 Renamed to C<Class::Struct> and modified by Jim Miner, 1997-04-02.
571 members() function removed.
572 Documentation corrected and extended.
573 Use of struct() in a subclass prohibited.
574 User definition of accessor allowed.
575 Treatment of '*' in element types corrected.
576 Treatment of classes as element types corrected.
577 Class name to struct() made optional.
578 Diagnostic checks added.
580 Originally C<Class::Template> by Dean Roehrich.
582 # Template.pm --- struct/member template builder
583 # 12mar95
584 # Dean Roehrich
586 # changes/bugs fixed since 28nov94 version:
587 # - podified
588 # changes/bugs fixed since 21nov94 version:
589 # - Fixed examples.
590 # changes/bugs fixed since 02sep94 version:
591 # - Moved to Class::Template.
592 # changes/bugs fixed since 20feb94 version:
593 # - Updated to be a more proper module.
594 # - Added "use strict".
595 # - Bug in build_methods, was using @var when @$var needed.
596 # - Now using my() rather than local().
598 # Uses perl5 classes to create nested data types.
599 # This is offered as one implementation of Tom Christiansen's "structs.pl"
600 # idea.
602 =cut