Accessor.pm
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:19k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. package Class::Accessor;
  2. require 5.00502;
  3. use strict;
  4. $Class::Accessor::VERSION = '0.33';
  5. =head1 NAME
  6.   Class::Accessor - Automated accessor generation
  7. =head1 SYNOPSIS
  8.   package Foo;
  9.   use base qw(Class::Accessor);
  10.   Foo->follow_best_practice;
  11.   Foo->mk_accessors(qw(name role salary));
  12.   # Meanwhile, in a nearby piece of code!
  13.   # Class::Accessor provides new().
  14.   my $mp = Foo->new({ name => "Marty", role => "JAPH" });
  15.   my $job = $mp->role;  # gets $mp->{role}
  16.   $mp->salary(400000);  # sets $mp->{salary} = 400000 # I wish
  17.   
  18.   # like my @info = @{$mp}{qw(name role)}
  19.   my @info = $mp->get(qw(name role));
  20.   
  21.   # $mp->{salary} = 400000
  22.   $mp->set('salary', 400000);
  23. =head1 DESCRIPTION
  24. This module automagically generates accessors/mutators for your class.
  25. Most of the time, writing accessors is an exercise in cutting and
  26. pasting.  You usually wind up with a series of methods like this:
  27.     sub name {
  28.         my $self = shift;
  29.         if(@_) {
  30.             $self->{name} = $_[0];
  31.         }
  32.         return $self->{name};
  33.     }
  34.     sub salary {
  35.         my $self = shift;
  36.         if(@_) {
  37.             $self->{salary} = $_[0];
  38.         }
  39.         return $self->{salary};
  40.     }
  41.   # etc...
  42. One for each piece of data in your object.  While some will be unique,
  43. doing value checks and special storage tricks, most will simply be
  44. exercises in repetition.  Not only is it Bad Style to have a bunch of
  45. repetitious code, but it's also simply not lazy, which is the real
  46. tragedy.
  47. If you make your module a subclass of Class::Accessor and declare your
  48. accessor fields with mk_accessors() then you'll find yourself with a
  49. set of automatically generated accessors which can even be
  50. customized!
  51. The basic set up is very simple:
  52.     package Foo;
  53.     use base qw(Class::Accessor);
  54.     Foo->mk_accessors( qw(far bar car) );
  55. Done.  Foo now has simple far(), bar() and car() accessors
  56. defined.
  57. Alternatively, if you want to follow Damian's I<best practice> guidelines 
  58. you can use:
  59.     package Foo;
  60.     use base qw(Class::Accessor);
  61.     Foo->follow_best_practice;
  62.     Foo->mk_accessors( qw(far bar car) );
  63. B<Note:> you must call C<follow_best_practice> before calling C<mk_accessors>.
  64. =head2 What Makes This Different?
  65. What makes this module special compared to all the other method
  66. generating modules (L<"SEE ALSO">)?  By overriding the get() and set()
  67. methods you can alter the behavior of the accessors class-wide.  Also,
  68. the accessors are implemented as closures which should cost a bit less
  69. memory than most other solutions which generate a new method for each
  70. accessor.
  71. =head1 METHODS
  72. =head2 new
  73.     my $obj = Foo->new;
  74.     my $obj = $other_obj->new;
  75.     my $obj = Foo->new(%fields);
  76.     my $obj = $other_obj->new(%fields);
  77. Class::Accessor provides a basic constructor.  It generates a
  78. hash-based object and can be called as either a class method or an
  79. object method.  
  80. It takes an optional %fields hash which is used to initialize the
  81. object (handy if you use read-only accessors).  The fields of the hash
  82. correspond to the names of your accessors, so...
  83.     package Foo;
  84.     use base qw(Class::Accessor);
  85.     Foo->mk_accessors('foo');
  86.     my $obj = Foo->new({ foo => 42 });
  87.     print $obj->foo;    # 42
  88. however %fields can contain anything, new() will shove them all into
  89. your object.  Don't like it?  Override it.
  90. =cut
  91. sub new {
  92.     my($proto, $fields) = @_;
  93.     my($class) = ref $proto || $proto;
  94.     $fields = {} unless defined $fields;
  95.     # make a copy of $fields.
  96.     bless {%$fields}, $class;
  97. }
  98. =head2 mk_accessors
  99.     __PACKAGE__->mk_accessors(@fields);
  100. This creates accessor/mutator methods for each named field given in
  101. @fields.  Foreach field in @fields it will generate two accessors.
  102. One called "field()" and the other called "_field_accessor()".  For
  103. example:
  104.     # Generates foo(), _foo_accessor(), bar() and _bar_accessor().
  105.     __PACKAGE__->mk_accessors(qw(foo bar));
  106. See L<CAVEATS AND TRICKS/"Overriding autogenerated accessors">
  107. for details.
  108. =cut
  109. sub mk_accessors {
  110.     my($self, @fields) = @_;
  111.     $self->_mk_accessors('rw', @fields);
  112. }
  113. if (eval { require Sub::Name }) {
  114.     Sub::Name->import;
  115. }
  116. {
  117.     no strict 'refs';
  118.     sub follow_best_practice {
  119.         my($self) = @_;
  120.         my $class = ref $self || $self;
  121.         *{"${class}::accessor_name_for"}  = &best_practice_accessor_name_for;
  122.         *{"${class}::mutator_name_for"}  = &best_practice_mutator_name_for;
  123.     }
  124.     sub _mk_accessors {
  125.         my($self, $access, @fields) = @_;
  126.         my $class = ref $self || $self;
  127.         my $ra = $access eq 'rw' || $access eq 'ro';
  128.         my $wa = $access eq 'rw' || $access eq 'wo';
  129.         foreach my $field (@fields) {
  130.             my $accessor_name = $self->accessor_name_for($field);
  131.             my $mutator_name = $self->mutator_name_for($field);
  132.             if( $accessor_name eq 'DESTROY' or $mutator_name eq 'DESTROY' ) {
  133.                 $self->_carp("Having a data accessor named DESTROY  in '$class' is unwise.");
  134.             }
  135.             if ($accessor_name eq $mutator_name) {
  136.                 my $accessor;
  137.                 if ($ra && $wa) {
  138.                     $accessor = $self->make_accessor($field);
  139.                 } elsif ($ra) {
  140.                     $accessor = $self->make_ro_accessor($field);
  141.                 } else {
  142.                     $accessor = $self->make_wo_accessor($field);
  143.                 }
  144.                 my $fullname = "${class}::$accessor_name";
  145.                 my $subnamed = 0;
  146.                 unless (defined &{$fullname}) {
  147.                     subname($fullname, $accessor) if defined &subname;
  148.                     $subnamed = 1;
  149.                     *{$fullname} = $accessor;
  150.                 }
  151.                 if ($accessor_name eq $field) {
  152.                     # the old behaviour
  153.                     my $alias = "${class}::_${field}_accessor";
  154.                     subname($alias, $accessor) if defined &subname and not $subnamed;
  155.                     *{$alias} = $accessor unless defined &{$alias};
  156.                 }
  157.             } else {
  158.                 my $fullaccname = "${class}::$accessor_name";
  159.                 my $fullmutname = "${class}::$mutator_name";
  160.                 if ($ra and not defined &{$fullaccname}) {
  161.                     my $accessor = $self->make_ro_accessor($field);
  162.                     subname($fullaccname, $accessor) if defined &subname;
  163.                     *{$fullaccname} = $accessor;
  164.                 }
  165.                 if ($wa and not defined &{$fullmutname}) {
  166.                     my $mutator = $self->make_wo_accessor($field);
  167.                     subname($fullmutname, $mutator) if defined &subname;
  168.                     *{$fullmutname} = $mutator;
  169.                 }
  170.             }
  171.         }
  172.     }
  173. }
  174. =head2 mk_ro_accessors
  175.   __PACKAGE__->mk_ro_accessors(@read_only_fields);
  176. Same as mk_accessors() except it will generate read-only accessors
  177. (ie. true accessors).  If you attempt to set a value with these
  178. accessors it will throw an exception.  It only uses get() and not
  179. set().
  180.     package Foo;
  181.     use base qw(Class::Accessor);
  182.     Foo->mk_ro_accessors(qw(foo bar));
  183.     # Let's assume we have an object $foo of class Foo...
  184.     print $foo->foo;  # ok, prints whatever the value of $foo->{foo} is
  185.     $foo->foo(42);    # BOOM!  Naughty you.
  186. =cut
  187. sub mk_ro_accessors {
  188.     my($self, @fields) = @_;
  189.     $self->_mk_accessors('ro', @fields);
  190. }
  191. =head2 mk_wo_accessors
  192.   __PACKAGE__->mk_wo_accessors(@write_only_fields);
  193. Same as mk_accessors() except it will generate write-only accessors
  194. (ie. mutators).  If you attempt to read a value with these accessors
  195. it will throw an exception.  It only uses set() and not get().
  196. B<NOTE> I'm not entirely sure why this is useful, but I'm sure someone
  197. will need it.  If you've found a use, let me know.  Right now it's here
  198. for orthoginality and because it's easy to implement.
  199.     package Foo;
  200.     use base qw(Class::Accessor);
  201.     Foo->mk_wo_accessors(qw(foo bar));
  202.     # Let's assume we have an object $foo of class Foo...
  203.     $foo->foo(42);      # OK.  Sets $self->{foo} = 42
  204.     print $foo->foo;    # BOOM!  Can't read from this accessor.
  205. =cut
  206. sub mk_wo_accessors {
  207.     my($self, @fields) = @_;
  208.     $self->_mk_accessors('wo', @fields);
  209. }
  210. =head1 DETAILS
  211. An accessor generated by Class::Accessor looks something like
  212. this:
  213.     # Your foo may vary.
  214.     sub foo {
  215.         my($self) = shift;
  216.         if(@_) {    # set
  217.             return $self->set('foo', @_);
  218.         }
  219.         else {
  220.             return $self->get('foo');
  221.         }
  222.     }
  223. Very simple.  All it does is determine if you're wanting to set a
  224. value or get a value and calls the appropriate method.
  225. Class::Accessor provides default get() and set() methods which
  226. your class can override.  They're detailed later.
  227. =head2 follow_best_practice
  228. In Damian's Perl Best Practices book he recommends separate get and set methods
  229. with the prefix set_ and get_ to make it explicit what you intend to do.  If you
  230. want to create those accessor methods instead of the default ones, call:
  231.     __PACKAGE__->follow_best_practice
  232. B<before> you call mk_accessors.
  233. =head2 accessor_name_for / mutator_name_for
  234. You may have your own crazy ideas for the names of the accessors, so you can
  235. make those happen by overriding C<accessor_name_for> and C<mutator_name_for> in
  236. your subclass.  (I copied that idea from Class::DBI.)
  237. =cut
  238. sub best_practice_accessor_name_for {
  239.     my ($class, $field) = @_;
  240.     return "get_$field";
  241. }
  242. sub best_practice_mutator_name_for {
  243.     my ($class, $field) = @_;
  244.     return "set_$field";
  245. }
  246. sub accessor_name_for {
  247.     my ($class, $field) = @_;
  248.     return $field;
  249. }
  250. sub mutator_name_for {
  251.     my ($class, $field) = @_;
  252.     return $field;
  253. }
  254. =head2 Modifying the behavior of the accessor
  255. Rather than actually modifying the accessor itself, it is much more
  256. sensible to simply override the two key methods which the accessor
  257. calls.  Namely set() and get().
  258. If you -really- want to, you can override make_accessor().
  259. =head2 set
  260.     $obj->set($key, $value);
  261.     $obj->set($key, @values);
  262. set() defines how generally one stores data in the object.
  263. override this method to change how data is stored by your accessors.
  264. =cut
  265. sub set {
  266.     my($self, $key) = splice(@_, 0, 2);
  267.     if(@_ == 1) {
  268.         $self->{$key} = $_[0];
  269.     }
  270.     elsif(@_ > 1) {
  271.         $self->{$key} = [@_];
  272.     }
  273.     else {
  274.         $self->_croak("Wrong number of arguments received");
  275.     }
  276. }
  277. =head2 get
  278.     $value  = $obj->get($key);
  279.     @values = $obj->get(@keys);
  280. get() defines how data is retreived from your objects.
  281. override this method to change how it is retreived.
  282. =cut
  283. sub get {
  284.     my $self = shift;
  285.     if(@_ == 1) {
  286.         return $self->{$_[0]};
  287.     }
  288.     elsif( @_ > 1 ) {
  289.         return @{$self}{@_};
  290.     }
  291.     else {
  292.         $self->_croak("Wrong number of arguments received");
  293.     }
  294. }
  295. =head2 make_accessor
  296.     $accessor = __PACKAGE__->make_accessor($field);
  297. Generates a subroutine reference which acts as an accessor for the given
  298. $field.  It calls get() and set().
  299. If you wish to change the behavior of your accessors, try overriding
  300. get() and set() before you start mucking with make_accessor().
  301. =cut
  302. sub make_accessor {
  303.     my ($class, $field) = @_;
  304.     # Build a closure around $field.
  305.     return sub {
  306.         my $self = shift;
  307.         if(@_) {
  308.             return $self->set($field, @_);
  309.         }
  310.         else {
  311.             return $self->get($field);
  312.         }
  313.     };
  314. }
  315. =head2 make_ro_accessor
  316.     $read_only_accessor = __PACKAGE__->make_ro_accessor($field);
  317. Generates a subroutine refrence which acts as a read-only accessor for
  318. the given $field.  It only calls get().
  319. Override get() to change the behavior of your accessors.
  320. =cut
  321. sub make_ro_accessor {
  322.     my($class, $field) = @_;
  323.     return sub {
  324.         my $self = shift;
  325.         if (@_) {
  326.             my $caller = caller;
  327.             $self->_croak("'$caller' cannot alter the value of '$field' on objects of class '$class'");
  328.         }
  329.         else {
  330.             return $self->get($field);
  331.         }
  332.     };
  333. }
  334. =head2 make_wo_accessor
  335.     $read_only_accessor = __PACKAGE__->make_wo_accessor($field);
  336. Generates a subroutine refrence which acts as a write-only accessor
  337. (mutator) for the given $field.  It only calls set().
  338. Override set() to change the behavior of your accessors.
  339. =cut
  340. sub make_wo_accessor {
  341.     my($class, $field) = @_;
  342.     return sub {
  343.         my $self = shift;
  344.         unless (@_) {
  345.             my $caller = caller;
  346.             $self->_croak("'$caller' cannot access the value of '$field' on objects of class '$class'");
  347.         }
  348.         else {
  349.             return $self->set($field, @_);
  350.         }
  351.     };
  352. }
  353. =head1 EXCEPTIONS
  354. If something goes wrong Class::Accessor will warn or die by calling Carp::carp
  355. or Carp::croak.  If you don't like this you can override _carp() and _croak() in
  356. your subclass and do whatever else you want.
  357. =cut
  358. use Carp ();
  359. sub _carp {
  360.     my ($self, $msg) = @_;
  361.     Carp::carp($msg || $self);
  362.     return;
  363. }
  364. sub _croak {
  365.     my ($self, $msg) = @_;
  366.     Carp::croak($msg || $self);
  367.     return;
  368. }
  369. =head1 EFFICIENCY
  370. Class::Accessor does not employ an autoloader, thus it is much faster
  371. than you'd think.  Its generated methods incur no special penalty over
  372. ones you'd write yourself.
  373.   accessors:
  374.               Rate  Basic   Fast Faster Direct
  375.   Basic   367589/s     --   -51%   -55%   -89%
  376.   Fast    747964/s   103%     --    -9%   -77%
  377.   Faster  819199/s   123%    10%     --   -75%
  378.   Direct 3245887/s   783%   334%   296%     --
  379.   mutators:
  380.               Rate    Acc   Fast Faster Direct
  381.   Acc     265564/s     --   -54%   -63%   -91%
  382.   Fast    573439/s   116%     --   -21%   -80%
  383.   Faster  724710/s   173%    26%     --   -75%
  384.   Direct 2860979/s   977%   399%   295%     --
  385. Class::Accessor::Fast is faster than methods written by an average programmer
  386. (where "average" is based on Schwern's example code).
  387. Class::Accessor is slower than average, but more flexible.
  388. Class::Accessor::Faster is even faster than Class::Accessor::Fast.  It uses an
  389. array internally, not a hash.  This could be a good or bad feature depending on
  390. your point of view.
  391. Direct hash access is, of course, much faster than all of these, but it
  392. provides no encapsulation.
  393. Of course, it's not as simple as saying "Class::Accessor is slower than
  394. average".  These are benchmarks for a simple accessor.  If your accessors do
  395. any sort of complicated work (such as talking to a database or writing to a
  396. file) the time spent doing that work will quickly swamp the time spend just
  397. calling the accessor.  In that case, Class::Accessor and the ones you write
  398. will be roughly the same speed.
  399. =head1 EXAMPLES
  400. Here's an example of generating an accessor for every public field of
  401. your class.
  402.     package Altoids;
  403.     
  404.     use base qw(Class::Accessor Class::Fields);
  405.     use fields qw(curiously strong mints);
  406.     Altoids->mk_accessors( Altoids->show_fields('Public') );
  407.     sub new {
  408.         my $proto = shift;
  409.         my $class = ref $proto || $proto;
  410.         return fields::new($class);
  411.     }
  412.     my Altoids $tin = Altoids->new;
  413.     $tin->curiously('Curiouser and curiouser');
  414.     print $tin->{curiously};    # prints 'Curiouser and curiouser'
  415.     
  416.     # Subclassing works, too.
  417.     package Mint::Snuff;
  418.     use base qw(Altoids);
  419.     my Mint::Snuff $pouch = Mint::Snuff->new;
  420.     $pouch->strong('Blow your head off!');
  421.     print $pouch->{strong};     # prints 'Blow your head off!'
  422. Here's a simple example of altering the behavior of your accessors.
  423.     package Foo;
  424.     use base qw(Class::Accessor);
  425.     Foo->mk_accessors(qw(this that up down));
  426.     sub get {
  427.         my $self = shift;
  428.         # Note every time someone gets some data.
  429.         print STDERR "Getting @_n";
  430.         $self->SUPER::get(@_);
  431.     }
  432.     sub set {
  433.         my ($self, $key) = splice(@_, 0, 2);
  434.         # Note every time someone sets some data.
  435.         print STDERR "Setting $key to @_n";
  436.         $self->SUPER::set($key, @_);
  437.     }
  438. =head1 CAVEATS AND TRICKS
  439. Class::Accessor has to do some internal wackiness to get its
  440. job done quickly and efficiently.  Because of this, there's a few
  441. tricks and traps one must know about.
  442. Hey, nothing's perfect.
  443. =head2 Don't make a field called DESTROY
  444. This is bad.  Since DESTROY is a magical method it would be bad for us
  445. to define an accessor using that name.  Class::Accessor will
  446. carp if you try to use it with a field named "DESTROY".
  447. =head2 Overriding autogenerated accessors
  448. You may want to override the autogenerated accessor with your own, yet
  449. have your custom accessor call the default one.  For instance, maybe
  450. you want to have an accessor which checks its input.  Normally, one
  451. would expect this to work:
  452.     package Foo;
  453.     use base qw(Class::Accessor);
  454.     Foo->mk_accessors(qw(email this that whatever));
  455.     # Only accept addresses which look valid.
  456.     sub email {
  457.         my($self) = shift;
  458.         my($email) = @_;
  459.         if( @_ ) {  # Setting
  460.             require Email::Valid;
  461.             unless( Email::Valid->address($email) ) {
  462.                 carp("$email doesn't look like a valid address.");
  463.                 return;
  464.             }
  465.         }
  466.         return $self->SUPER::email(@_);
  467.     }
  468. There's a subtle problem in the last example, and it's in this line:
  469.     return $self->SUPER::email(@_);
  470. If we look at how Foo was defined, it called mk_accessors() which
  471. stuck email() right into Foo's namespace.  There *is* no
  472. SUPER::email() to delegate to!  Two ways around this... first is to
  473. make a "pure" base class for Foo.  This pure class will generate the
  474. accessors and provide the necessary super class for Foo to use:
  475.     package Pure::Organic::Foo;
  476.     use base qw(Class::Accessor);
  477.     Pure::Organic::Foo->mk_accessors(qw(email this that whatever));
  478.     package Foo;
  479.     use base qw(Pure::Organic::Foo);
  480. And now Foo::email() can override the generated
  481. Pure::Organic::Foo::email() and use it as SUPER::email().
  482. This is probably the most obvious solution to everyone but me.
  483. Instead, what first made sense to me was for mk_accessors() to define
  484. an alias of email(), _email_accessor().  Using this solution,
  485. Foo::email() would be written with:
  486.     return $self->_email_accessor(@_);
  487. instead of the expected SUPER::email().
  488. =head1 AUTHORS
  489. Copyright 2007 Marty Pauley <marty+perl@kasei.com>
  490. This program is free software; you can redistribute it and/or modify it under
  491. the same terms as Perl itself.  That means either (a) the GNU General Public
  492. License or (b) the Artistic License.
  493. =head2 ORIGINAL AUTHOR
  494. Michael G Schwern <schwern@pobox.com>
  495. =head2 THANKS
  496. Liz and RUZ for performance tweaks.
  497. Tels, for his big feature request/bug report.
  498. =head1 SEE ALSO
  499. L<Class::Accessor::Fast>
  500. These are some modules which do similar things in different ways
  501. L<Class::Struct>, L<Class::Methodmaker>, L<Class::Generate>,
  502. L<Class::Class>, L<Class::Contract>
  503. L<Class::DBI> for an example of this module in use.
  504. =cut
  505. 1;