Struct.pm 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637
  1. package Class::Struct;
  2. ## See POD after __END__
  3. use 5.006_001;
  4. use strict;
  5. use warnings::register;
  6. our(@ISA, @EXPORT, $VERSION);
  7. use Carp;
  8. require Exporter;
  9. @ISA = qw(Exporter);
  10. @EXPORT = qw(struct);
  11. $VERSION = '0.65';
  12. my $print = 0;
  13. sub printem {
  14. if (@_) { $print = shift }
  15. else { $print++ }
  16. }
  17. {
  18. package Class::Struct::Tie_ISA;
  19. sub TIEARRAY {
  20. my $class = shift;
  21. return bless [], $class;
  22. }
  23. sub STORE {
  24. my ($self, $index, $value) = @_;
  25. Class::Struct::_subclass_error();
  26. }
  27. sub FETCH {
  28. my ($self, $index) = @_;
  29. $self->[$index];
  30. }
  31. sub FETCHSIZE {
  32. my $self = shift;
  33. return scalar(@$self);
  34. }
  35. sub DESTROY { }
  36. }
  37. sub import {
  38. my $self = shift;
  39. if ( @_ == 0 ) {
  40. $self->export_to_level( 1, $self, @EXPORT );
  41. } elsif ( @_ == 1 ) {
  42. # This is admittedly a little bit silly:
  43. # do we ever export anything else than 'struct'...?
  44. $self->export_to_level( 1, $self, @_ );
  45. } else {
  46. goto &struct;
  47. }
  48. }
  49. sub struct {
  50. # Determine parameter list structure, one of:
  51. # struct( class => [ element-list ])
  52. # struct( class => { element-list })
  53. # struct( element-list )
  54. # Latter form assumes current package name as struct name.
  55. my ($class, @decls);
  56. my $base_type = ref $_[1];
  57. if ( $base_type eq 'HASH' ) {
  58. $class = shift;
  59. @decls = %{shift()};
  60. _usage_error() if @_;
  61. }
  62. elsif ( $base_type eq 'ARRAY' ) {
  63. $class = shift;
  64. @decls = @{shift()};
  65. _usage_error() if @_;
  66. }
  67. else {
  68. $base_type = 'ARRAY';
  69. $class = (caller())[0];
  70. @decls = @_;
  71. }
  72. _usage_error() if @decls % 2 == 1;
  73. # Ensure we are not, and will not be, a subclass.
  74. my $isa = do {
  75. no strict 'refs';
  76. \@{$class . '::ISA'};
  77. };
  78. _subclass_error() if @$isa;
  79. tie @$isa, 'Class::Struct::Tie_ISA';
  80. # Create constructor.
  81. croak "function 'new' already defined in package $class"
  82. if do { no strict 'refs'; defined &{$class . "::new"} };
  83. my @methods = ();
  84. my %refs = ();
  85. my %arrays = ();
  86. my %hashes = ();
  87. my %classes = ();
  88. my $got_class = 0;
  89. my $out = '';
  90. $out = "{\n package $class;\n use Carp;\n sub new {\n";
  91. $out .= " my (\$class, \%init) = \@_;\n";
  92. $out .= " \$class = __PACKAGE__ unless \@_;\n";
  93. my $cnt = 0;
  94. my $idx = 0;
  95. my( $cmt, $name, $type, $elem );
  96. if( $base_type eq 'HASH' ){
  97. $out .= " my(\$r) = {};\n";
  98. $cmt = '';
  99. }
  100. elsif( $base_type eq 'ARRAY' ){
  101. $out .= " my(\$r) = [];\n";
  102. }
  103. $out .= " bless \$r, \$class;\n\n";
  104. while( $idx < @decls ){
  105. $name = $decls[$idx];
  106. $type = $decls[$idx+1];
  107. push( @methods, $name );
  108. if( $base_type eq 'HASH' ){
  109. $elem = "{'${class}::$name'}";
  110. }
  111. elsif( $base_type eq 'ARRAY' ){
  112. $elem = "[$cnt]";
  113. ++$cnt;
  114. $cmt = " # $name";
  115. }
  116. if( $type =~ /^\*(.)/ ){
  117. $refs{$name}++;
  118. $type = $1;
  119. }
  120. my $init = "defined(\$init{'$name'}) ? \$init{'$name'} :";
  121. if( $type eq '@' ){
  122. $out .= " croak 'Initializer for $name must be array reference'\n";
  123. $out .= " if defined(\$init{'$name'}) && ref(\$init{'$name'}) ne 'ARRAY';\n";
  124. $out .= " \$r->$name( $init [] );$cmt\n";
  125. $arrays{$name}++;
  126. }
  127. elsif( $type eq '%' ){
  128. $out .= " croak 'Initializer for $name must be hash reference'\n";
  129. $out .= " if defined(\$init{'$name'}) && ref(\$init{'$name'}) ne 'HASH';\n";
  130. $out .= " \$r->$name( $init {} );$cmt\n";
  131. $hashes{$name}++;
  132. }
  133. elsif ( $type eq '$') {
  134. $out .= " \$r->$name( $init undef );$cmt\n";
  135. }
  136. elsif( $type =~ /^\w+(?:::\w+)*$/ ){
  137. $out .= " if (defined(\$init{'$name'})) {\n";
  138. $out .= " if (ref \$init{'$name'} eq 'HASH')\n";
  139. $out .= " { \$r->$name( $type->new(\%{\$init{'$name'}}) ) } $cmt\n";
  140. $out .= " elsif (UNIVERSAL::isa(\$init{'$name'}, '$type'))\n";
  141. $out .= " { \$r->$name( \$init{'$name'} ) } $cmt\n";
  142. $out .= " else { croak 'Initializer for $name must be hash or $type reference' }\n";
  143. $out .= " }\n";
  144. $classes{$name} = $type;
  145. $got_class = 1;
  146. }
  147. else{
  148. croak "'$type' is not a valid struct element type";
  149. }
  150. $idx += 2;
  151. }
  152. $out .= "\n \$r;\n}\n";
  153. # Create accessor methods.
  154. my( $pre, $pst, $sel );
  155. $cnt = 0;
  156. foreach $name (@methods){
  157. if ( do { no strict 'refs'; defined &{$class . "::$name"} } ) {
  158. warnings::warnif("function '$name' already defined, overrides struct accessor method");
  159. }
  160. else {
  161. $pre = $pst = $cmt = $sel = '';
  162. if( defined $refs{$name} ){
  163. $pre = "\\(";
  164. $pst = ")";
  165. $cmt = " # returns ref";
  166. }
  167. $out .= " sub $name {$cmt\n my \$r = shift;\n";
  168. if( $base_type eq 'ARRAY' ){
  169. $elem = "[$cnt]";
  170. ++$cnt;
  171. }
  172. elsif( $base_type eq 'HASH' ){
  173. $elem = "{'${class}::$name'}";
  174. }
  175. if( defined $arrays{$name} ){
  176. $out .= " my \$i;\n";
  177. $out .= " \@_ ? (\$i = shift) : return \$r->$elem;\n";
  178. $out .= " if (ref(\$i) eq 'ARRAY' && !\@_) { \$r->$elem = \$i; return \$r }\n";
  179. $sel = "->[\$i]";
  180. }
  181. elsif( defined $hashes{$name} ){
  182. $out .= " my \$i;\n";
  183. $out .= " \@_ ? (\$i = shift) : return \$r->$elem;\n";
  184. $out .= " if (ref(\$i) eq 'HASH' && !\@_) { \$r->$elem = \$i; return \$r }\n";
  185. $sel = "->{\$i}";
  186. }
  187. elsif( defined $classes{$name} ){
  188. $out .= " croak '$name argument is wrong class' if \@_ && ! UNIVERSAL::isa(\$_[0], '$classes{$name}');\n";
  189. }
  190. $out .= " croak 'Too many args to $name' if \@_ > 1;\n";
  191. $out .= " \@_ ? ($pre\$r->$elem$sel = shift$pst) : $pre\$r->$elem$sel$pst;\n";
  192. $out .= " }\n";
  193. }
  194. }
  195. $out .= "}\n1;\n";
  196. print $out if $print;
  197. my $result = eval $out;
  198. carp $@ if $@;
  199. }
  200. sub _usage_error {
  201. confess "struct usage error";
  202. }
  203. sub _subclass_error {
  204. croak 'struct class cannot be a subclass (@ISA not allowed)';
  205. }
  206. 1; # for require
  207. __END__
  208. =head1 NAME
  209. Class::Struct - declare struct-like datatypes as Perl classes
  210. =head1 SYNOPSIS
  211. use Class::Struct;
  212. # declare struct, based on array:
  213. struct( CLASS_NAME => [ ELEMENT_NAME => ELEMENT_TYPE, ... ]);
  214. # declare struct, based on hash:
  215. struct( CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... });
  216. package CLASS_NAME;
  217. use Class::Struct;
  218. # declare struct, based on array, implicit class name:
  219. struct( ELEMENT_NAME => ELEMENT_TYPE, ... );
  220. # Declare struct at compile time
  221. use Class::Struct CLASS_NAME => [ELEMENT_NAME => ELEMENT_TYPE, ...];
  222. use Class::Struct CLASS_NAME => {ELEMENT_NAME => ELEMENT_TYPE, ...};
  223. # declare struct at compile time, based on array, implicit
  224. # class name:
  225. package CLASS_NAME;
  226. use Class::Struct ELEMENT_NAME => ELEMENT_TYPE, ... ;
  227. package Myobj;
  228. use Class::Struct;
  229. # declare struct with four types of elements:
  230. struct( s => '$', a => '@', h => '%', c => 'My_Other_Class' );
  231. $obj = new Myobj; # constructor
  232. # scalar type accessor:
  233. $element_value = $obj->s; # element value
  234. $obj->s('new value'); # assign to element
  235. # array type accessor:
  236. $ary_ref = $obj->a; # reference to whole array
  237. $ary_element_value = $obj->a(2); # array element value
  238. $obj->a(2, 'new value'); # assign to array element
  239. # hash type accessor:
  240. $hash_ref = $obj->h; # reference to whole hash
  241. $hash_element_value = $obj->h('x'); # hash element value
  242. $obj->h('x', 'new value'); # assign to hash element
  243. # class type accessor:
  244. $element_value = $obj->c; # object reference
  245. $obj->c->method(...); # call method of object
  246. $obj->c(new My_Other_Class); # assign a new object
  247. =head1 DESCRIPTION
  248. C<Class::Struct> exports a single function, C<struct>.
  249. Given a list of element names and types, and optionally
  250. a class name, C<struct> creates a Perl 5 class that implements
  251. a "struct-like" data structure.
  252. The new class is given a constructor method, C<new>, for creating
  253. struct objects.
  254. Each element in the struct data has an accessor method, which is
  255. used to assign to the element and to fetch its value. The
  256. default accessor can be overridden by declaring a C<sub> of the
  257. same name in the package. (See Example 2.)
  258. Each element's type can be scalar, array, hash, or class.
  259. =head2 The C<struct()> function
  260. The C<struct> function has three forms of parameter-list.
  261. struct( CLASS_NAME => [ ELEMENT_LIST ]);
  262. struct( CLASS_NAME => { ELEMENT_LIST });
  263. struct( ELEMENT_LIST );
  264. The first and second forms explicitly identify the name of the
  265. class being created. The third form assumes the current package
  266. name as the class name.
  267. An object of a class created by the first and third forms is
  268. based on an array, whereas an object of a class created by the
  269. second form is based on a hash. The array-based forms will be
  270. somewhat faster and smaller; the hash-based forms are more
  271. flexible.
  272. The class created by C<struct> must not be a subclass of another
  273. class other than C<UNIVERSAL>.
  274. It can, however, be used as a superclass for other classes. To facilitate
  275. this, the generated constructor method uses a two-argument blessing.
  276. Furthermore, if the class is hash-based, the key of each element is
  277. prefixed with the class name (see I<Perl Cookbook>, Recipe 13.12).
  278. A function named C<new> must not be explicitly defined in a class
  279. created by C<struct>.
  280. The I<ELEMENT_LIST> has the form
  281. NAME => TYPE, ...
  282. Each name-type pair declares one element of the struct. Each
  283. element name will be defined as an accessor method unless a
  284. method by that name is explicitly defined; in the latter case, a
  285. warning is issued if the warning flag (B<-w>) is set.
  286. =head2 Class Creation at Compile Time
  287. C<Class::Struct> can create your class at compile time. The main reason
  288. for doing this is obvious, so your class acts like every other class in
  289. Perl. Creating your class at compile time will make the order of events
  290. similar to using any other class ( or Perl module ).
  291. There is no significant speed gain between compile time and run time
  292. class creation, there is just a new, more standard order of events.
  293. =head2 Element Types and Accessor Methods
  294. The four element types -- scalar, array, hash, and class -- are
  295. represented by strings -- C<'$'>, C<'@'>, C<'%'>, and a class name --
  296. optionally preceded by a C<'*'>.
  297. The accessor method provided by C<struct> for an element depends
  298. on the declared type of the element.
  299. =over 4
  300. =item Scalar (C<'$'> or C<'*$'>)
  301. The element is a scalar, and by default is initialized to C<undef>
  302. (but see L<Initializing with new>).
  303. The accessor's argument, if any, is assigned to the element.
  304. If the element type is C<'$'>, the value of the element (after
  305. assignment) is returned. If the element type is C<'*$'>, a reference
  306. to the element is returned.
  307. =item Array (C<'@'> or C<'*@'>)
  308. The element is an array, initialized by default to C<()>.
  309. With no argument, the accessor returns a reference to the
  310. element's whole array (whether or not the element was
  311. specified as C<'@'> or C<'*@'>).
  312. With one or two arguments, the first argument is an index
  313. specifying one element of the array; the second argument, if
  314. present, is assigned to the array element. If the element type
  315. is C<'@'>, the accessor returns the array element value. If the
  316. element type is C<'*@'>, a reference to the array element is
  317. returned.
  318. As a special case, when the accessor is called with an array reference
  319. as the sole argument, this causes an assignment of the whole array element.
  320. The object reference is returned.
  321. =item Hash (C<'%'> or C<'*%'>)
  322. The element is a hash, initialized by default to C<()>.
  323. With no argument, the accessor returns a reference to the
  324. element's whole hash (whether or not the element was
  325. specified as C<'%'> or C<'*%'>).
  326. With one or two arguments, the first argument is a key specifying
  327. one element of the hash; the second argument, if present, is
  328. assigned to the hash element. If the element type is C<'%'>, the
  329. accessor returns the hash element value. If the element type is
  330. C<'*%'>, a reference to the hash element is returned.
  331. As a special case, when the accessor is called with a hash reference
  332. as the sole argument, this causes an assignment of the whole hash element.
  333. The object reference is returned.
  334. =item Class (C<'Class_Name'> or C<'*Class_Name'>)
  335. The element's value must be a reference blessed to the named
  336. class or to one of its subclasses. The element is not initialized
  337. by default.
  338. The accessor's argument, if any, is assigned to the element. The
  339. accessor will C<croak> if this is not an appropriate object
  340. reference.
  341. If the element type does not start with a C<'*'>, the accessor
  342. returns the element value (after assignment). If the element type
  343. starts with a C<'*'>, a reference to the element itself is returned.
  344. =back
  345. =head2 Initializing with C<new>
  346. C<struct> always creates a constructor called C<new>. That constructor
  347. may take a list of initializers for the various elements of the new
  348. struct.
  349. Each initializer is a pair of values: I<element name>C< =E<gt> >I<value>.
  350. The initializer value for a scalar element is just a scalar value. The
  351. initializer for an array element is an array reference. The initializer
  352. for a hash is a hash reference.
  353. The initializer for a class element is an object of the corresponding class,
  354. or of one of it's subclasses, or a reference to a hash containing named
  355. arguments to be passed to the element's constructor.
  356. See Example 3 below for an example of initialization.
  357. =head1 EXAMPLES
  358. =over 4
  359. =item Example 1
  360. Giving a struct element a class type that is also a struct is how
  361. structs are nested. Here, C<Timeval> represents a time (seconds and
  362. microseconds), and C<Rusage> has two elements, each of which is of
  363. type C<Timeval>.
  364. use Class::Struct;
  365. struct( Rusage => {
  366. ru_utime => 'Timeval', # user time used
  367. ru_stime => 'Timeval', # system time used
  368. });
  369. struct( Timeval => [
  370. tv_secs => '$', # seconds
  371. tv_usecs => '$', # microseconds
  372. ]);
  373. # create an object:
  374. my $t = Rusage->new(ru_utime=>Timeval->new(),
  375. ru_stime=>Timeval->new());
  376. # $t->ru_utime and $t->ru_stime are objects of type Timeval.
  377. # set $t->ru_utime to 100.0 sec and $t->ru_stime to 5.0 sec.
  378. $t->ru_utime->tv_secs(100);
  379. $t->ru_utime->tv_usecs(0);
  380. $t->ru_stime->tv_secs(5);
  381. $t->ru_stime->tv_usecs(0);
  382. =item Example 2
  383. An accessor function can be redefined in order to provide
  384. additional checking of values, etc. Here, we want the C<count>
  385. element always to be nonnegative, so we redefine the C<count>
  386. accessor accordingly.
  387. package MyObj;
  388. use Class::Struct;
  389. # declare the struct
  390. struct ( 'MyObj', { count => '$', stuff => '%' } );
  391. # override the default accessor method for 'count'
  392. sub count {
  393. my $self = shift;
  394. if ( @_ ) {
  395. die 'count must be nonnegative' if $_[0] < 0;
  396. $self->{'MyObj::count'} = shift;
  397. warn "Too many args to count" if @_;
  398. }
  399. return $self->{'MyObj::count'};
  400. }
  401. package main;
  402. $x = new MyObj;
  403. print "\$x->count(5) = ", $x->count(5), "\n";
  404. # prints '$x->count(5) = 5'
  405. print "\$x->count = ", $x->count, "\n";
  406. # prints '$x->count = 5'
  407. print "\$x->count(-5) = ", $x->count(-5), "\n";
  408. # dies due to negative argument!
  409. =item Example 3
  410. The constructor of a generated class can be passed a list
  411. of I<element>=>I<value> pairs, with which to initialize the struct.
  412. If no initializer is specified for a particular element, its default
  413. initialization is performed instead. Initializers for non-existent
  414. elements are silently ignored.
  415. Note that the initializer for a nested class may be specified as
  416. an object of that class, or as a reference to a hash of initializers
  417. that are passed on to the nested struct's constructor.
  418. use Class::Struct;
  419. struct Breed =>
  420. {
  421. name => '$',
  422. cross => '$',
  423. };
  424. struct Cat =>
  425. [
  426. name => '$',
  427. kittens => '@',
  428. markings => '%',
  429. breed => 'Breed',
  430. ];
  431. my $cat = Cat->new( name => 'Socks',
  432. kittens => ['Monica', 'Kenneth'],
  433. markings => { socks=>1, blaze=>"white" },
  434. breed => Breed->new(name=>'short-hair', cross=>1),
  435. or: breed => {name=>'short-hair', cross=>1},
  436. );
  437. print "Once a cat called ", $cat->name, "\n";
  438. print "(which was a ", $cat->breed->name, ")\n";
  439. print "had 2 kittens: ", join(' and ', @{$cat->kittens}), "\n";
  440. =back
  441. =head1 Author and Modification History
  442. Modified by Damian Conway, 2001-09-10, v0.62.
  443. Modified implicit construction of nested objects.
  444. Now will also take an object ref instead of requiring a hash ref.
  445. Also default initializes nested object attributes to undef, rather
  446. than calling object constructor without args
  447. Original over-helpfulness was fraught with problems:
  448. * the class's constructor might not be called 'new'
  449. * the class might not have a hash-like-arguments constructor
  450. * the class might not have a no-argument constructor
  451. * "recursive" data structures didn't work well:
  452. package Person;
  453. struct { mother => 'Person', father => 'Person'};
  454. Modified by Casey West, 2000-11-08, v0.59.
  455. Added the ability for compile time class creation.
  456. Modified by Damian Conway, 1999-03-05, v0.58.
  457. Added handling of hash-like arg list to class ctor.
  458. Changed to two-argument blessing in ctor to support
  459. derivation from created classes.
  460. Added classname prefixes to keys in hash-based classes
  461. (refer to "Perl Cookbook", Recipe 13.12 for rationale).
  462. Corrected behaviour of accessors for '*@' and '*%' struct
  463. elements. Package now implements documented behaviour when
  464. returning a reference to an entire hash or array element.
  465. Previously these were returned as a reference to a reference
  466. to the element.
  467. Renamed to C<Class::Struct> and modified by Jim Miner, 1997-04-02.
  468. members() function removed.
  469. Documentation corrected and extended.
  470. Use of struct() in a subclass prohibited.
  471. User definition of accessor allowed.
  472. Treatment of '*' in element types corrected.
  473. Treatment of classes as element types corrected.
  474. Class name to struct() made optional.
  475. Diagnostic checks added.
  476. Originally C<Class::Template> by Dean Roehrich.
  477. # Template.pm --- struct/member template builder
  478. # 12mar95
  479. # Dean Roehrich
  480. #
  481. # changes/bugs fixed since 28nov94 version:
  482. # - podified
  483. # changes/bugs fixed since 21nov94 version:
  484. # - Fixed examples.
  485. # changes/bugs fixed since 02sep94 version:
  486. # - Moved to Class::Template.
  487. # changes/bugs fixed since 20feb94 version:
  488. # - Updated to be a more proper module.
  489. # - Added "use strict".
  490. # - Bug in build_methods, was using @var when @$var needed.
  491. # - Now using my() rather than local().
  492. #
  493. # Uses perl5 classes to create nested data types.
  494. # This is offered as one implementation of Tom Christiansen's
  495. # "structs.pl" idea.
  496. =cut