Tagged Questions

Moose is a postmodern object system for Perl 5 that takes the tedium out of writing object-oriented Perl. It borrows all the best features from Perl 6, CLOS (Lisp), Smalltalk, Java, BETA, OCaml, Ruby and more, while still keeping true to its Perl 5 roots.

learn more… | top users | synonyms

30
votes
11answers
2k views

Should I learn Perl 5 OO or Moose first?

I'm still relatively new to Perl Programming, but I know how Perl 5 OO basically works. However, I have never created any project with Perl 5 OO, so I'm quite sure I will run into many pitfalls. ...
16
votes
7answers
763 views

Is checking Perl function arguments worth it?

There's a lot of buzz about MooseX::Method::Signatures and even before that, modules such as Params::Validate that are designed to type check every argument to methods or functions. I'm considering ...
14
votes
2answers
312 views

Moose vs. MooseX::Declare

Assuming I already have a decent knowledge of old-style Perl OO, and assuming I am going to write some new code in some flavor of Moose (yes, I understand there is a performance hit), I was wondering ...
14
votes
2answers
404 views

How to make Mason 2 UTF-8 clean?

There is a nice guide in Four easy steps to make Mason UTF-8 Unicode clean with Apache, mod_perl, and DBI - how to make the old HTML::Mason UTF-8 transparent. Now, Mason 2 has arrived. How do I make ...
14
votes
5answers
2k views

Perl::Critic: Life after Moose?

I've started a conversion of a project to Moose and the first thing I noticed was that my critic/tidy tests go to hell. Moose, Tidy and Critic don't seem to like each other as much as they used to. ...
13
votes
4answers
483 views

Resources for getting started on “modern” Perl

After having heard about new parts of the Perl ecosystem, such as Moose, DeclareX, and Catalyst, I thought that it'd be nice to take a look at Perl. Unfortunately, all of the introductory material I ...
13
votes
2answers
2k views

How do Roles and Traits differ in Moose?

I have written a set of classes and interfaces that are implemented in Moose also using roles. What I am having trouble understanding is the exact differences in both usage and implementation of Moose ...
12
votes
5answers
289 views

Moose OOP or Standard Perl?

I'm going into writing some crawlers for a web-site, the idea is that the site will use some back-end Perl scripts to fetch data from other sites, my design (in a very abstract way..) will be to write ...
11
votes
3answers
997 views

What do you think of MooseX::Declare? [closed]

I've stumbled upon the MooseX::Declare documentation, and I have to say "WOW!". That looks really nice! I think it's the cleanest OOP syntax Perl has. use MooseX::Declare; class BankAccount { ...
10
votes
1answer
179 views

Shorthand for referring to Perl/Moose package names?

In both Python and Java we have import to eliminate the repetition of fully-qualified package/module names throughout code. Is there any equivalent in Perl/Moose? I think it would really make Moose ...
10
votes
5answers
563 views

Are MooseX::Declare and MooseX::Method::Signatures production ready?

From the current version (0.98) of the Moose::Manual::MooseX are the lines: We have high hopes for the future of MooseX::Method::Signatures and MooseX::Declare. However, these modules, while ...
10
votes
3answers
524 views

How can I get structured exceptions from Moose?

Consider this simple class: package Foo; use Moose; has foo => ( is => 'rw', isa => 'Int' ); And then this code: use Try::Tiny; use Foo; my $f = try { Foo->new( foo => 'Not an ...
10
votes
2answers
641 views

How can I mock Moose objects?

What strategies have Perl people used when mocking Moose objects that they will inject into other Moose objects as type-constrained attributes? Test::MockObject::Extends doesn't seem to play well ...
10
votes
2answers
405 views

What is the best way to create a class attribute in Moose?

I need a class attribute in Moose. Right now I am saying: #!/usr/bin/perl use 5.010; use strict; use warnings; use MooseX::Declare; class User { has id => (isa => "Str", is => ...
10
votes
4answers
506 views

How do you do Design by Contract in Perl?

I'm investigating using DbC in our Perl projects, and I'm trying to find the best way to verify contracts in the source (e.g. checking pre/post conditions, invariants, etc.) Class::Contract was ...
9
votes
4answers
337 views

How can I extend Moose's automatic pragma exports?

You know how Moose automatically turns on strict and warnings during import? I want to extend that behavior by turning on autodie and use feature ':5.10' in my Moose classes. I've tracked down where ...
9
votes
4answers
986 views

In Moose, how do I modify an attribute any time it is set?

If you have an attribute that needs to be modified any time it is set, is there a slick way of doing this short of writing the accessor yourself and mucking around directly with the content of $self, ...
9
votes
6answers
603 views

How can I improve Moose performance in non-persistent CGI processes?

Moose is a fantastic object framework. The trouble is that, taken together with its dependencies, it's very big. Our profiling indicates that on our platform, simply loading Moose will incur a 5-6 ...
9
votes
2answers
354 views

How can I integrate Moose into Komodo?

ActiveState's Komodo is my preferred Perl IDE on OS X and XP. Recently I've begun coding new projects using Moose. Has anyone found a way to teach Komodo how to "identify" Moose's Attribute and ...
8
votes
3answers
160 views

Dependency injection for Moose classes

I have a Moose class that needs to send requests of type Foo::Request. I need to make this dependency accessible from the outside, so that I can easily exchange the request implementation in tests. I ...
8
votes
2answers
187 views

Are there any modern (Moose/PSGI) web frameworks other than Catalyst?

Are there any Perl web-development frameworks other than Catalyst that are: written with Moose natively written for PSGI (not with some PSGI-emulation) Unicode ready/safe - so Perl 5.10+ small, ...
8
votes
2answers
341 views

Succinct MooseX::Declare method signature validation errors

I've been a proponent of adopting Moose (and MooseX::Declare) at work for several months. The style it encourages will really help the maintainability of our codebase, but not without some initial ...
8
votes
3answers
503 views

Why is Moose code so slow?

I'm trying to parse a large XML file. I read it using XML::SAX (using Expat, not the perl implementation) and put all the second level and below nodes into my "Node" class: package Node; use Moose; ...
8
votes
3answers
138 views

How do I figure out what module is loading Moose?

I am trying to figure out which module in my CGI::Application is loading Moose. I attempted to overload "require" but I don't seem to have the syntax quite right. If someone could clean up the ...
8
votes
3answers
492 views

What should I do if a Moose builder method fails?

What is the best way to handle a failure in a builder method? For example: package MyObj; use Moose; use IO::File; has => 'file_name' ( is => 'ro', isa => 'Str', required =>1 ...
8
votes
5answers
1k views

How can I code a factory in Perl and Moose?

Is there a simpler or better (=>easier to maintain) way to use Perl and Moose to instantiate classes based on incoming data? The following code is a stripped down sample from a project I'm working ...
8
votes
3answers
779 views

How do I handle optional parameters in Moose?

I'm currently starting with Perl OOP using the "Moose" package. The compiler complains that it "Can't modify non-lvalue subroutine call at Parser.pm line 16." I don't quite understand why I can't ...
8
votes
2answers
453 views

Can I define functions outside of a class using MooseX::Declare?

I recently started using the module MooseX::Declare. I love it for its syntax. It's elegant and neat. Has anyone come across cases where you would want to write many functions (some of them big) ...
8
votes
5answers
503 views

Is there a really good web resource on moving to Moose?

The documentation with the module itself is pretty thin, and just tends to point to MOP.
7
votes
2answers
157 views

Why doesn't “use overload” work with “use namespace:autoclean”?

Ok just to sanity check overload doesnt seem to be working for me. I don't know if it's the version of perl I have, or the version of overload.pm, or something wrong with how I've implemented it, but ...
7
votes
2answers
249 views

Odd behavior with Moose, Try::Tiny, and TryCatch

I've just started working with Moose and have run into an odd problem that I cannot figure out. The following code: #!/usr/bin/env perl use strict; use warnings; use Try::Tiny; { package Foo; ...
7
votes
1answer
101 views

Moose (Perl): access attribute definitions in base classes

Using __PACKAGE__->meta->get_attribute('foo'), you can access the foo attribute definitions in a given class, which can be useful. #!perl package Bla; use Moose; has bla => is => 'ro', ...
7
votes
4answers
167 views

Useful errors for Moose and MooseX::Declare

Moose is very lovely, but sometimes simple typos can cause hair-raisingly exciting long stacktraces with, from my point of view, zero useful content. So, are there any tools to interpret this ...
7
votes
3answers
264 views

How can I get a better error message if a required attribute is not supplied in Moose?

I'm brand new to Moose. Up until today our environments have been on Perl 5.8.2 which would not support Moose. I'm working through some examples, and I thought that the "required => 1" setting on an ...
7
votes
1answer
246 views

Moose::Error::Croak error reporting not from perspective of caller

I just recently started out on Moose and its a great OO framework not only to use but also to learn new OO concepts. One of the things I wanted to do was to do error reporting from perspective of ...
7
votes
3answers
737 views

Moose ArrayRef attribute returned as an Array

I have a Moose class with an attribute that is an ArrayRef (read-only) and is manipulated internally by the object. But when someone calls the accessor method I want it to return an Array (or list) ...
7
votes
2answers
345 views

How do I best make triggered accessors with defaults in Moose?

I have a situation where I'd like to cache some calculations for use later. Let's say I have a list of allowed values. Since I'm going to be checking to see if anything is in that list I'm going to ...
7
votes
2answers
392 views

How can I declare a class variable as floating point in Moose?

How can I declare a class variable as floating point in Moose? My (fictional) sample below produces errors for "Real", "Number" etc ... "Str" works but defeats the purpose .. searching/Google doesn't ...
7
votes
2answers
733 views

How do you create subtypes in Moose?

I'm just starting to use Moose. I'm creating a simple notification object and would like to check inputs are of an 'Email' type. (Ignore for now the simple regex match). From the documentation I ...
6
votes
1answer
54 views

using localtime inside moose default values

What's wrong with the code below ? When run, I get: "Use of uninitialized value in concatenation (.) or string at ./main.pl line 14" #!/usr/bin/perl package Test; use Moose; has 'message' ...
6
votes
1answer
127 views

How can I set a static variable that can be accessed by all subclasses of the same base class (Perl/Moose)?

Since Perl/Moose always calls the base class' BUILD function before it calls the subclass BUILD function, there is a new instance of the base class everytime you instantiate a subclass. How do I go ...
6
votes
2answers
272 views

Moose (Perl): convert undef to empty string or 0 rather than die()

I've received a lot of exceptions from QA due to incomplete data being fed to my Moose constructors. The attribute name is present in the constructor arguments, but the value is undef. It's a fact of ...
6
votes
1answer
106 views

Store a Moose object that has a PDL as an attribute

I am new to Moose and doing quite well until I have hit a snag using a PDL as a property. I want to be able to write an object to a file (I have been using use MooseX::Storage; with Storage('io' => ...
6
votes
1answer
144 views

How to make the Moose constructor die on being passed an undeclared attribute?

Moose is very tolerant by default. You can have a class named Cucumber and pass an undeclared attribute (like wheels) to the constructor. Moose won't complain about that by default. But I might prefer ...
6
votes
1answer
172 views

Why can I use a class name as a Moose type, but not when part of a type union?

I can do this: package Foo; use Moose; has 'time' => ( is => 'rw', isa => 'DateTime' ); package main; use DateTime; my $a = Foo->new(time => DateTime->now); But not ...
6
votes
1answer
251 views

In Perl/Moose, how can I apply a modifier to a method in all subclasses?

I have a Moose class that is intended to be subclassed, and every subclass has to implement an "execute" method. However, I would like to put apply a method modifier to the execute method in my class, ...
6
votes
1answer
417 views

Moose method modifiers on DBIx::Class::Schema models in Catalyst

For any given result class MySchema::Result::Foo (built from default schema loader generated syntax which uses Moose/MooseX::nonmoose) If I add a BUILDARGS method wrapper to sanitize the constructor ...
6
votes
3answers
216 views

In Moose subroutines, how does $meta get into @_?

chromatic's recent blog got me curious about the Moose subroutine has. I was looking at the Moose source code and noticed that inside the has subroutine, there is a $meta variable unpacked from @_. ...
6
votes
3answers
723 views

Is Moose really this slow?

I recently downloaded Moose. Experimentally, I rewrote an existing module in Moose. It seems to be convenient way to avoid writing lots of repetitive code. I ran the tests of the module, and I noticed ...
6
votes
1answer
410 views

How can I use Moose with Test::Class?

I'm currently refactoring a test suite built up by a colleague and would like to use Test::Class[::Most] while doing so. As I started I figured out I could really use a couple of Moose roles to ...

1 2 3 4 5 6