use 5.008; use strict; use warnings; package Error::Hierarchy; BEGIN { $Error::Hierarchy::VERSION = '1.103530'; } # ABSTRACT: Support for hierarchical exception classes use Carp; use Data::UUID; use Sys::Hostname; use parent 'Error::Hierarchy::Base'; __PACKAGE__ ->mk_boolean_accessors(qw(is_optional acknowledged)) ->mk_accessors(qw( message exception_hostname package filename line depth stacktrace uuid )); # properties() is used for introspection by code that's catching exceptions. # This code can be left generic as each exception class will know its own # properties. This is useful for something like gettext-based error messages. # Of course, each exception class also supports its own message construction # via message() and stringify(). Exception handling code can decide which # message construction system it wants. use constant default_message => 'Died'; # sub properties { () } # empty list, base class defines no properties sub error_depth { 1 } sub init { my $self = shift; $self->message($self->default_message) unless $self->message; $self->depth(0) unless defined $self->depth; $self->is_optional(0) unless defined $self->is_optional; # init() code is based on Error::new(); we use a slightly different # scheme to set caller information. Error::throw() (our superclass) sets # $Error::Depth. We use $Error::Depth + 1 because we init() got called by # new(), so the call stack is one deeper than $Error::Depth indicates. my ($package, $filename, $line) = caller($Error::Depth + $self->error_depth + $self->depth); $self->exception_hostname(hostname()); $self->package($package) unless defined $self->package; $self->filename($filename) unless defined $self->filename; $self->line($line) unless defined $self->line; $self->stacktrace(Carp::longmess); $self->uuid(Data::UUID->new->create_str); } sub get_properties { $_[0]->every_list('PROPERTIES') } sub properties_as_hash { my $self = shift; my %p = map { $_ => (defined $self->$_ ? $self->$_ : 'unknown') } # hm... ask gr... grep { $_ ne 'package' && $_ ne 'filename' && $_ ne 'line' } $self->get_properties; wantarray ? %p : \%p; } sub stringify { my $self = shift; my $message = $self->message || $self->default_message; sprintf $message => map { $self->$_ || 'unknown' } $self->get_properties; } sub transmute { my ($class, $E, %args) = @_; bless $E, $class; # can't just %$E = (%$E, %args) because the accessors might do more than # set a hash value while (my ($key, $value) = each %args) { $E->$key($value); } } sub comparable { my $self = shift; $self->stringify; } 1; __END__ =pod =head1 NAME Error::Hierarchy - Support for hierarchical exception classes =head1 VERSION version 1.103530 =head1 SYNOPSIS package Error::Hierarchy::ReadOnlyAttribute; use warnings; use strict; use base 'Error::Hierarchy'; __PACKAGE__->mk_accessors(qw(attribute)); use constant default_message => '[%s] is a read only attribute'; use constant PROPERTIES => ( 'attribute' ); # Meanwhile... package main; use Error::Hierarchy::Mixin; sub foo { if (@_) { Error::Hierarchy::ReadOnlyAttribute-> throw(attribute => 'foo'); } } =head1 DESCRIPTION This class provides support for hierarchical exception classes. It builds upon L and is thus compatible with its C/C mechanism. However, it records a lot more information such as the package, filename and line where the exception occurred, a complete stack trace, the hostname and a UUID. It provides a stringification that is extensible with any properties your own exceptions might define. =head1 METHODS =head2 depth Get or set the caller depth, that is the number of call stack frames that are skipped when reporting the package, filename and line the error was thrown from. When an exception object is constructed, it defaults to 0. This is useful if you want to throw an exception from the perspective of your own caller. For example: sub assert_foo { unless ($teh_foo) { throw SomeException(depth => 1); } } Without the C argument, the exception would show that it was thrown within C. Maybe that's what you want, but with C you can make it appear as if the exception was thrown from the place where C was called from. The actual exception depth is influenced by C as well. =head2 error_depth Like C, but here the value should be defined within the exception class code itself. Therefore, you can't set the value, but subclasses can override it. Some exceptions should always be thrown from the caller's perspective (or even higher up); use C for this case. C by contrast is intended for the user to be set; the two are added together to get the actual depth. In this class the C defaults to 1 so the exception is at least reported from the place where it was actually thrown - a value of 0 would mean that the exception is reported as having occurred L itself, which is probably not what you want. If you override this value in a subclass, it's probably a good idea to add the subclass' desired depth to the superclass's depth to accumulate it. For example: package MyException; use base 'Error::Hierarchy'; sub error_depth { my $self = shift; 1 + $self->SUPER::error_depth(); } =head2 comparable Support for L. =head2 init Initializes a newly constructed exception object. =head2 get_properties Actual exception classes will subclass this class and define properties. Exception classes themselves can be subclassed. So this method returns the inherited list of all the exception class' properties. =head2 properties_as_hash Constructs a hash whose keys are the exception's properties - see C - and whose values are the values of each property in the exception object. The properties C, C and C are omitted. In list context, the hash is returned as is. In scalar context, a reference to the hash is returned. =head2 stringify Defines how the exception should look if the object is stringified. This class inherits from L, which overloads C<""> to call C. This class stringifies an itself by taking the C attribute and passing it to C, along with the exception's properties. =head2 transmute($exception, %args) Transmutes an existing exception. It leaves the stack trace, filename, line etc. as it is and just blesses it into the class on which C was called, adding the given additional arguments. This is used when catching a generic exception and turning it into a more specific one. =head1 INSTALLATION See perlmodinstall for information and options on installing Perl modules. =head1 BUGS AND LIMITATIONS No bugs have been reported. Please report any bugs or feature requests through the web interface at L. =head1 AVAILABILITY The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit L to find a CPAN site near you, or see L. The development version lives at L and may be cloned from L. Instead of sending patches, please fork this project using the standard git and github infrastructure. =head1 AUTHOR Marcel Gruenauer =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2004 by Marcel Gruenauer. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut