File Coverage

blib/lib/Verby/Config/Source/Prompt.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2              
3             package Verby::Config::Source::Prompt;
4 1     1   3217 use Moose;
  0            
  0            
5              
6             extends qw/Verby::Config::Source/;
7              
8             our $VERSION = "0.05";
9              
10             has questions => (
11             isa => "Hashref",
12             is => "ro",
13             required => 1,
14             );
15              
16             has asap => (
17             isa => "Bool",
18             is => "ro",
19             default => 0,
20             );
21              
22             sub BUILD {
23             my $self = shift;
24             $self->prompt_all if $self->asap;
25             }
26              
27             # this is a copy of ExtUtils::MakeMaker::prompt, hacked up for Verby
28             # it's stolen because EUMM takes 1 full second to load
29             sub prompt ($;$) {
30             #my($mess, $def) = @_;
31             my ($mess, $key) = @_; # no notion of a default - if it's there another config source knows about it already
32             #Carp::confess("prompt function called without an argument")
33             Log::Dispatch::Config->instance->log_and_die(level => "error", message => "prompt function called without an argument")
34             unless defined $mess;
35              
36             #my $isa_tty = -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)) ;
37             Log::Dispatch::Config->instance->log_and_die(level => "error", message => "Can't prompt for '$key' - STDIN is not a terminal")
38             unless -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)) ;
39              
40             # defaults are no longer relevant
41             #my $dispdef = defined $def ? "[$def] " : " ";
42             #$def = defined $def ? $def : "";
43              
44             local $|=1;
45             local $\;
46             #print "$mess $dispdef";
47             print $mess;
48              
49             #my $ans;
50             #if ($ENV{PERL_MM_USE_DEFAULT} || (!$isa_tty && eof STDIN)) {
51             # print "$def\n";
52             #}
53             #else {
54             #$ans = <STDIN>;
55             #if( defined $ans ) {
56             if (defined(my $ans = <STDIN>)) {
57             chomp $ans;
58             return $ans;
59             }
60             else { # user hit ctrl-D
61             print "\n";
62             Log::Dispatch::Config->instance->log_and_die(level => "error", message => "Can't proceed - value for '$key' unknown");
63             }
64             #}
65              
66             #return (!defined $ans || $ans eq '') ? $def : $ans;
67             }
68              
69             sub get_key {
70             my ( $self, $key ) = @_;
71              
72             my $prompt = $self->questions->{$key};
73              
74             Log::Dispatch::Config->instance->log_and_die(level => "error", message => "Configuration key '$key' is unresolvable") unless $prompt;
75              
76             return prompt($prompt, $key);
77             }
78              
79             sub prompt_all {
80             my $self = shift;
81              
82             (tied %{ $self->data })->FETCH($_) for (keys %{ $self->questions });
83             }
84              
85             __PACKAGE__
86              
87             __END__
88              
89             =pod
90              
91             =head1 NAME
92              
93             Verby::Config::Source::Prompt -
94              
95             =head1 SYNOPSIS
96              
97             use Verby::Config::Source::Prompt;
98              
99             =head1 DESCRIPTION
100              
101             =head1 METHODS
102              
103             =over 4
104              
105             =item B<new>
106              
107             =item B<prompt>
108              
109             =item B<prompt_all>
110              
111             =item B<get_key>
112              
113             =back
114              
115             =head1 BUGS
116              
117             None that we are aware of. Of course, if you find a bug, let us know, and we will be sure to fix it.
118              
119             =head1 CODE COVERAGE
120              
121             We use B<Devel::Cover> to test the code coverage of the tests, please refer to COVERAGE section of the L<Verby> module for more information.
122              
123             =head1 SEE ALSO
124              
125             =head1 AUTHOR
126              
127             Yuval Kogman, E<lt>nothingmuch@woobling.orgE<gt>
128              
129             =head1 COPYRIGHT AND LICENSE
130              
131             Copyright 2005-2008 by Infinity Interactive, Inc.
132              
133             L<http://www.iinteractive.com>
134              
135             This library is free software; you can redistribute it and/or modify
136             it under the same terms as Perl itself.
137              
138             =cut