Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I didn't realize till after compiling an example that this was a rather old post, but I'll post it anyway. Here is an example of using attributes to added debug information to a sub (printing out its @_ before and after execution) as well as a way to wrap some errors/warnings around methods. Both of these use Hook::LexWrap to warp extra code around the function being attributed...attributized, attributated?</code>

use strict; use warnings; { package tools; use Data::Dumper; use Hook::LexWrap; use Attribute::Handlers; sub UNIVERSAL::Debug :ATTR(CODE) { wrap $_[1], pre => sub { pop; print Dumper({'Pre' => \@_ + })}, post => sub { pop; print Dumper({'Post' => \@_ + })}, } sub UNIVERSAL::Method :ATTR(CODE) { my ($package, $symbol, $referent, $attr, $data, $phase) = +@_; wrap $_[1], pre => sub { my $self = shift; die "Must be used as a method" +unless ref($self) eq $package; }; } } { package Test; sub method_test :Method { print "This should be called on a reference\n"; } } package main; sub foo : Debug { print "This is the end!\n"; return 123;}; foo(1,2,3); my $x = bless {}, 'Test'; $x->method_test(); Test::method_test('hello'); __DATA__ $VAR1 = { 'Pre' => [ 1, 2, 3 ] }; This is the end! $VAR1 = { 'Post' => [ 1, 2, 3 ] }; This should be called on a reference Must be used as a method at attributes.pl line 16.


___________
Eric Hodges

In reply to Re: How Are Attributes Useful? by eric256
in thread How Are Attributes Useful? by Limbic~Region

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (7)
As of 2024-03-28 11:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found