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   149 use strict;
  20         54  
  20         817  
4 20     20   146 use vars qw[$VERSION];
  20         68  
  20         1289  
5             $VERSION = "0.9914";
6              
7 20     20   11351 use Log::Message private => 0;;
  20         161140  
  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   5288 use Exporter;
  20         45  
  20         836  
74 20     20   118 use Params::Check qw[check];
  20         41  
  20         812  
75 20     20   111 use vars qw[@EXPORT @ISA $ERROR_FH $MSG_FH];
  20         37  
  20         2178  
76              
77 20     20   449 @ISA = 'Exporter';
78 20         88 @EXPORT = qw[cp_error cp_msg error msg];
79              
80 20         94 my $log = new Log::Message;
81              
82 20         8909 for my $func ( @EXPORT ) {
83 20     20   146 no strict 'refs';
  20         45  
  20         6138  
84              
85 80         173 my $prefix = 'cp_';
86 80         107 my $name = $func;
87 80         603 $name =~ s/^$prefix//g;
88              
89             *$func = sub {
90 669     669   24173 my $msg = shift;
91              
92             ### no point storing non-messages
93 669 50       2136 return unless defined $msg;
94              
95 669         8542 $log->store(
96             message => $msg,
97             tag => uc $name,
98             level => $prefix . $name,
99             extra => [@_]
100             );
101 80         1966 };
102             }
103              
104             sub flush {
105 49     49 1 33942 my @foo = $log->flush;
106 49 100       934 return unless @foo;
107 45         740 return reverse @foo;
108             }
109              
110             sub stack {
111 62     62 1 20938 return $log->retrieve( chrono => 1 );
112             }
113              
114             sub stack_as_string {
115 59     59 1 23953 my $class = shift;
116 59 100       519 my $trace = shift() ? 1 : 0;
117              
118             return join $/, map {
119 59 100       276 '[' . $_->tag . '] [' . $_->when . '] ' .
  701         60890  
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   170 use Carp ();
  20         56  
  20         5866  
151              
152             {
153              
154             sub cp_msg {
155 583     583 0 769555 my $self = shift;
156 583         1296 my $verbose = shift;
157              
158             ### so you don't want us to print the msg? ###
159 583 100 100     5570 return if defined $verbose && $verbose == 0;
160              
161 13         89 my $old_fh = select $CPANPLUS::Error::MSG_FH;
162              
163 13         121 print '['. $self->tag . '] ' . $self->message . "\n";
164 13         766 select $old_fh;
165              
166 13         68 return;
167             }
168              
169             sub cp_error {
170 86     86 0 115864 my $self = shift;
171 86         259 my $verbose = shift;
172              
173             ### so you don't want us to print the error? ###
174 86 50 66     528 return if defined $verbose && $verbose == 0;
175              
176 86         699 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       1686 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       565 my $debug = $cb ? $cb->configure_object->get_conf('debug') : 0;
186 86         880 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       5088 print $debug ? Carp::shortmess($msg) : $msg . "\n";
195              
196 86         724 select $old_fh;
197              
198 86         905 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: