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   164 use strict;
  20         55  
  20         1181  
4 20     20   136 use vars qw[$VERSION];
  20         33  
  20         1864  
5             $VERSION = "0.9916";
6              
7 20     20   13236 use Log::Message private => 0;;
  20         184485  
  20         193  
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 (or actually
29             C<$MSG_FH>, see the C section below), if the
30             C option is true.
31             The C option defaults to false.
32              
33             =head2 msg()
34              
35             An alias for C.
36              
37             =head2 cp_error("error string" [,VERBOSE])
38              
39             Records an error on the stack, and prints it to C (or actually
40             C<$ERROR_FH>, see the C sections below), if the
41             C option is true.
42             The C options defaults to true.
43              
44             =head2 error()
45              
46             An alias for C.
47              
48             =head1 CLASS METHODS
49              
50             =head2 CPANPLUS::Error->stack()
51              
52             Retrieves all the items on the stack. Since C is
53             implemented using C, consult its manpage for the
54             function C 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 option is
59             true all items are returned with C output, rather than
60             just the message.
61             C defaults to false.
62              
63             =head2 CPANPLUS::Error->flush()
64              
65             Removes all the items from the stack and returns them. Since
66             C is implemented using C, consult its
67             manpage for the function C to see what is returned and how
68             to use the items.
69              
70             =cut
71              
72 0         0 BEGIN {
73 20     20   6218 use Exporter;
  20         44  
  20         1079  
74 20     20   133 use Params::Check qw[check];
  20         55  
  20         1115  
75 20     20   138 use vars qw[@EXPORT @ISA $ERROR_FH $MSG_FH];
  20         44  
  20         2614  
76              
77 20     20   442 @ISA = 'Exporter';
78 20         71 @EXPORT = qw[cp_error cp_msg error msg];
79              
80 20         100 my $log = new Log::Message;
81              
82 20         10161 for my $func ( @EXPORT ) {
83 20     20   143 no strict 'refs';
  20         51  
  20         7604  
84              
85 80         143 my $prefix = 'cp_';
86 80         159 my $name = $func;
87 80         746 $name =~ s/^$prefix//g;
88              
89             *$func = sub {
90 668     668   30456 my $msg = shift;
91              
92             ### no point storing non-messages
93 668 50       2284 return unless defined $msg;
94              
95 668         8493 $log->store(
96             message => $msg,
97             tag => uc $name,
98             level => $prefix . $name,
99             extra => [@_]
100             );
101 80         2428 };
102             }
103              
104             sub flush {
105 49     49 1 39792 my @foo = $log->flush;
106 49 100       922 return unless @foo;
107 45         998 return reverse @foo;
108             }
109              
110             sub stack {
111 62     62 1 17800 return $log->retrieve( chrono => 1 );
112             }
113              
114             sub stack_as_string {
115 59     59 1 23204 my $class = shift;
116 59 100       1338 my $trace = shift() ? 1 : 0;
117              
118             return join $/, map {
119 59 100       315 '[' . $_->tag . '] [' . $_->when . '] ' .
  699         63329  
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 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 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   163 use Carp ();
  20         90  
  20         7481  
151              
152             {
153              
154             sub cp_msg {
155 582     582 0 921592 my $self = shift;
156 582         1553 my $verbose = shift;
157              
158             ### so you don't want us to print the msg? ###
159 582 100 100     5870 return if defined $verbose && $verbose == 0;
160              
161 13         98 my $old_fh = select $CPANPLUS::Error::MSG_FH;
162              
163 13         88 print '['. $self->tag . '] ' . $self->message . "\n";
164 13         817 select $old_fh;
165              
166 13         78 return;
167             }
168              
169             sub cp_error {
170 86     86 0 126485 my $self = shift;
171 86         248 my $verbose = shift;
172              
173             ### so you don't want us to print the error? ###
174 86 50 66     576 return if defined $verbose && $verbose == 0;
175              
176 86         665 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       1725 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       614 my $debug = $cb ? $cb->configure_object->get_conf('debug') : 0;
186 86         862 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       6679 print $debug ? Carp::shortmess($msg) : $msg . "\n";
195              
196 86         626 select $old_fh;
197              
198 86         485 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: