Shlomi Fish's Friends' Journals
http://use.perl.org/~Shlomi+Fish/journal/friends/
Shlomi Fish's Friends' use Perl Journalsen-ususe Perl; is Copyright 1998-2006, Chris Nandor. Stories, comments, journals, and other submissions posted on use Perl; are Copyright their respective owners.2012-01-25T02:19:47+00:00pudgepudge@perl.orgTechnologyhourly11970-01-01T00:00+00:00Shlomi Fish's Friends' Journalshttp://use.perl.org/images/topics/useperl.gif
http://use.perl.org/~Shlomi+Fish/journal/friends/
Finally, some Test::Builder2 examples!
http://use.perl.org/~schwern/journal/40528?from=rss
<p>For my PDX.pm presentation tonight on <a href="http://github.com/schwern/test-more/tree/Test-Builder2">Test::Builder2</a> I threw together some quick examples of some of its killer features, in particular demonstrating changing how Test::Builder2 behaves using method modifiers and applying object roles.</p><p>First, demonstrating end-of-assert actions, there's <a href="http://github.com/schwern/test-more/blob/Test-Builder2/examples/TB2/lib/TB2/DieOnFail.pm">die on fail</a> but even cooler is <a href="http://github.com/schwern/test-more/blob/Test-Builder2/examples/TB2/lib/TB2/DebugOnFail.pm">DEBUG on fail</a>! That's right, run your test in the debugger and have it automatically set a breakpoint on a failure. How cool is that?</p><p>I'm sure somebody with better debugger foo than I can make it even cooler and stop at the top of the assert stack rather than inside DebugOnFail.</p><p>The second is reimplementing <a href="http://search.cpan.org/perldoc?Test::NoWarnings">Test::NoWarnings</a> safely. <a href="http://github.com/schwern/test-more/blob/Test-Builder2/examples/TB2/lib/TB2/NoWarnings.pm">TB2::NoWarnings</a> demonstrates hooking into the start and end of the test as well as safely altering the number of tests planned by trapping the call to set_plan.</p><p>You can safely use them all together, though its a crap shoot if DebugOnFail or DieOnFail will trigger first.</p><p>While roles and method modifiers are relatively new to the Perl community, using them in lieu of designing my own event system for TB2 has two great advantages. First, I didn't have to design and debug my own event system.<nobr> <wbr></nobr>:) Second, rather than having to learn the quirks of a one-off system, you learn the quirks of Mo[uo]se and then can apply that knowledge all over the place.</p><p>There's <a href="http://github.com/schwern/test-more/issues/labels/Test-Builder2">a pile of stuff to be done in TB2</a>, a lot of them are fairly small and self contained. Have a look. Patches welcome.</p>schwern2010-09-09T08:33:42+00:00journalTest::Builder2 at 10k Feet
http://use.perl.org/~schwern/journal/40527?from=rss
<p>Here's a diagram of the "flow" of assert results through Test::Builder version 1.</p><blockquote><div><p> <tt> .-------.<br> | foo.t |<br> '-------'<br> |<br> |<br> .-------------. | .----------------.<br> | Test::More |<--------->| Test::Whatever |<br> '-------------' '----------------'<br> | |<br> | |<br> | |<br> | .---------------. |<br> '---->| Test::Builder |<----'<br> '---------------'<br> |<br> v<br> .-----.<br> | TAP |<br> '-----'<br> |<br> v<br> <nobr> <wbr></nobr>.---------------.<br> | Test::Harness |<br> '---------------'</tt></p></div> </blockquote><p>You write foo.t using Test::More and Test::Whatever. These both<br>use the same Test::Builder object. It spits out TAP which<br>Test::Harness converts into something human readable.</p><p>The big problem there is Test::Builder is monolithic. There's no<br>further breakdown of responsibilities. It only spits out TAP, and<br>only one version of TAP.</p><p>Here's what Test::Builder2 looks like:</p><blockquote><div><p> <tt> <nobr> <wbr></nobr>.-------.<br> .----------------| foo.t |-------------------.<br> | '-------' |<br> | | |<br> | | |<br> v v v<br> <nobr> <wbr></nobr>.------------. .----------------. .------------------.<br> | Test::More | | Test::Whatever | | Test::NotUpdated |<br> '------------' '----------------' '------------------'<br> | | |<br> | v v<br> | .----------------. .---------------.<br> '---------->| Test::Builder2 |<------| Test::Builder |<br> '----------------' '---------------'<br> |<br> v<br> .--------------. <nobr> <wbr></nobr>.-------------.<br> | TB2::History |<---| TB2::Result |<br> '--------------' '-------------'<br> |<br> |<br> <nobr> <wbr></nobr>.--------------------------. | .---------------------.<br> | TB2::Formatter::TAP::v13 |<-----'------>| TB2::Formatter::GUI |<br> '--------------------------' '---------------------'<br> | |<br> v |<br> <nobr> <wbr></nobr>.-------------------------------. |<br> | TB2::Formatter::Streamer::TAP | |<br> '-------------------------------' |<br> | |<br> v |<br> .-----. |<br> | TAP | |<br> '-----' |<br> | |<br> v v<br> <nobr> <wbr></nobr>.---------------. .-----------------.<br> | Test::Harness | | Pretty Pictures |<br> '---------------' '-----------------'</tt></p></div> </blockquote><p>It starts out the same, foo.t uses a bunch of test modules<br>including Test::More and Test::Whatever using the same Test::Builder2<br>object, but it also uses Test::NotUpdated which is still using<br>Test::Builder. That's ok because Test::Builder has been rewritten in<br>terms of Test::Builder2 (more on that below).</p><p>Test::Builder2, rather than being a monolith, produces a<br>Test::Builder2::Result object for each assert run. This gets stored<br>in a Test::Builder2::History object for possible later use. It also<br>gets handed to a Test::Builder2::Formatter object, the default is<br>Test::Builder2::TAP::v13 which produces TAP version 13. This is fed<br>to a Streamer that prints it to STDOUT and STDERR which is read by<br>Test::Harness and made human readable.</p><p>Because Test::Builder2 is not monolithic, you can swap out parts. For<br>example, instead of outputting TAP it could instead hand results to a<br>formatter that produced a simple GUI representation, maybe a green<br>bar, or something that hooks into a larger GUI. Or maybe one that<br>produces JUnit XML.</p><p>Here's how Test::Builder and Test::Builder2 Relate.</p><blockquote><div><p> <tt> <nobr> <wbr></nobr>.-----. .-----.<br> | TB2 | | TB1 |<br> '-----' '-----'<br> | |<br> | |<br> | |<br> | |<br> v v<br> <nobr> <wbr></nobr>.-------------. <nobr> <wbr></nobr>.--------------. .-------------.<br> | TB2::Result |------->| TB2::History |<--------| TB2::Result |<br> '-------------' '--------------' '-------------'<br> | |<br> | |<br> | |<br> | <nobr> <wbr></nobr>.----------------. |<br> '------------->| TB2::Formatter |<--------------'<br> '----------------'<br> |<br> v<br> <nobr> <wbr></nobr>.--------.<br> | Output |<br> '--------'</tt></p></div> </blockquote><p>Test::Builder and Test::Builder2 coordinate their actions by sharing<br>the same History and Formatter objects. If you call TB1->ok() it<br>produces a Result object which it hands to the History singleton and<br>the Formatter singleton. If you call TB2->ok() it produces a Result<br>object which it hands to the same History and Formatter objects.</p><p>This allows most of the Test::Builder code to remain the same while<br>still coordinating with Test::Builder2. It also allows radically<br>different builders to be made without Test::Builder2 dictating how<br>they're to work.</p><p>The downside is that roles applied to Test::Builder2 will not effect<br>Test::Builder. Because of this, Test::Builder may become more closely<br>coupled with Test::Builder2 in the future.</p><p>Diagrams by <a href="http://search.cpan.org/dist/App-Asciio">App::Asciio</a>.</p>schwern2010-09-09T08:15:22+00:00journalA month of Test::Builder2
http://use.perl.org/~schwern/journal/40517?from=rss
<p>I've had <a href="http://www.perlfoundation.org/test_builder_2">a grant open for Test::Builder2</a> for, oh god over two years now. Since I started it, Perl 6 has had a release! I think its the second oldest running dev grant.</p><p>I've cleared the decks of other responsibilities and can dedicate September to, if not finishing, then at least releasing something people can poke at. First alpha release was supposed to be "two weeks after the start" ha ha ha! oh god. The design has evolved and simplified greatly in the intervening two years, but its time to get something the hell out the door. At least a <a href="http://github.com/schwern/test-more/tree/Test-Builder2">Test::Builder2</a> Star if you will.</p><p>There's critical components missing. There's no diagnostics, YAML or otherwise. The issues with nested asserts are still congealing. Plans are not enforced. Result objects are in the middle of being remodeled... again. But Test::Builder is using what parts of Test::Builder2 are usable. Multiple output formats and streams work. Asserts can be nested in the common, simple cases without having to fiddle with $Level. And you can hook into various events.</p><p>Step one is I'm going to seal up what's there, write docs where they're missing, and release something.</p><p>A release before October or the grant dies.</p>schwern2010-08-28T04:08:39+00:00journalAlien::SVN - new release, new management
http://use.perl.org/~schwern/journal/40503?from=rss
<p>Those of you still stuck using Subversion will be happy to find <a href="http://search.cpan.org/~mlanier/Alien-SVN-1.6.12.0/">a new release of Alien::SVN</a>. It drags it forward to 1.6.12, doesn't do much else.</p><p>Also, Alien::SVN has finally found a new manager! From out of the blue comes <a href="http://search.cpan.org/~mlanier/">Matthew Lanier</a> with a patch and the will and a PAUSE ID. He'll be taking care of things from now on. Its his first CPAN module, be gentle. Godspeed, Matthew.</p>schwern2010-08-18T22:33:29+00:00journalUpcoming Events with Perl content
http://use.perl.org/~gabor/journal/40489?from=rss
I have not posted here for ages but according to the recent Perl Survey it seems there are still a lot of people who prefer reading use.perl.org than
<a href="http://blogs.perl.org/">blogs.perl.org</a> or <a href="http://ironman.enlightenedperl.org/">Iron Man</a>
<p>
So just to let these readers to know, there are going to be a number of <a href="http://szabgab.com/blog/2010/08/upcoming-events-for-promoting-perl.html">tech-events with Perl content</a> where you could help out.</p>gabor2010-08-10T17:46:55+00:00journalTest::Builder2::Design
http://use.perl.org/~schwern/journal/40487?from=rss
<p>In an effort to shed some light on what Test::Builder2 is about, I took a few hours and performed a brain dump about its goals and design. You can see the result in the new <a href="http://github.com/schwern/test-more/blob/Test-Builder2/lib/Test/Builder2/Design.pod">Test::Builder2::Design</a> document.</p><p>The key design goals are 1) that it has to work, 2) that it has to work everywhere and 3) that it has to test everything. This throws out a lot of 98% solutions.</p>schwern2010-08-10T02:31:05+00:00journalMethod::Signatures returns! 5.12, func() and fast!
http://use.perl.org/~schwern/journal/40474?from=rss
<p>Chip submitted a minor performance patch to Method::Signatures today. That drove me to push out <a href="http://github.com/schwern/method-signatures/blob/v20100730/Changes">a new release</a> making it friendly to 5.12 and adding func() for non methods!</p><p>
func hello(:$greeting = "Hello",<nobr> <wbr></nobr>:$place = "World") {<br>
print "$greeting, $place!\n";<br>
}</p><p>
hello( place => "Earth" );</p><p>For those who don't know, one of the neato features of <a href="http://search.cpan.org/perldoc?Method::Signatures">Method::Signatures</a> is that it can <a href="http://search.cpan.org/~mschwern/Method-Signatures-20090620/lib/Method/Signatures.pm#Aliased_references">alias references</a> to make working with references less of a trial:</p><p>
func popn(\@array, $howmany) {<br>
return splice @array, -$howmany;<br>
}</p><p>
my @stuff = (1,2,3,4,5);<br>
my @last_three = popn(\@stuff, 3); # 3,4,5<br>
print @last_three;</p><p>It does this with the amazing <a href="http://search.cpan.org/perldoc?Data::Alias">Data::Alias</a> module. Unfortunately, 5.12 broke its black magic and its non-trivial to fix. Method::Signatures now makes Devel::Alias an optional dependency. If its available, it'll use it. Otherwise, no aliasing for you.</p><p>But that's ok, because perl5i makes working with references enjoyable. And while perl5i is adding its own simple signatures, they're forward compatible with Method::Signatures! They play together, so if you want perl5i and the full power of Method::Signatures you can have them.</p><p>
use perl5i::2;<br>
use Method::Signatures;</p><p>
func echo($message is ro) {<br>
say $message;<br>
}</p><p>Just make sure you load MS after perl5i. The last one loaded wins.</p><p>Finally, I was comparing Method::Signatures with MooseX::Method::Signatures and made a disturbing discovery. I always new MooseX::Method::Signatures would have a performance penalty, it does more checks than Method::Signatures, I just didn't realize how bad it was.</p><p>Here's comparing an empty signature: <code>method foo() {}</code>.</p><blockquote><div><p> <tt> Rate MMS MS Std<br>MMS 3207/s -- -100% -100%<br>MS 1498875/s 46644% -- -1%<br>Std 1508351/s 46940% 1% --</tt></p></div> </blockquote><p>That's showing MooseX::Method::Signatures is 450x slower than either Method::Signatures or a normal method call creaking out a mere 3500 method calls per second as compared to the 1.5 million it should be doing. And that's for a method with an empty signature!</p><p>To be clear, that's the speed of calling a method, not compiling them.</p><p>Here's one comparing a simple signature that requires a check, so MS can't optimize it away: <code>method foo($arg!) { return $arg + 1 }</code> That's a required positional argument.</p><blockquote><div><p> <tt> Rate MMS MS Std<br>MMS 2928/s -- -100% -100%<br>MS 983127/s 33481% -- -2%<br>Std 1005357/s 34240% 2% --</tt></p></div> </blockquote><p>3000 method calls instead of a million.</p><p>Now I'm the first to counter arguments bemoaning method call overhead. Usually it doesn't matter. Usually the extra cost of calling a method and checking arguments is insignificant compared to what that method actually does. And MooseX::Method::Signatures has features Method::Signatures does not, most significantly type checking. But my god! Three orders of magnitude of performance lost! And its not even using the extra MMS features. That's just too much.</p>schwern2010-07-31T00:49:55+00:00journalPerl 6 Is The Language Your Language Could Smell Like
http://use.perl.org/~schwern/journal/40472?from=rss
<p><a href="http://www.youtube.com/watch?v=owGykVbfgUE">Hello programmers</a>. Look at your code, now at Perl 6, now back at your code, now back at Perl 6! Sadly, your code is not written in Perl 6. But if you use <a href="http://rakudo.org/announce/rakudo-star/2010.07">Rakudo Star</a> then Perl 6 is the language your code could be written in!</p><p><a href="http://github.com/rakudo/star/downloads">Now Microsoft scented!</a></p>schwern2010-07-29T19:24:09+00:00journal"def" or "func"?
http://use.perl.org/~schwern/journal/40444?from=rss
<p>perl5i 2.3.0_01 now has <a href="http://twitter.com/perl5i/status/18391811333">basic methods and subroutine signatures</a> with code basically lifted straight from <a href="http://search.cpan.org/dist/Method-Signatures-Simple">Method::Signatures::Simple</a>. <a href="http://search.cpan.org/dist/MooseX-Declare">MooseX::Declare</a> got me addicted, now I want them everywhere.</p><blockquote><div><p> <tt>use perl5i::2;<br>
<br>def add($this, $that) {<br> return $this + $that;<br>}<br>
<br>method new($class: %args) {<br> return bless \%args, $class;<br>}<br>
<br>my $echo = def($arg) { return $arg };</tt></p></div> </blockquote><p>Its alpha for two reasons. First, I don't have time right now to really thoroughly test it, but I really want it.</p><p>Second, overriding "sub" is hard. <a href="http://search.cpan.org/dist/signatures">Its been done</a> but its a bit twitchy. Defining a new keyword is easy(er). So what should that keyword be? I've come up with two that have good arguments. "def" and "func". Both are short. "def" has the benefit of being used by other programming languages a Perl programmer is likely to encounter and not hate (Python, Ruby, Scala, Groovy). "func" is nice because it pretty clearly means "function" whereas "define" is a bit ambiguous.</p><p>perl5i currently does both. Only one will survive in version 3 (the other will be deprecated). Before you comment on which is your favorite, try it for a little bit. I found a difference between what I thought I like and what I actually use.</p>schwern2010-07-13T00:06:57+00:00journalWhere The Hell Is Test::Builder2?
http://use.perl.org/~schwern/journal/40421?from=rss
<p>My progress and communication about the Test::Builder2 grant has been nothing short of appalling. There is a sort of herky-jerky progress where I figure out a design problem, push the code forward, then remember a use-case that throws a wrench in the whole design and the whole thing comes to a screeching halt again.</p><p>At the QA hackathon we elegantly solved the problem of things like <a href="ahref=">die-on-fail and Test::NoWarnings</a> but then ran afoul of things like Test::Warn and Test::Exception which runs tests inside of tests but those aren't actually part of the test stack.</p><p>Confused? I'll post more about it another time. Point is, TB2 continues to move forward, its just that there's long periods of rumination between sprints of development. And I get distracted by other projects. At this rate I'll be collecting Social Security before I collect the second half of the grant. I really want TB2 to happen, but something decisive has to be done. I work best with hard deadlines, so the plan is to clear a month for working mostly on TB2. A lot of the wibbling is trying to come up with the most elegant solution, but I usually have a less than elegant way to solve it and move forward. If its between an elegant TB2 that doesn't exist and a less elegant TB2 that does, well, go with the one that exists. With the way my schedule is looking, that will probably be mid-August to mid-September. If that doesn't produce an alpha, then I'll kill the grant.</p><p>That doesn't mean TPF gets nothing for your money. Chunks of TB2 can be harvested to improve TB1. Specifically, the TB2 formatting and history objects. The TB2 formatter makes the guts of TB1 cleaner, and it also allows it to produce something other than TAP. Used together, history and formatter allows non-Test::Builder based test frameworks to work together with Test::Builder providing even more flexibility. This is <a href="http://github.com/schwern/test-more/blob/Test-Builder2/lib/Test/Builder.pm">already done in the TB2 branch</a>.</p><p>Looking at the grant deliverables, most of it is done:</p><blockquote><div><p> <tt>* Split up global shared Test resources into individual objects<br> * The test counter<br> * The output filehandles<br> * The plan<br>
<br>* Allow hooks for global beginning and end of test functions.<br> * Ensure multiple hooks "stack"<br> * die on fail<br> * debug on fail<br>
<br>* Hooks for global beginning and end of test actions<br> * Example: A safer Test::NoWarnings<br> * Example: Don't cleanup temp files on failure so they can be debugged<br>
<br>* Allow for test output other than TAP<br>
<br>* Allow another Test::Builder-like module to work in the same process<br> as Test::Builder (for example, sharing the counter).<br>
<br>* Rewrite Test::Builder in terms of Test::Builder2.</tt></p></div> </blockquote><p>Here's what's not complete:</p><blockquote><div><p> <tt>* Split up localizable behaviors into objects<br>
<br>* Allow individual test modules to locally override Test::Builder2 behaviors<br>
<br>* Allow test modules to globally override Test::Builder2 behaviors<br> * How the plan works</tt></p></div> </blockquote><p>Since I'm not writing to the letter of the law, <a href="http://github.com/schwern/test-more/issues/labels/Test-Builder2">there's more than that to be done before release</a>, but the project does move.</p>schwern2010-06-27T19:16:09+00:00journalThe Post-YAPC Plan
http://use.perl.org/~schwern/journal/40420?from=rss
<p>I spent most of YAPC::NA mildly sick, sleep deprived and writing talks. Each of those things alone isn't so bad, but put all together meant I had time and energy enough to do my talks, discuss with people after, and that's about it. As a result, I was kind of dead in the head most of the time and didn't do a whole lot of interaction with people. I didn't feel like I got the most out of the one opportunity a year I get to hang out with huge gobs of Perl folk.</p><p>One of the things which I wanted to do at YAPC was get <a href="http://gitpan.integra.net/">gitpan</a> restarted. It can run right now, but the code is a mess and needs to be babied. It needs a rewrite. That rewrite was supposed to happen at YAPC but see above. I'm doing that now, using MooseX::Declare, perl5i and Path::Class just to mess around with them seriously. Also log4perl, which I'm finally learning a decade late. Its fun, far more pleasant than knocking it together without, once you learn to cope with Moose's idiosyncrasies. Better to learn the quirks of one complete system than nine incomplete ones.</p><p>That's what's absorbing my time right now. After that I want to add subroutine signatures to perl5i and the <a href="http://piratepad.net/ULub7Vjsgn">über file and directory objects</a>. They were supposed to be in, at least as a prototype, by YAPC but that didn't work out. Using MooseX::Declare, Path::Class and perl5i together has me drooling for them.</p><p>Will Coleda, representing the TPF, found me at YAPC and mercifully did not break my legs. We hashed out a plan to make a last stab at Test::Builder2 before calling the grant done. That's not going to happen until August, I'll post about that later.</p><p>Oh, and I have a talk to do at OSCON about how <a href="http://www.oscon.com/oscon2010/public/schedule/detail/14113">the world is going to end in 2038</a> assuming <a href="http://www.youtube.com/watch?v=ZW2qxFkcLM0">2012 doesn't claim the prize first</a>. And a two part <a href="http://opensourcebridge.org/proposals/420">Git tutorial for Drupal programmers</a> that I'm developing into a commercial class. And two paid clients to keep happy.</p><p>One thing I *don't* have to worry about is MakeMaker. Gird your loins, MakeMaker has provisionally been handed off to Matt Trout. Maybe I need to worry about it more...</p>schwern2010-06-27T18:34:30+00:00journalObject::ID - A unique object identifier for any object
http://use.perl.org/~schwern/journal/40340?from=rss
<p>Something Perl's OO has been missing has been a reliable way to identify an object. Is $this the same as $that? Not asking if it contains the same information, but is it a referent to the same object? Have we seen it before? When I alter $this will I also be changing $that?</p><blockquote><div><p> <tt>package Foo;<br>
<br>use Object::ID;<br>
<br>...write the class however you want...</tt></p></div> </blockquote><p>Really, HOWEVER YOU WANT! Inside out, outside in, code refs, regexes, globs, Moose, Mouse... Call the constructor whatever you like, add in a DESTROY method. Doesn't matter, it'll work.</p><blockquote><div><p> <tt>my $id = $obj->object_id;<br>my $uuid = $obj->object_uuid;</tt></p></div> </blockquote><p> <code>object_id()</code> is a cheap, process-specific identifier. <code>object_uuid()</code> is a bit more expensive on first call (it has to generate the <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Uuid">UUID</a>, about 30% slower) but it should be universally unique across machines and processes.</p><p>That's great for YOUR objects, but what about everyone else? You can either inject the Object::ID role one class at a time...</p><blockquote><div><p> <tt>package DateTime;<br>use Object::ID;<br>
<br>my $date = DateTime->now;<br>say $date->object_id;</tt></p></div> </blockquote><p>or you can load UNIVERSAL::Object::ID and every object has it. EVERY OBJECT! Even things you don't realize are objects.</p><blockquote><div><p> <tt>use UNIVERSAL::Object::ID;<br>
<br># Regexes are objects<br>say qr/foo/->object_id;<br>
<br># Loading IO::Handle turns all filehandles into objects<br>use IO::Handle;<br>open my $fh, "foo/bar";<br>say $fh->object_id;</tt></p></div> </blockquote><p>But OH GOD UNIVERSAL! Well, use at your own risk. Its handy to use in your own programs and private libraries. Or you can use <a href="http://search.cpan.org/dist/Method-Lexical">Method::Lexical</a> and apply it lexically.</p><p>Why not just use the object's reference address? Well, as people implementing inside-out objects discovered, they're not unique. They're not thread safe, and worse they're not even unique for the life of the process. Perl will reuse the reference of a destroyed object. Observe:</p><blockquote><div><p> <tt>{<br> package Foo;<br>
<br> sub new {<br> my $class = shift;<br> return bless {}, $class;<br> }<br>}<br>
<br>for(1..3) {<br> my $obj = Foo->new;<br> print "Object's reference is $obj\n";<br>}</tt></p></div> </blockquote><p>Run that and you should get the same reference, three times, for three different objects.</p><p>And then there's the problem of string overloaded objects. You have to be careful to always use Scalar::Util::refaddr or overload::StrVal.</p><p>It turns out inside-out objects have nearly the same problem, and 5.10.0 introduced field hashes to solve that. rjbs explains the pain of all this at slide 120 in his excellent <a href="http://www.slideshare.net/rjbs/perl-510-for-people-who-arent-totally-insane">5.10 For People Who Aren't Totally Insane</a>. You can read the <a href="http://search.cpan.org/dist/Hash-Util-FieldHash">gory details of field hashes</a> but it comes down to this: in 5.10 you can A) get a process unique, thread safe identifier for an object and B) you can store it in hash such that it gets destroyed when the object is destroyed. Perfect!</p><p>Because of this, if you look inside Object::ID you'll see there's not a lot to it. It makes a field hash to store the IDs in, a state variable to hold an ID counter, and then just accesses the field hash.</p><blockquote><div><p> <tt>use Hash::Util::FieldHash qw(fieldhash);<br>fieldhash(my %IDs);<br>
<br>sub object_id {<br> my $self = shift;<br>
<br> state $last_id = "a";<br>
<br> return $IDs{$self}<nobr> <wbr></nobr>//= ++$last_id;<br>}</tt></p></div> </blockquote><p>No scary black magic (beyond what's inside fieldhash). Its so simple, which is why it works with everything.</p><p>Now, I didn't come up with this implementation. I just laid out the requirements and <a href="http://profvince.com/">Vincent Pit</a> filled in the blanks. I was only vaguely aware of field hashes, Vincent made the connection. Thank you VPIT!</p><p>Practical applications? Honestly, I'm not sure. I needed it as a shortcut for expensive object equality checks in perl5i. Maybe some of the OO theorists out there can fill this part in. Let me know what you might use it for.</p><p>Possible extensions? Well... with some tweaking Object::ID can be used as a universal object registry. Not only can you ask "does the object associated with this ID still exist" but field hashes provide the ability to get the object associated with an ID. It would only work on objects that have had their ID asked of them, and thus registered with the field hash, but how else would you have the ID? Is this useful? Is this a security hole? I dunno, but it would be easy.</p>schwern2010-05-02T17:17:01+00:00journalBob Jacobsen interview on FLOSS Weekly
http://use.perl.org/~merlyn/journal/40324?from=rss
Last week, I interviewed Bob Jacobsen for FLOSS Weekly. Bob used Perl's Artistic 1.0 license on some Java code to manage model trains. The code was later patented by an Oregon-based company(!) and then Bob got sued(!!) for Bob distributing the other company's patented code(!!!). The good part of the story is that this is the first test at the US Federal Appeals Court level for an open source license to be enforceable even if no money exchanges hands, and... we won!
<p>
Bob spent a lot of time and money on the case though. Listen to <a href="http://twit.tv/floss117">the podcast</a> and contribute to <a href="http://jmri.sourceforge.net/donations.shtml">his legal defense</a> if you care about open source.</p>merlyn2010-04-23T03:55:11+00:00journalOMG UNICORNIFY::URL!!! <3
http://use.perl.org/~schwern/journal/40289?from=rss
<p><a href="http://unicornify.appspot.com/avatar/e55e0ec3c00f834d78fbdddeaa36e308?s=128">OMG! A UNICORN PONY FOR MEEEE!!!</a></p><p>You can get 1 2 wth <a href="http://github.com/schwern/gravatar-url/blob/master/lib/Unicornify/URL.pm">Unicornify::URL</a>!! Here's a program to do it at the command line.</p><blockquote><div><p> <tt>use Acme::Pony;<br> bUf<br> Fybuf<br> FyBuFFYbU<br> FfyBUFfYbUff<br> YBuffybuFfyBuF<br> fYbUffYBUfFYbUff<br> YbUFfYBuffYBuFFYBu<br> FFybUffYBUffYBUfFYb<br> UffYbUFfyBUffYBuFfyB<br> UFFybUfFYBuffYbUFF<br> ybUfFyBuFfyBufFy<br> BuffYBufFyBUfFYB uffY<br> bUffybuffyBUFfyBuf FYBuFfy<br> BuFFybUFFyBUffyBuFFYbuffybUf fYbUfFYBu<br> fFYB uFFyBufFyBUfFYbufFYbUFFYbUFfyBufFYBufFYBu<br> FFyBufFyBUffYBufFYbUffYBUFfYBUFFyBuFfYbUFFybUffYBU<br>
ffyBU fFYbuffYbUffybuffYbuFfYbuFFyBuFFyBUfFybufFYbUf<br>fYbUF fybUFfYBuffybuFfyBuFFYBuffYBUFFybuffybUffYBu<br> fFYBuf fyBuFFyBufFyBUffYBufFYbufFyBUFfybUFfYbuffyb<br> uFfyB UffYBUfFybUfFYbuFfYBUFfYbUffYBuffybuFf<br> yBuFFY BuffYBUFFybuffybUffYbufFYb<br> ufFyb UFfybufFYBuffybufFyb<br> UffYb UffybUFfY buffybuF<br> fybUf fyBuffy BUFfYbuF<br> FYbUF fyBuffYbuFFyBUFf<br> ybUf Fybu ffYb UffybuF<br> fYbu ffYB UFFy BuFFYB<br> UfFy BuF fybU ffYB<br> Uff Ybu<br> fFyb uFf<br> YBUF<br> F<br>
<br>yBuFFYBUfFy</tt></p></div> </blockquote><p><3 k thx bye!!1!11!!!</p>schwern2010-04-01T22:51:34+00:00journalSome Facts About Schwern
http://use.perl.org/~schwern/journal/40271?from=rss
<p><a href="http://opensourcebridge.org/">Open Source Bridge</a> requested that I improve <a href="http://opensourcebridge.org/users/111">my bio</a>, so I decided to share some facts about myself...</p><blockquote><div><p>Schwern has a copy of Perl 6, he lets Larry Wall borrow it and take notes.</p><p>Schwern once sneezed into a microphone and the text-to-speech conversion was a regex that turns crap into gold.</p><p>Damian Conway and Schwern once had an arm wrestling contest. The superposition still hasn’t collapsed.</p><p>Schwern was the keynote speaker at the first YAPC::Mars.</p><p>When Schwern runs a smoke test, the fire department is notified.</p><p>Dan Brown analyzed a JAPH Schwern wrote and discovered it contained the Bible.</p><p>Schwern writes Perl code that writes Makefiles that write shell scripts on VMS.</p><p>Schwern does not commit to master, master commits to Schwern.</p><p>SETI broadcast some of Schwern’s Perl code into space. 8 years later they got a reply thanking them for the improved hyper drive plans.</p><p>Schwern once accidentally typed “git pull —hard” and dragged Github’s server room 10 miles.</p><p>There are no free namespaces on CPAN, there are just modules Schwern has not written yet.</p><p>Perl's threads are implemented with a single strand of Schwern's hair.</p><p>"Schwern" cmp "Chuck Norris" will cause Perl to segfault rather than try to compare them.</p><p>Schwern’s tears are said to cure cancer, unfortunately his Perl code gives it right back.</p></div></blockquote>schwern2010-03-26T03:45:05+00:00journalThe Basic Unit of Bug Report Frustration
http://use.perl.org/~schwern/journal/40260?from=rss
<p>I submitted a proposal to OSCON called "How To Report A Bug" about the social issues involved in reporting and accepting bug reports. Its still pending, but its caused me to do a little writing for it. I came up with this introduction which I feel sums up the problem well. I'm also tickled that one measures bug report frustration in bags of shit.</p><blockquote><div><p>Developers often treat bug reports like someone dumping a bag of shit on your doorstep, ringing the bell and telling you to clean it up. That's not what they are. A bug report is someone pointing out that there's some shit on your doorstep, they stepped in it, and maybe it should be cleaned up.</p><p>Either way, nobody likes stepping in shit. And nobody likes cleaning up shit. So the whole interaction starts off on the wrong foot, perhaps the one covered in shit. Your job, as developer or as reporter, is to deliberately steer it back to being a positive one where the developer wants to fix shit and the reporter wants to continue to report shit.</p></div></blockquote>schwern2010-03-22T23:57:26+00:00journalGone
http://use.perl.org/~Ovid/journal/40243?from=rss
<p>Like many others, I'm no longer posting here very much. You'll find my new technical journal at <a href="http://blogs.perl.org/users/ovid/">blogs.perl.org</a>. It's much shinier.</p><p> <a href="http://siteanalytics.compete.com/use.perl.org/">As you can see, use.perl visits have been dropping for a while</a> (blogs.perl.org is too new to show up on that search) and the <a href="http://use.perl.org/">front page of use.perl has been sadly neglected</a>. As for blogs.perl.org, after an initial rough start, <a href="http://blogs.perl.org/users/adam_kennedy/2009/12/migrating-from-useperlorg-to-blogsperlorg.html">plenty</a> <a href="http://blogs.perl.org/users/thefinalcut/2009/12/first-post-on-the-shiny-new-onion.html">of</a> <a href="http://blogs.perl.org/users/limbicregion/2009/11/goodbye-useperlorg-hello-blogsperlorg.html">people</a> are switching over and are very happy with the shiny.</p><p>I have fond memories of use.perl.org, but it's just too old and out-of-date. Come on over to our new platform and look around. Plus, <a href="http://github.com/davorg/blogs.perl.org/issues">tell us what you want changed about it</a>. (To be fair, while I was involved in the project to get it launched (mostly kibitzing and asking why things were stalled -- I'm such a marketroid<nobr> <wbr></nobr>:), the hands-on work was Dave Cross, Aaron Crane and the wonderful folks at <a href="http://www.sixapart.com/">SixApart</a>.)</p>Ovid2010-03-14T08:02:43+00:00journalTest::Class::Most
http://use.perl.org/~Ovid/journal/40148?from=rss
<a href="http://blogs.perl.org/users/ovid/2010/01/-package-sometestclass.html">Test::Class::Most</a>.Ovid2010-01-31T19:25:10+00:00journalTesting with PostgreSQL
http://use.perl.org/~Ovid/journal/40145?from=rss
<p>My new personal project has a PostgreSQL database. <a href="http://blogs.perl.org/users/ovid/2010/01/testing-postgresql.html">Here's how I'm handling testing</a>.</p>Ovid2010-01-30T16:22:57+00:00journalRoles without Moose?
http://use.perl.org/~Ovid/journal/40127?from=rss
<p> <a href="http://blogs.perl.org/users/ovid/2010/01/roles-without-moose.html">Milliseconds are important</a>.</p>Ovid2010-01-25T14:04:31+00:00journalThe return of perl5i!
http://use.perl.org/~schwern/journal/40125?from=rss
<p>After an extended period in hibernation, <a href="http://search.cpan.org/dist/perl5i/">perl5i returns to CPAN</a> with a rack of <a href="http://github.com/schwern/perl5i/blob/21d2f7b777ee92870b16a5c1c7a212051053692d/Changes">new changes</a> since the last CPAN release. Thanks to Bruno Vecchi, Chas Owens, Darian Patrick, Jeff Lavallee, Michael Greb, rjbs, benh and chromatic for contributing!</p><p>Why was it deleted from CPAN? Version numbers. I'd used my usual ISO date integer style versioning but realized pretty quick that I need <a href="http://semver.org/">full X.Y.Z versioning</a> to indicate incompatible changes. Yes, perl5i is planning to be incompatible but without breaking your code!</p><p>How? By allowing you to declare what major version of perl5i you rely on. At this point its most likely going to be "use perl5i::2" which has the nice benefit of also allowing you to declare a dependency on perl5i::2. Easy peasy.</p><p>The question remains, what should "use perl5i" do? Should it A) load the currently installed version of perl5i? Or B) die with instructions on what to do? A is convenient, but means you'll get (probably unknowingly) walloped by an incompatibility later. B is a little inconvenient, but it makes the planned incompatibilities explicit and visible. The existence of a perl5i command line program (which also works on the #! line) makes A less of a concern if you want to go that route. So likely in short order "use perl5i" won't work any more. But I'd still like your thoughts on the matter.</p>schwern2010-01-24T02:00:43+00:00journalUnless what?
http://use.perl.org/~Ovid/journal/40103?from=rss
<p> <a href="http://blogs.perl.org/users/ovid/2010/01/unless-what.html">Unless what?</a> </p>Ovid2010-01-15T11:47:53+00:00journalDear Recruiters
http://use.perl.org/~Ovid/journal/40100?from=rss
<p> <a href="http://blogs.perl.org/users/ovid/2010/01/dear-recruiters.html">Dear Recruiters</a> </p>Ovid2010-01-13T13:06:11+00:00journalNext QA Hackathon -- What Do You Need?
http://use.perl.org/~Ovid/journal/40093?from=rss
<p> <a href="http://blogs.perl.org/users/ovid/2010/01/next-qa-hackathon----what-do-you-need.html">Read about the next QA Hackathon</a>.</p>Ovid2010-01-12T11:37:14+00:00journalGreat Perl Code
http://use.perl.org/~schwern/journal/40090?from=rss
<p>I was in a bar the other day talking with somebody about Perl. He asked, "what is some great Perl code I could read?" He was looking for a non-trivial amount of production Perl 5 code that elegantly solves a problem, and is beautiful to read.</p><p>I'm couldn't answer that. The code I see is either beautiful to read but fairly boring in what it does OR is an elegant solution but is terrifying to read (for example, autodie). I'm a biased observer, I work mostly with the plumbing so I see mostly the scary stuff that implements the elegant solutions.</p><p>What code would you show a non-Perl programmer read that is both beautiful and interesting?</p>schwern2010-01-11T22:59:39+00:00journalMost Popular Testing Modules - January 2010
http://use.perl.org/~Ovid/journal/40086?from=rss
<p> <a href="http://blogs.perl.org/users/ovid/2010/01/most-popular-testing-modules---january-2010.html">Most popular testing modules as of January 2010</a> </p>Ovid2010-01-07T21:46:46+00:00journalgitPAN now updating
http://use.perl.org/~schwern/journal/40079?from=rss
<p>After a month's break I've fixed up the <a href="http://github.com/gitpan">gitPAN</a> importer so it can update distributions in place fairly efficiently. This involved a major overhaul of <a href="http://search.cpan.org/perldoc?Parse::BACKPAN::Packages">Parse::BACKPAN::Packages</a> into the new SQLite and DBIx::Class backed <a href="http://search.cpan.org/perldoc?BackPAN::Index">BackPAN::Index</a>. Faster, leaner, far more flexible.</p><p>Its grinding through an update now, should be done before tomorrow morning. Still running off my laptop, hosting is in the works and then daily updates can happen.</p><p>UPDATE: The update is complete. Hit a few snags. 1) I wasn't always sorting releases by date, so I might have gotten some out of order in this update. Eventually there will be a full sweep and rebuild. 2) Some parts of github are case sensitive, some parts are not, and this caused some issues when distribution names subtly change case (like WebService vs Webservice). BackPAN::Index treats this as two different distributions, github treats it as one repository, hilarity ensues.</p><p>So that's the first 90% complete. Given that too about a month and the last 10% takes 90% of the time... see you in 2011.</p>schwern2010-01-07T03:05:02+00:00journalCool Things in Perl 6: Subsets
http://use.perl.org/~Ovid/journal/40072?from=rss
<p> <a href="http://blogs.perl.org/users/ovid/2010/01/cool-things-in-perl-6.html">They're going to be a lot of fun</a>.</p>Ovid2010-01-04T13:11:31+00:00journalCPAN's Greatest Hits - Path::Class
http://use.perl.org/~schwern/journal/40069?from=rss
<p>Once upon a time, file and directory manipulation was considered very convenient. Compared to languages like C and Java, which consider I/O as some sort of distasteful act that should best be done behind at least 9 layers of abstraction, its positively enlightened. But once you use something like Ruby's <a href="http://ruby-doc.org/core/classes/File.html">File</a> and <a href="http://ruby-doc.org/core/classes/Dir.html">Dir</a> objects Perl starts to look a touch out of date.</p><p>In Perl, reading a file or directory is a three step process. Safe path manipulation requires the brilliant but cumbersome File::Spec. Even something like deleting a file requires special code to be safe. Want to reliably delete or create a directory? That's another module, File::Path. Copying a file? File::Copy. And so on.</p><p>The root of the problem is that Perl represents paths as just strings. And while that's enough to uniquely identify them, its not nearly enough to actually do anything with them. You want an object, files and directories which know how to do it all. Path::Class provides.</p><p>Created by Ken Williams, <a href="http://search.cpan.org/perldoc?Path::Class">Path::Class</a> is it. Short, convenient constructors, string overloading and providing just about everything you'd want to do with a path. Since its just sugar on top of all the pre-existing and well-built File modules, its extremely robust.</p><p>Here is why it is awesome.</p><p>Slurp a file.</p><blockquote><div><p> <tt># Perl<br>open my $fh, "<", $file;<br>my $content = do { local $/; <$fh> };<br>close $fh;<br>
<br># Path::Class<br>my $contents = file($file)->slurp;</tt></p></div> </blockquote><p>Iterate over every file in a directory.</p><blockquote><div><p> <tt># Perl<br>opendir my $dh, $dir;<br>for my $thing (grep { $_ ne '.' or $_ ne '..' } readdir $dh) {<br> <nobr> <wbr></nobr>...<br>}<br>closedir $dh;<br>
<br># Path::Class<br>for my $thing (dir($dir)->children) {<br> <nobr> <wbr></nobr>...<br>}</tt></p></div> </blockquote><p>Change the subdir and file on a path (ie. from<nobr> <wbr></nobr>/some/path/foo/bar.txt to<nobr> <wbr></nobr>/some/path/baz/biff.txt)</p><blockquote><div><p> <tt># Perl<br>my($vol, $dir, $file) = File::Spec->splitpath($path);<br>my @dirs = File::Spec->splitdir($dir);<br>pop @dirs;<br>my $newpath = File::Spec->catpath($vol, @dirs, $newdir, $newfile);<br>
<br># Path::Class<br>my $newpath = file($file)->parent->parent->subdir($newdir)->file($newfile);</tt></p></div> </blockquote><p>That last example starts to demonstrate what happens once Path::Class objects become ubiquitous in your code. Rather than instantiating them when needed, they're just there and can be chained together for rapid manipulation. Since they're string overloaded there's no reason not to use them.</p><p>I neglected error handling in the examples above. Path::Class was written back when library functions calling die() was considered impolite. Before pjf hammered home (cleaved with a Bat'leth?) the point that <a href="http://search.cpan.org/perldoc?autodie">exceptions are awesome</a>. So you still have to do all the "or die<nobr> <wbr></nobr>..." junk with Path::Class, you don't even get the convenience of autodie. Fortunately I <a href="https://rt.cpan.org/Ticket/Display.html?id=53309&results=895ad259e1e3f1ef62f38a900bd1cebe">hope to do something about that</a>.</p><p>The next time you find yourself writing "use File::Spec" give Path::Class a shot.</p>schwern2010-01-03T04:10:17+00:00journalPerl 6 Config::INI parser on github
http://use.perl.org/~Ovid/journal/40060?from=rss
<p> <a href="http://blogs.perl.org/users/ovid/2009/12/perl-6-configini-on-github.html">Details here</a>.</p>Ovid2009-12-30T17:48:47+00:00journal