.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Moose::Manual 3pm" .TH Moose::Manual 3pm 2024-01-21 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Moose::Manual \- What is Moose, and how do I use it? .SH VERSION .IX Header "VERSION" version 2.2207 .SH "WHAT IS MOOSE?" .IX Header "WHAT IS MOOSE?" Moose is a \fIcomplete\fR object system for Perl 5. Consider any modern object-oriented language (which Perl 5 definitely isn't). It provides keywords for attribute declaration, object construction, inheritance, and maybe more. These keywords are part of the language, and you don't care how they are implemented. .PP Moose aims to do the same thing for Perl 5 OO. We can't actually create new keywords, but we do offer "sugar" that looks a lot like them. More importantly, with Moose, you \fIdefine your class declaratively\fR, without needing to know about blessed hashrefs, accessor methods, and so on. .PP With Moose, you can concentrate on the \fIlogical\fR structure of your classes, focusing on "what" rather than "how". A class definition with Moose reads like a list of very concise English sentences. .PP Moose is built on top of \f(CW\*(C`Class::MOP\*(C'\fR, a meta-object protocol (aka MOP). Using the MOP, Moose provides complete introspection for all Moose-using classes. This means you can ask classes about their attributes, parents, children, methods, etc., all using a well-defined API. The MOP abstracts away the symbol table, looking at \f(CW@ISA\fR vars, and all the other crufty Perl tricks we know and love(?). .PP Moose is based in large part on the Perl 6 object system, as well as drawing on the best ideas from CLOS, Smalltalk, and many other languages. .SH "WHY MOOSE?" .IX Header "WHY MOOSE?" Moose makes Perl 5 OO both simpler and more powerful. It encapsulates Perl 5 power tools in high-level declarative APIs which are easy to use. Best of all, you don't need to be a wizard to use it. .PP But if you want to dig about in the guts, Moose lets you do that too, by using and extending its powerful introspection API. .SH "AN EXAMPLE" .IX Header "AN EXAMPLE" .Vb 1 \& package Person; \& \& use Moose; \& \& has \*(Aqfirst_name\*(Aq => ( \& is => \*(Aqrw\*(Aq, \& isa => \*(AqStr\*(Aq, \& ); \& \& has \*(Aqlast_name\*(Aq => ( \& is => \*(Aqrw\*(Aq, \& isa => \*(AqStr\*(Aq, \& ); \& \& no Moose; \& _\|_PACKAGE_\|_\->meta\->make_immutable; .Ve .PP This is a \fIcomplete and usable\fR class definition! .PP .Vb 1 \& package User; \& \& use DateTime; \& use Moose; \& \& extends \*(AqPerson\*(Aq; \& \& has \*(Aqpassword\*(Aq => ( \& is => \*(Aqrw\*(Aq, \& isa => \*(AqStr\*(Aq, \& ); \& \& has \*(Aqlast_login\*(Aq => ( \& is => \*(Aqrw\*(Aq, \& isa => \*(AqDateTime\*(Aq, \& handles => { \*(Aqdate_of_last_login\*(Aq => \*(Aqdate\*(Aq }, \& ); \& \& sub login { \& my $self = shift; \& my $pw = shift; \& \& return 0 if $pw ne $self\->password; \& \& $self\->last_login( DateTime\->now() ); \& \& return 1; \& } \& \& no Moose; \& _\|_PACKAGE_\|_\->meta\->make_immutable; .Ve .PP When ready to instantiate your class in an application, use it in the "traditional" Perl manner: .PP .Vb 1 \& use User; \& \& my $user = User\->new( \& first_name => \*(AqExample\*(Aq, \& last_name => \*(AqUser\*(Aq, \& password => \*(Aqletmein\*(Aq, \& ); \& \& $user\->login(\*(Aqletmein\*(Aq); \& \& say $user\->date_of_last_login; .Ve .PP We'll leave the line-by-line explanation of this code to other documentation, but you can see how Moose reduces common OO idioms to simple declarative constructs. .SH "TABLE OF CONTENTS" .IX Header "TABLE OF CONTENTS" This manual consists of a number of documents. .IP Moose::Manual::Concepts 4 .IX Item "Moose::Manual::Concepts" Introduces Moose concepts, and contrasts them against "old school" Perl 5 OO. .IP Moose::Manual::Unsweetened 4 .IX Item "Moose::Manual::Unsweetened" Shows two example classes, each written first with Moose and then with "plain old Perl 5". .IP Moose::Manual::Classes 4 .IX Item "Moose::Manual::Classes" How do you make use of Moose in your classes? Now that I'm a Moose, how do I subclass something? .IP Moose::Manual::Attributes 4 .IX Item "Moose::Manual::Attributes" Attributes are a core part of the Moose OO system. An attribute is a piece of data that an object has. Moose has a lot of attribute-related features! .IP Moose::Manual::Delegation 4 .IX Item "Moose::Manual::Delegation" Delegation is a powerful way to make use of attributes which are themselves objects. .IP Moose::Manual::Construction 4 .IX Item "Moose::Manual::Construction" Learn how objects are built in Moose, and in particular about the \&\f(CW\*(C`BUILD\*(C'\fR and \f(CW\*(C`BUILDARGS\*(C'\fR methods. Also covers object destruction with \f(CW\*(C`DEMOLISH\*(C'\fR. .IP Moose::Manual::MethodModifiers 4 .IX Item "Moose::Manual::MethodModifiers" A method modifier lets you say "before calling method X, do this first", or "wrap method X in this code". Method modifiers are particularly handy in roles and with attribute accessors. .IP Moose::Manual::Roles 4 .IX Item "Moose::Manual::Roles" A role is something a class does (like "Debuggable" or "Printable"). Roles provide a way of adding behavior to classes that is orthogonal to inheritance. .IP Moose::Manual::Types 4 .IX Item "Moose::Manual::Types" Moose's type system lets you strictly define what values an attribute can contain. .IP Moose::Manual::MOP 4 .IX Item "Moose::Manual::MOP" Moose's meta API system lets you ask classes about their parents, children, methods, attributes, etc. .IP Moose::Manual::MooseX 4 .IX Item "Moose::Manual::MooseX" This document describes a few of the most useful Moose extensions on CPAN. .IP Moose::Manual::BestPractices 4 .IX Item "Moose::Manual::BestPractices" Moose has a lot of features, and there's definitely more than one way to do it. However, we think that picking a subset of these features and using them consistently makes everyone's life easier. .IP Moose::Manual::FAQ 4 .IX Item "Moose::Manual::FAQ" Frequently asked questions about Moose. .IP Moose::Manual::Resources 4 .IX Item "Moose::Manual::Resources" Links to various tutorials, videos, blogs, presentations, interviews, etc... .IP Moose::Manual::Contributing 4 .IX Item "Moose::Manual::Contributing" Interested in hacking on Moose? Read this. .IP Moose::Manual::Delta 4 .IX Item "Moose::Manual::Delta" This document details backwards-incompatibilities and other major changes to Moose. .SH JUSTIFICATION .IX Header "JUSTIFICATION" If you're still asking yourself "Why do I need this?", then this section is for you. .IP "Another object system!?!?" 4 .IX Item "Another object system!?!?" Yes, we know there are many, many ways to build objects in Perl 5, many of them based on inside-out objects and other such things. Moose is different because it is not a new object system for Perl 5, but instead an extension of the existing object system. .Sp Moose is built on top of Class::MOP, which is a metaclass system for Perl 5. This means that Moose not only makes building normal Perl 5 objects better, but it also provides the power of metaclass programming. .IP "Is this for real? Or is this just an experiment?" 4 .IX Item "Is this for real? Or is this just an experiment?" Moose is \fIbased\fR on the prototypes and experiments Stevan did for the Perl 6 meta-model. However, Moose is \fBNOT\fR an experiment or prototype; it is for \fBreal\fR. .IP "Is this ready for use in production?" 4 .IX Item "Is this ready for use in production?" Yes. .Sp Moose has been used successfully in production environments by many people and companies. There are Moose applications which have been in production with little or no issue now for years. We consider it highly stable and we are committed to keeping it stable. .Sp Of course, in the end, you need to make this call yourself. If you have any questions or concerns, please feel free to email Stevan or the moose@perl.org list, or just stop by irc.perl.org#moose and ask away. .IP "Is Moose just Perl 6 in Perl 5?" 4 .IX Item "Is Moose just Perl 6 in Perl 5?" No. While Moose is very much inspired by Perl 6, it is not itself Perl 6. Instead, it is an OO system for Perl 5. Stevan built Moose because he was tired of writing the same old boring Perl 5 OO code, and drooling over Perl 6 OO. So instead of switching to Ruby, he wrote Moose :) .IP "Wait, \fIpost\fR modern, I thought it was just \fImodern\fR?" 4 .IX Item "Wait, post modern, I thought it was just modern?" Stevan read Larry Wall's talk from the 1999 Linux World entitled "Perl, the first postmodern computer language" in which he talks about how he picked the features for Perl because he thought they were cool and he threw out the ones that he thought sucked. This got him thinking about how we have done the same thing in Moose. For Moose, we have "borrowed" features from Perl 6, CLOS (LISP), Smalltalk, Java, BETA, OCaml, Ruby and more, and the bits we didn't like (cause they sucked) we tossed aside. So for this reason (and a few others) Stevan has re-dubbed Moose a \fIpostmodern\fR object system. .Sp Nuff Said. .SH AUTHORS .IX Header "AUTHORS" .IP \(bu 4 Stevan Little .IP \(bu 4 Dave Rolsky .IP \(bu 4 Jesse Luehrs .IP \(bu 4 Shawn M Moore .IP \(bu 4 יובל קוג'מן (Yuval Kogman) .IP \(bu 4 Karen Etheridge .IP \(bu 4 Florian Ragwitz .IP \(bu 4 Hans Dieter Pearcey .IP \(bu 4 Chris Prather .IP \(bu 4 Matt S Trout .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" This software is copyright (c) 2006 by Infinity Interactive, Inc. .PP This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.