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.
0
votes
0answers
22 views
Moose Mondrian Easel layer architecture
Since Mondrian is so poor documented I would like to ask here.
My project is a three layer Web application.
What I want to do is visualize my project with the three layers as nodes and method calls ...
1
vote
1answer
38 views
Is it ever necessary to end a (perl) Moose class with 1;?
I'm new to Moose, and by the Moose manual on classes it seems that a valid class is:
package Person;
use namespace::autoclean;
use Moose;
__PACKAGE__->meta->make_immutable;
But where is the ...
3
votes
3answers
103 views
Turn data structures into perl objects (module recommendation)
I have an arbitrary data structure and I'd like to treat it as an object. I get this as a response from a REST app. Example below. There are some modules on CPAN which promise to do this. Data::Object ...
2
votes
2answers
63 views
Can I overload methods in Moose?
I am looking for a solution similar to Java's whereby I can create methods with the same name but with different parameter lists.
e.g.
method makeDeposit() {
system("cls");
print "How much ...
-2
votes
1answer
171 views
Moose Perl Vs oop Perl ? [closed]
what are the differences between moose Perl and oop Perl ?
why we are using Moose Perl in place of oop Perl?
1
vote
2answers
69 views
How do I use a Moose Type as a regex match expression?
I have the following type in my class file:
has 'cardNumber' => (is => 'ro', isa => 'Int', required => 1);
I am trying to do the following:
foreach $_ (@accountsInfo) {
if ($_ =~ ...
2
votes
1answer
90 views
How to call all() on a Mongoose::Join object
I use mongoose to set up the following (simplified and compacted) data model:
package Model::Tag;
use Moose;
use Mongoose::Class; with 'Mongoose::Document';
has 'value' => (is => ...
1
vote
1answer
57 views
Override default attribute when using Moose roles
I can't override a already declared attribute in a role with MooseX::Declare.
use MooseX::Declare;
role Person {
has 'name' => (
is => 'ro',
isa => 'Str',
default => 'John',
...
1
vote
2answers
81 views
How to pass multiple arguments to a setter/writter in Perl Moo
I started to migrate a couple of Perl modules to Moo but got stuck because the setter/writer can only have one single argument (can't it?). This also applies to coercing:
package MyThing:
use Moo;
...
1
vote
2answers
61 views
Catalyst global moose hash returning MIME type httpd/unix-directory
I'm trying to create a Moose hash in my Catalyst app in my_app.pm so that I can access it globally:
has 'hash' => (
is => 'rw',
isa => 'Hashref'
);
However, as soon as I try to ...
2
votes
2answers
72 views
In Moose, if a role defines an attribute with a default, how do I change that default in my consuming class?
My Moose class consumes a role which I'm not allowed to change. That role defines an attribute with a default. I need my class to have that attribute, but with a different default.
Is that possible?
...
0
votes
0answers
33 views
HTML::FormHandler Moose Roles not clearing values in persistent form
I'm using HTML::FormHandler (with a persistent form) with Catalyst along with Moose::Roles so that I don't repeat fields across my forms. This works fine, except for the fact that once I submit a ...
0
votes
1answer
47 views
Moose and Roles method modifers
It is possible to use an after modifier in a Role for a required attribute that is populated in the consuming class via a builder method?
package A::Role;
use Moose::Role;
use IO::File;
use Carp;
...
3
votes
1answer
69 views
Moose: attributes check by creating an object
I make my first steps with Moose and I have the following question.
It seems that I can assign the attributes which I do not specified in the module. The error message comes if I attempt to access ...
3
votes
1answer
52 views
HTML::FormHandler roles vs fields
I'm using HTML::FormHandler, and in an effort to not repeat a lot of code I am trying to split my form up into reuasable pieces as suggested by the HTML::FormHandler Cookbook. It discusses being able ...
2
votes
2answers
106 views
Explain this witchcraft!!! (in Perl, with Moose and namespace::autoclean)
So these days I'm working with a project that uses Perl and Moose. I understand Moose is built on MOP. I'm not too familiar with MOP, and I've encountered something I don't understand, and I could use ...
0
votes
1answer
85 views
Calling an object method from array of objects in perl using moose
I have one object that has an attribute of an array of another group of objects. I have a toString method that I want to print out the entire contents of the objects. The main goal is to have the Job ...
3
votes
5answers
128 views
How to auto generate a bunch of setters / getters tied to a network service in Moose?
By way of teaching myself Moose, I'm working on a Moose object that interfaces to a particular piece of hardware. Said hardware takes a number of different commands that set various properties of the ...
-3
votes
1answer
78 views
Moose creating accessors
given a list of accessors is the following possible? If it is possible how would i create builder method for each, i assumed lazy_build attribute would be doing that? please help
my @accessors= ...
1
vote
3answers
53 views
Object Attributes Getting Set Without Me Asking
Can't seem to crack this one:
I'm using Moose, maybe it matters, maybe it doesn't.
My object comes in as $event, and I save the args attribute value to a variable:
my $args = $event->args;
...
3
votes
1answer
78 views
Using Moose with Test::Class - problems with constructor
I'm refactoring a test suite built on Test::Class, and would like to take advantage of such Moose niceties as Roles, both in the base test class, and in some of the test classes
I have tried:
Using ...
1
vote
2answers
114 views
How to write a Moose base class for roles with inheritable data?
I have a small (soon to be large) set of Moose roles that interact with a database. They have methods like create_foo_record, update_foo_record, delete_foo_record, etc. (They aren't simple wrapper for ...
3
votes
3answers
118 views
Moose array attributes: how do I use a set method?
I want to define an array as attribute of a class and fill it with some data when the class is instantiated.
I thought it would be possible to use a $self->attribute->set($id, $value) method ...
1
vote
1answer
81 views
Who's calling with Moose?
I am trying to write a logger role (with Log::Dispatchouli, but that shouldn't matter) that tells me from which package, sub, line etc. I have been issuing log messages. Naturally, I tried with ...
1
vote
1answer
43 views
Setting MooseX::Method::Signatures defaults to an instance variable
I have a set of methods where I would like the caller to be able to override a value, or it defaults to the instance variable.
So what I keep trying to do is:
method foo( Str :$blah = $self->blah ...
1
vote
1answer
74 views
Validation Failing for Valid Hashref
I'm deploying my software (first time in a new environment) and hitting a wall almost immediately.
I have a value that is failing its HashRef validation, but every test I can think of makes it seem ...
1
vote
0answers
39 views
Why is `MooseX::Traits::apply_traits()` deprecated?
This question is specifically about MooseX::Traits. The method apply_traits has been deprecated and it gives a warning message as follows:
apply_traits is deprecated due to being fundamentally ...
0
votes
1answer
47 views
Find all Attributes with given Trait
I've looked and looked but can't seem to find a Moose::Meta function to return all Attributes that have a given trait.
Is this possible?
2
votes
2answers
117 views
Moose method modifiers in base class don't get called
It's cool that it's possible to add them in sub classes or mix them in in roles. My problem is that it seems method modifiers from the base class get deactivated when subclasses redefine the method ...
2
votes
1answer
82 views
Moose Parent and Child with same attribute names
This question is in regards to Perl and Moose inheritance.
Suppose I have a Parent Class and a Baby Class. Baby 'extends' Parent. If both classes have the attribute 'name', how does the Baby access ...
0
votes
2answers
106 views
Compile time issue with MooseX::Aliases, immutable and circular 'use'
I get a compile time error (Moose complains about modifying an immutable instance)
running 'perl -c' on a package but code using the package runs error-free.
Example Code:
File Pa_1.pm (immutable ...
5
votes
1answer
104 views
Passing a block to a Moose method
Is it somehow possible to pass blocks to Moose methods? In standard Perl, I can define a function with prototypes like this
sub fn (&) {
my $code =\&{shift @_};
$code->();
}
and ...
0
votes
1answer
116 views
coerce from hashref on all types
I have the following code duplicated several times as I have several classes that follow the same pattern
use MooseX::Types -declare [ qw( Item ) ];jj
my $itc = $prefix . 'Item';
class_type Item, { ...
13
votes
3answers
302 views
How to (continue) learn Moose for using it “fairly” well? [closed]
Although I am not a Perl guru, I use Perl and I can write object-oriented programs the "good old" way.
Now I would like to learn Moose. I've already (so-as) chewed the basic documentation, and my ...
3
votes
2answers
164 views
Coercing ArrayRef[MyClass] from ArrayRef[HashRef]
In trying to answer How to instantiate Moose classes from a big hash, I think I have hit another place where I don't fully understand Moose type coercions. For some reason, the below code issues ...
3
votes
2answers
198 views
How to instantiate Moose classes from a big hash
I have a big hash many levels deep, and I'd like to turn this hash into a set of Moose classes.
The hash looks something like this:
my %hash = (
company => {
id => 1,
name ...
5
votes
1answer
104 views
perl moose triggers in subclasses disrupt method modifiers
I've found that if a subclass adds a trigger, then method modifiers from the base class don't run. This seems like a Moose bug, or at least non-intuitive. Here's my example:
package Foo {
use ...
2
votes
1answer
85 views
Moose Test Failures
I'm trying to upgrade to the latest version of Moose and I am getting many test failures.
All of these errors appear related to metaclasses. I have also tried to install 2.0402 (that's what we have ...
3
votes
1answer
293 views
Converting JSON string to Perl/Moose objects
I have a JSON string, for example the
use JSON::XS qw(decode_json);
say Dumper( decode_json($json) );
will produce:
$VAR1 = {
'Fname' => 'SomeFname',
'Lname' => 'SomeLname',
...
1
vote
1answer
82 views
Moose Role Derivation
I would like to now what is the better pattern to do what I need. I try to reduce the problem to a minimum, let me explain it step by step.
I have an interface Role like:
{
package Likeable;
...
4
votes
4answers
145 views
How to declare 2 dependant attributes in Mooseish way?
In my object constructor i had statement to initialize two attributes same time:
($self->{token}, $self->{token_start}) = $self->_get_authorized_token();
So i got token and it's starting ...
3
votes
1answer
130 views
Moose and extending non moose classes
I have the following class / package:
package Data::CrawlerThreadPool;
use Moose;
use MooseX::InsideOut;
use MooseX::NonMoose;
extends 'Thread::Pool::Simple';
around BUILDARGS => sub {
my ...
4
votes
1answer
147 views
How to use Perl Moose with Plugins for a Main Object?
I'm a newbie in Moose. I have to create an object that should load several plugins. The structure is like this:
Main Object -> some general Functions
Plugins -> extensions for the Main Object
...
1
vote
1answer
77 views
Moose Perl: “modify multiple methods in all subclasses”
I have a Moose BaseDBModel which has different subclasses mapping to my tables in the database. All the methods in the subclasses are like "get_xxx" or "update_xxx" which refers to the different DB ...
3
votes
1answer
395 views
How to store Hash of Hashes in Moose?
i was wondering, what is the best way to store Hash of Hashes in Moose. Lets take for example a Hash like this:
my %hash = ('step1' => {'extraction' => \$object1,
...
0
votes
2answers
150 views
What's happening with this DBI:db object when errstr is called?
I'm delegating an attribute in my current class called 'dbc' as a DBIx::Connector so that I can call $self->dbc->dbh from inside methods, however I'm not really understanding some behaviors I'm seeing ...
1
vote
1answer
111 views
Can $self be passed to a XML::Twig handler?
I'm trying to parse different XML that is returned depending on the command given in a class method... but I think I'm getting a bit deep here.
I'd like to be able to use other methods and access ...
1
vote
2answers
187 views
perl class to parse specified csv file types of similar data with different columns
I'm trying to write a Moose class that parses csv files of slightly different formats with headers and return a list of objects representing the data in the files. Here's a simplified version of the ...
1
vote
1answer
115 views
How can I require a Moose Attribute with an interface?
You can do
use Moose::Role;
requires 'method';
I see in the Moose::Spec::Role that I can also require Attributes, but how would I do that?
1
vote
0answers
128 views
Storing Moose attributes in blessed arrayref, for compact storage?
{Moose,Mouse,Moo} object normally translates to a blessed hashref. Can it use blessed arrayref instead, for compact storage? Think an object like bless({long_attribute_name=>1, ...
