File Coverage

lib/CPANPLUS/Error.pm
Criterion Covered Total %
statement 60 61 98.3
branch 14 18 77.7
condition 5 6 83.3
subroutine 15 15 100.0
pod 3 5 60.0
total 97 105 92.3


line stmt bran cond sub pod time code
1             package CPANPLUS::Error;
2              
3 20     20   128 use strict;
  20         39  
  20         700  
4 20     20   119 use vars qw[$VERSION];
  20         40  
  20         1214  
5             $VERSION = "0.9912";
6              
7 20     20   10752 use Log::Message private => 0;;
  20         153494  
  20         134  
8              
9             =pod
10              
11             =head1 NAME
12              
13             CPANPLUS::Error - error handling for CPANPLUS
14              
15             =head1 SYNOPSIS
16              
17             use CPANPLUS::Error qw[cp_msg cp_error];
18              
19             =head1 DESCRIPTION
20              
21             This module provides the error handling code for the CPANPLUS
22             libraries, and is mainly intended for internal use.
23              
24             =head1 FUNCTIONS
25              
26             =head2 cp_msg("message string" [,VERBOSE])
27              
28             Records a message on the stack, and prints it to C<STDOUT> (or actually
29             C<$MSG_FH>, see the C<GLOBAL VARIABLES> section below), if the
30             C<VERBOSE> option is true.
31             The C<VERBOSE> option defaults to false.
32              
33             =head2 msg()
34              
35             An alias for C<cp_msg>.
36              
37             =head2 cp_error("error string" [,VERBOSE])
38              
39             Records an error on the stack, and prints it to C<STDERR> (or actually
40             C<$ERROR_FH>, see the C<GLOBAL VARIABLES> sections below), if the
41             C<VERBOSE> option is true.
42             The C<VERBOSE> options defaults to true.
43              
44             =head2 error()
45              
46             An alias for C<cp_error>.
47              
48             =head1 CLASS METHODS
49              
50             =head2 CPANPLUS::Error->stack()
51              
52             Retrieves all the items on the stack. Since C<CPANPLUS::Error> is
53             implemented using C<Log::Message>, consult its manpage for the
54             function C<retrieve> to see what is returned and how to use the items.
55              
56             =head2 CPANPLUS::Error->stack_as_string([TRACE])
57              
58             Returns the whole stack as a printable string. If the C<TRACE> option is
59             true all items are returned with C<Carp::longmess> output, rather than
60             just the message.
61             C<TRACE> defaults to false.
62              
63             =head2 CPANPLUS::Error->flush()
64              
65             Removes all the items from the stack and returns them. Since
66             C<CPANPLUS::Error> is implemented using C<Log::Message>, consult its
67             manpage for the function C<retrieve> to see what is returned and how
68             to use the items.
69              
70             =cut
71              
72 0         0 BEGIN {
73 20     20   4876 use Exporter;
  20         45  
  20         814  
74 20     20   112 use Params::Check qw[check];
  20         40  
  20         811  
75 20     20   112 use vars qw[@EXPORT @ISA $ERROR_FH $MSG_FH];
  20         38  
  20         2010  
76              
77 20     20   394 @ISA = 'Exporter';
78 20         85 @EXPORT = qw[cp_error cp_msg error msg];
79              
80 20         93 my $log = new Log::Message;
81              
82 20         9957 for my $func ( @EXPORT ) {
83 20     20   140 no strict 'refs';
  20         43  
  20         5679  
84              
85 80         202 my $prefix = 'cp_';
86 80         126 my $name = $func;
87 80         516 $name =~ s/^$prefix//g;
88              
89             *$func = sub {
90 667     667   24421 my $msg = shift;
91              
92             ### no point storing non-messages
93 667 50       2113 return unless defined $msg;
94              
95 667         8232 $log->store(
96             message => $msg,
97             tag => uc $name,
98             level => $prefix . $name,
99             extra => [@_]
100             );
101 80         1881 };
102             }
103              
104             sub flush {
105 49     49 1 36400 my @foo = $log->flush;
106 49 100       872 return unless @foo;
107 45         843 return reverse @foo;
108             }
109              
110             sub stack {
111 62     62 1 26732 return $log->retrieve( chrono => 1 );
112             }
113              
114             sub stack_as_string {
115 59     59 1 35190 my $class = shift;
116 59 100       482 my $trace = shift() ? 1 : 0;
117              
118             return join $/, map {
119 59 100       9332 '[' . $_->tag . '] [' . $_->when . '] ' .
  697         61111  
120             ($trace ? $_->message . ' ' . $_->longmess
121             : $_->message);
122             } __PACKAGE__->stack;
123             }
124             }
125              
126             =head1 GLOBAL VARIABLES
127              
128             =over 4
129              
130             =item $ERROR_FH
131              
132             This is the filehandle all the messages sent to C<error()> are being
133             printed. This defaults to C<*STDERR>.
134              
135             =item $MSG_FH
136              
137             This is the filehandle all the messages sent to C<msg()> are being
138             printed. This default to C<*STDOUT>.
139              
140             =back
141              
142             =cut
143              
144             local $| = 1;
145             $ERROR_FH = \*STDERR;
146             $MSG_FH = \*STDOUT;
147              
148             package # Hide from Pause
149             Log::Message::Handlers;
150 20     20   169 use Carp ();
  20         45  
  20         5680  
151              
152             {
153              
154             sub cp_msg {
155 581     581 0 745744 my $self = shift;
156 581         1215 my $verbose = shift;
157              
158             ### so you don't want us to print the msg? ###
159 581 100 100     5351 return if defined $verbose && $verbose == 0;
160              
161 13         96 my $old_fh = select $CPANPLUS::Error::MSG_FH;
162              
163 13         131 print '['. $self->tag . '] ' . $self->message . "\n";
164 13         918 select $old_fh;
165              
166 13         65 return;
167             }
168              
169             sub cp_error {
170 86     86 0 110047 my $self = shift;
171 86         223 my $verbose = shift;
172              
173             ### so you don't want us to print the error? ###
174 86 50 66     389 return if defined $verbose && $verbose == 0;
175              
176 86         577 my $old_fh = select $CPANPLUS::Error::ERROR_FH;
177              
178             ### is only going to be 1 for now anyway ###
179             ### C::I may not be loaded, so do a can() check first
180 86 50       1438 my $cb = CPANPLUS::Internals->can('_return_all_objects')
181             ? (CPANPLUS::Internals->_return_all_objects)[0]
182             : undef;
183              
184             ### maybe we didn't initialize an internals object (yet) ###
185 86 100       616 my $debug = $cb ? $cb->configure_object->get_conf('debug') : 0;
186 86         762 my $msg = '['. $self->tag . '] ' . $self->message . "\n";
187              
188             ### i'm getting this warning in the test suite:
189             ### Ambiguous call resolved as CORE::warn(), qualify as such or
190             ### use & at CPANPLUS/Error.pm line 57.
191             ### no idea where it's coming from, since there's no 'sub warn'
192             ### anywhere to be found, but i'll mark it explicitly nonetheless
193             ### --kane
194 86 50       4843 print $debug ? Carp::shortmess($msg) : $msg . "\n";
195              
196 86         983 select $old_fh;
197              
198 86         473 return;
199             }
200             }
201              
202             1;
203              
204             # Local variables:
205             # c-indentation-style: bsd
206             # c-basic-offset: 4
207             # indent-tabs-mode: nil
208             # End:
209             # vim: expandtab shiftwidth=4: