home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _eacd0ca5599c51369706192608bd8acd < prev    next >
Text File  |  2000-03-23  |  16KB  |  361 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Class::Struct - declare struct-like datatypes as Perl classes</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Class::Struct - declare struct-like datatypes as Perl classes</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#the struct() function">The <CODE>struct()</CODE> function</A></LI>
  28.         <LI><A HREF="#element types and accessor methods">Element Types and Accessor Methods</A></LI>
  29.         <LI><A HREF="#initializing with new">Initializing with <CODE>new</CODE></A></LI>
  30.     </UL>
  31.  
  32.     <LI><A HREF="#examples">EXAMPLES</A></LI>
  33.     <LI><A HREF="#author and modification history">Author and Modification History</A></LI>
  34. </UL>
  35. <!-- INDEX END -->
  36.  
  37. <HR>
  38. <P>
  39. <H1><A NAME="name">NAME</A></H1>
  40. <P>Class::Struct - declare struct-like datatypes as Perl classes</P>
  41. <P>
  42. <HR>
  43. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  44. <UL>
  45. <LI>Linux</LI>
  46. <LI>Solaris</LI>
  47. <LI>Windows</LI>
  48. </UL>
  49. <HR>
  50. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  51. <PRE>
  52.     use Class::Struct;
  53.             # declare struct, based on array:
  54.     struct( CLASS_NAME => [ ELEMENT_NAME => ELEMENT_TYPE, ... ]);
  55.             # declare struct, based on hash:
  56.     struct( CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... });</PRE>
  57. <PRE>
  58.     package CLASS_NAME;
  59.     use Class::Struct;
  60.             # declare struct, based on array, implicit class name:
  61.     struct( ELEMENT_NAME => ELEMENT_TYPE, ... );</PRE>
  62. <PRE>
  63.     package Myobj;
  64.     use Class::Struct;
  65.             # declare struct with four types of elements:
  66.     struct( s => '$', a => '@', h => '%', c => 'My_Other_Class' );</PRE>
  67. <PRE>
  68.     $obj = new Myobj;               # constructor</PRE>
  69. <PRE>
  70.                                     # scalar type accessor:
  71.     $element_value = $obj->s;           # element value
  72.     $obj->s('new value');               # assign to element</PRE>
  73. <PRE>
  74.                                     # array type accessor:
  75.     $ary_ref = $obj->a;                 # reference to whole array
  76.     $ary_element_value = $obj->a(2);    # array element value
  77.     $obj->a(2, 'new value');            # assign to array element</PRE>
  78. <PRE>
  79.                                     # hash type accessor:
  80.     $hash_ref = $obj->h;                # reference to whole hash
  81.     $hash_element_value = $obj->h('x'); # hash element value
  82.     $obj->h('x', 'new value');        # assign to hash element</PRE>
  83. <PRE>
  84.                                     # class type accessor:
  85.     $element_value = $obj->c;           # object reference
  86.     $obj->c->method(...);               # call method of object
  87.     $obj->c(new My_Other_Class);        # assign a new object</PRE>
  88. <P>
  89. <HR>
  90. <H1><A NAME="description">DESCRIPTION</A></H1>
  91. <P><CODE>Class::Struct</CODE> exports a single function, <CODE>struct</CODE>.
  92. Given a list of element names and types, and optionally
  93. a class name, <CODE>struct</CODE> creates a Perl 5 class that implements
  94. a ``struct-like'' data structure.</P>
  95. <P>The new class is given a constructor method, <CODE>new</CODE>, for creating
  96. struct objects.</P>
  97. <P>Each element in the struct data has an accessor method, which is
  98. used to assign to the element and to fetch its value.  The
  99. default accessor can be overridden by declaring a <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub</CODE></A> of the
  100. same name in the package.  (See Example 2.)</P>
  101. <P>Each element's type can be scalar, array, hash, or class.</P>
  102. <P>
  103. <H2><A NAME="the struct() function">The <CODE>struct()</CODE> function</A></H2>
  104. <P>The <CODE>struct</CODE> function has three forms of parameter-list.</P>
  105. <PRE>
  106.     struct( CLASS_NAME => [ ELEMENT_LIST ]);
  107.     struct( CLASS_NAME => { ELEMENT_LIST });
  108.     struct( ELEMENT_LIST );</PRE>
  109. <P>The first and second forms explicitly identify the name of the
  110. class being created.  The third form assumes the current package
  111. name as the class name.</P>
  112. <P>An object of a class created by the first and third forms is
  113. based on an array, whereas an object of a class created by the
  114. second form is based on a hash. The array-based forms will be
  115. somewhat faster and smaller; the hash-based forms are more
  116. flexible.</P>
  117. <P>The class created by <CODE>struct</CODE> must not be a subclass of another
  118. class other than <CODE>UNIVERSAL</CODE>.</P>
  119. <P>It can, however, be used as a superclass for other classes. To facilitate
  120. this, the generated constructor method uses a two-argument blessing.
  121. Furthermore, if the class is hash-based, the key of each element is
  122. prefixed with the class name (see <EM>Perl Cookbook</EM>, Recipe 13.12).</P>
  123. <P>A function named <CODE>new</CODE> must not be explicitly defined in a class
  124. created by <CODE>struct</CODE>.</P>
  125. <P>The <EM>ELEMENT_LIST</EM> has the form</P>
  126. <PRE>
  127.     NAME => TYPE, ...</PRE>
  128. <P>Each name-type pair declares one element of the struct. Each
  129. element name will be defined as an accessor method unless a
  130. method by that name is explicitly defined; in the latter case, a
  131. warning is issued if the warning flag (<STRONG>-w</STRONG>) is set.</P>
  132. <P>
  133. <H2><A NAME="element types and accessor methods">Element Types and Accessor Methods</A></H2>
  134. <P>The four element types -- scalar, array, hash, and class -- are
  135. represented by strings -- <CODE>'$'</CODE>, <CODE>'@'</CODE>, <CODE>'%'</CODE>, and a class name --
  136. optionally preceded by a <CODE>'*'</CODE>.</P>
  137. <P>The accessor method provided by <CODE>struct</CODE> for an element depends
  138. on the declared type of the element.</P>
  139. <DL>
  140. <DT><STRONG><A NAME="item_Scalar">Scalar (<CODE>'$'</CODE> or <CODE>'*$'</CODE>)</A></STRONG><BR>
  141. <DD>
  142. The element is a scalar, and by default is initialized to <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>
  143. (but see <A HREF="#initializing with new">Initializing with new</A>).
  144. <P>The accessor's argument, if any, is assigned to the element.</P>
  145. <P>If the element type is <CODE>'$'</CODE>, the value of the element (after
  146. assignment) is returned. If the element type is <CODE>'*$'</CODE>, a reference
  147. to the element is returned.</P>
  148. <P></P>
  149. <DT><STRONG><A NAME="item_Array">Array (<CODE>'@'</CODE> or <CODE>'*@'</CODE>)</A></STRONG><BR>
  150. <DD>
  151. The element is an array, initialized by default to <CODE>()</CODE>.
  152. <P>With no argument, the accessor returns a reference to the
  153. element's whole array (whether or not the element was
  154. specified as <CODE>'@'</CODE> or <CODE>'*@'</CODE>).</P>
  155. <P>With one or two arguments, the first argument is an index
  156. specifying one element of the array; the second argument, if
  157. present, is assigned to the array element.  If the element type
  158. is <CODE>'@'</CODE>, the accessor returns the array element value.  If the
  159. element type is <CODE>'*@'</CODE>, a reference to the array element is
  160. returned.</P>
  161. <P></P>
  162. <DT><STRONG><A NAME="item_Hash">Hash (<CODE>'%'</CODE> or <CODE>'*%'</CODE>)</A></STRONG><BR>
  163. <DD>
  164. The element is a hash, initialized by default to <CODE>()</CODE>.
  165. <P>With no argument, the accessor returns a reference to the
  166. element's whole hash (whether or not the element was
  167. specified as <CODE>'%'</CODE> or <CODE>'*%'</CODE>).</P>
  168. <P>With one or two arguments, the first argument is a key specifying
  169. one element of the hash; the second argument, if present, is
  170. assigned to the hash element.  If the element type is <CODE>'%'</CODE>, the
  171. accessor returns the hash element value.  If the element type is
  172. <CODE>'*%'</CODE>, a reference to the hash element is returned.</P>
  173. <P></P>
  174. <DT><STRONG><A NAME="item_Class">Class (<CODE>'Class_Name'</CODE> or <CODE>'*Class_Name'</CODE>)</A></STRONG><BR>
  175. <DD>
  176. The element's value must be a reference blessed to the named
  177. class or to one of its subclasses. The element is initialized to
  178. the result of calling the <CODE>new</CODE> constructor of the named class.
  179. <P>The accessor's argument, if any, is assigned to the element. The
  180. accessor will <CODE>croak</CODE> if this is not an appropriate object
  181. reference.</P>
  182. <P>If the element type does not start with a <CODE>'*'</CODE>, the accessor
  183. returns the element value (after assignment). If the element type
  184. starts with a <CODE>'*'</CODE>, a reference to the element itself is returned.</P>
  185. <P></P></DL>
  186. <P>
  187. <H2><A NAME="initializing with new">Initializing with <CODE>new</CODE></A></H2>
  188. <P><CODE>struct</CODE> always creates a constructor called <CODE>new</CODE>. That constructor
  189. may take a list of initializers for the various elements of the new
  190. struct.</P>
  191. <P>Each initializer is a pair of values: <EM>element name</EM><CODE> => </CODE><EM>value</EM>.
  192. The initializer value for a scalar element is just a scalar value. The 
  193. initializer for an array element is an array reference. The initializer
  194. for a hash is a hash reference.</P>
  195. <P>The initializer for a class element is also a hash reference, and the
  196. contents of that hash are passed to the element's own constructor.</P>
  197. <P>See Example 3 below for an example of initialization.</P>
  198. <P>
  199. <HR>
  200. <H1><A NAME="examples">EXAMPLES</A></H1>
  201. <DL>
  202. <DT><STRONG><A NAME="item_Example_1">Example 1</A></STRONG><BR>
  203. <DD>
  204. Giving a struct element a class type that is also a struct is how
  205. structs are nested.  Here, <CODE>timeval</CODE> represents a time (seconds and
  206. microseconds), and <CODE>rusage</CODE> has two elements, each of which is of
  207. type <CODE>timeval</CODE>.
  208. <PRE>
  209.     use Class::Struct;</PRE>
  210. <PRE>
  211.     struct( rusage => {
  212.         ru_utime => timeval,  # seconds
  213.         ru_stime => timeval,  # microseconds
  214.     });</PRE>
  215. <PRE>
  216.     struct( timeval => [
  217.         tv_secs  => '$',
  218.         tv_usecs => '$',
  219.     ]);</PRE>
  220. <PRE>
  221.         # create an object:
  222.     my $t = new rusage;</PRE>
  223. <PRE>
  224.         # $t->ru_utime and $t->ru_stime are objects of type timeval.
  225.         # set $t->ru_utime to 100.0 sec and $t->ru_stime to 5.0 sec.
  226.     $t->ru_utime->tv_secs(100);
  227.     $t->ru_utime->tv_usecs(0);
  228.     $t->ru_stime->tv_secs(5);
  229.     $t->ru_stime->tv_usecs(0);</PRE>
  230. <P></P>
  231. <DT><STRONG><A NAME="item_Example_2">Example 2</A></STRONG><BR>
  232. <DD>
  233. An accessor function can be redefined in order to provide
  234. additional checking of values, etc.  Here, we want the <CODE>count</CODE>
  235. element always to be nonnegative, so we redefine the <CODE>count</CODE>
  236. accessor accordingly.
  237. <PRE>
  238.     package MyObj;
  239.     use Class::Struct;</PRE>
  240. <PRE>
  241.     # declare the struct
  242.     struct ( 'MyObj', { count => '$', stuff => '%' } );</PRE>
  243. <PRE>
  244.     # override the default accessor method for 'count'
  245.     sub count {
  246.         my $self = shift;
  247.         if ( @_ ) {
  248.             die 'count must be nonnegative' if $_[0] < 0;
  249.             $self->{'count'} = shift;
  250.             warn "Too many args to count" if @_;
  251.         }
  252.         return $self->{'count'};
  253.     }</PRE>
  254. <PRE>
  255.     package main;
  256.     $x = new MyObj;
  257.     print "\$x->count(5) = ", $x->count(5), "\n";
  258.                             # prints '$x->count(5) = 5'</PRE>
  259. <PRE>
  260.     print "\$x->count = ", $x->count, "\n";
  261.                             # prints '$x->count = 5'</PRE>
  262. <PRE>
  263.     print "\$x->count(-5) = ", $x->count(-5), "\n";
  264.                             # dies due to negative argument!</PRE>
  265. <P></P>
  266. <DT><STRONG><A NAME="item_Example_3">Example 3</A></STRONG><BR>
  267. <DD>
  268. The constructor of a generated class can be passed a list
  269. of <EM>element</EM>=><EM>value</EM> pairs, with which to initialize the struct.
  270. If no initializer is specified for a particular element, its default
  271. initialization is performed instead. Initializers for non-existent
  272. elements are silently ignored.
  273. <P>Note that the initializer for a nested struct is specified
  274. as an anonymous hash of initializers, which is passed on to the nested
  275. struct's constructor.</P>
  276. <PRE>
  277.     use Class::Struct;</PRE>
  278. <PRE>
  279.     struct Breed =>
  280.     {
  281.         name  => '$',
  282.         cross => '$',
  283.     };</PRE>
  284. <PRE>
  285.     struct Cat =>
  286.     [
  287.         name     => '$',
  288.         kittens  => '@',
  289.         markings => '%',
  290.         breed    => 'Breed',
  291.     ];</PRE>
  292. <PRE>
  293.     my $cat = Cat->new( name     => 'Socks',
  294.                         kittens  => ['Monica', 'Kenneth'],
  295.                         markings => { socks=>1, blaze=>"white" },
  296.                         breed    => { name=>'short-hair', cross=>1 },
  297.                       );</PRE>
  298. <PRE>
  299.     print "Once a cat called ", $cat->name, "\n";
  300.     print "(which was a ", $cat->breed->name, ")\n";
  301.     print "had two kittens: ", join(' and ', @{$cat->kittens}), "\n";</PRE>
  302. <P></P></DL>
  303. <P>
  304. <HR>
  305. <H1><A NAME="author and modification history">Author and Modification History</A></H1>
  306. <P>Modified by Damian Conway, 1999-03-05, v0.58.</P>
  307. <PRE>
  308.     Added handling of hash-like arg list to class ctor.</PRE>
  309. <PRE>
  310.     Changed to two-argument blessing in ctor to support
  311.     derivation from created classes.</PRE>
  312. <PRE>
  313.     Added classname prefixes to keys in hash-based classes
  314.     (refer to "Perl Cookbook", Recipe 13.12 for rationale).</PRE>
  315. <PRE>
  316.     Corrected behaviour of accessors for '*@' and '*%' struct
  317.     elements.  Package now implements documented behaviour when
  318.     returning a reference to an entire hash or array element.
  319.     Previously these were returned as a reference to a reference
  320.     to the element.</PRE>
  321. <P>Renamed to <CODE>Class::Struct</CODE> and modified by Jim Miner, 1997-04-02.</P>
  322. <PRE>
  323.     members() function removed.
  324.     Documentation corrected and extended.
  325.     Use of struct() in a subclass prohibited.
  326.     User definition of accessor allowed.
  327.     Treatment of '*' in element types corrected.
  328.     Treatment of classes as element types corrected.
  329.     Class name to struct() made optional.
  330.     Diagnostic checks added.</PRE>
  331. <P>Originally <CODE>Class::Template</CODE> by Dean Roehrich.</P>
  332. <PRE>
  333.     # Template.pm   --- struct/member template builder
  334.     #   12mar95
  335.     #   Dean Roehrich
  336.     #
  337.     # changes/bugs fixed since 28nov94 version:
  338.     #  - podified
  339.     # changes/bugs fixed since 21nov94 version:
  340.     #  - Fixed examples.
  341.     # changes/bugs fixed since 02sep94 version:
  342.     #  - Moved to Class::Template.
  343.     # changes/bugs fixed since 20feb94 version:
  344.     #  - Updated to be a more proper module.
  345.     #  - Added "use strict".
  346.     #  - Bug in build_methods, was using @var when @$var needed.
  347.     #  - Now using my() rather than local().
  348.     #
  349.     # Uses perl5 classes to create nested data types.
  350.     # This is offered as one implementation of Tom Christiansen's "structs.pl"
  351.     # idea.</PRE>
  352. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  353. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  354. <STRONG><P CLASS=block> Class::Struct - declare struct-like datatypes as Perl classes</P></STRONG>
  355. </TD></TR>
  356. </TABLE>
  357.  
  358. </BODY>
  359.  
  360. </HTML>
  361.