File Coverage

blib/lib/CPAN/HandleConfig.pm
Criterion Covered Total %
statement 65 283 22.9
branch 17 166 10.2
condition 7 101 6.9
subroutine 13 29 44.8
pod 1 16 6.2
total 103 595 17.3


line stmt bran cond sub pod time code
1             package CPAN::HandleConfig;
2 13     13   610 use strict;
  13         17  
  13         507  
3 13     13   57 use vars qw(%can %keys $loading $VERSION);
  13         50  
  13         737  
4 13     13   59 use File::Path ();
  13         21  
  13         178  
5 13     13   51 use File::Spec ();
  13         16  
  13         175  
6 13     13   49 use File::Basename ();
  13         20  
  13         167  
7 13     13   52 use Carp ();
  13         16  
  13         45429  
8              
9             =head1 NAME
10              
11             CPAN::HandleConfig - internal configuration handling for CPAN.pm
12              
13             =cut
14              
15             $VERSION = "5.5005"; # see also CPAN::Config::VERSION at end of file
16              
17             %can = (
18             commit => "Commit changes to disk",
19             defaults => "Reload defaults from disk",
20             help => "Short help about 'o conf' usage",
21             init => "Interactive setting of all options",
22             );
23              
24             # Q: where is the "How do I add a new config option" HOWTO?
25             # A1: svn diff -r 757:758 # where dagolden added test_report [git e997b71de88f1019a1472fc13cb97b1b7f96610f]
26             # A2: svn diff -r 985:986 # where andk added yaml_module [git 312b6d9b12b1bdec0b6e282d853482145475021f]
27             # A3: 1. add new config option to %keys below
28             # 2. add a Pod description in CPAN::FirstTime; it should include a
29             # prompt line; see others for examples
30             # 3. add a "matcher" section in CPAN::FirstTime::init that includes
31             # a prompt function; see others for examples
32             # 4. add config option to documentation section in CPAN.pm
33              
34             %keys = map { $_ => undef }
35             (
36             "applypatch",
37             "auto_commit",
38             "build_cache",
39             "build_dir",
40             "build_dir_reuse",
41             "build_requires_install_policy",
42             "bzip2",
43             "cache_metadata",
44             "check_sigs",
45             "colorize_debug",
46             "colorize_output",
47             "colorize_print",
48             "colorize_warn",
49             "commandnumber_in_prompt",
50             "commands_quote",
51             "connect_to_internet_ok",
52             "cpan_home",
53             "curl",
54             "dontload_hash", # deprecated after 1.83_68 (rev. 581)
55             "dontload_list",
56             "ftp",
57             "ftp_passive",
58             "ftp_proxy",
59             "ftpstats_size",
60             "ftpstats_period",
61             "getcwd",
62             "gpg",
63             "gzip",
64             "halt_on_failure",
65             "histfile",
66             "histsize",
67             "http_proxy",
68             "inactivity_timeout",
69             "index_expire",
70             "inhibit_startup_message",
71             "keep_source_where",
72             "load_module_verbosity",
73             "lynx",
74             "make",
75             "make_arg",
76             "make_install_arg",
77             "make_install_make_command",
78             "makepl_arg",
79             "mbuild_arg",
80             "mbuild_install_arg",
81             "mbuild_install_build_command",
82             "mbuildpl_arg",
83             "ncftp",
84             "ncftpget",
85             "no_proxy",
86             "pager",
87             "password",
88             "patch",
89             "patches_dir",
90             "perl5lib_verbosity",
91             "plugin_list",
92             "prefer_external_tar",
93             "prefer_installer",
94             "prefs_dir",
95             "prerequisites_policy",
96             "proxy_pass",
97             "proxy_user",
98             "randomize_urllist",
99             "recommends_policy",
100             "scan_cache",
101             "shell",
102             "show_unparsable_versions",
103             "show_upload_date",
104             "show_zero_versions",
105             "suggests_policy",
106             "tar",
107             "tar_verbosity",
108             "term_is_latin",
109             "term_ornaments",
110             "test_report",
111             "trust_test_report_history",
112             "unzip",
113             "urllist",
114             "use_prompt_default",
115             "use_sqlite",
116             "username",
117             "version_timeout",
118             "wait_list",
119             "wget",
120             "yaml_load_code",
121             "yaml_module",
122             );
123              
124             my %prefssupport = map { $_ => 1 }
125             (
126             "build_requires_install_policy",
127             "check_sigs",
128             "make",
129             "make_install_make_command",
130             "prefer_installer",
131             "test_report",
132             );
133              
134             # returns true on successful action
135             sub edit {
136 0     0 0 0 my($self,@args) = @_;
137 0 0       0 return unless @args;
138 0         0 CPAN->debug("self[$self]args[".join(" | ",@args)."]");
139 0         0 my($o,$str,$func,$args,$key_exists);
140 0         0 $o = shift @args;
141 0 0       0 if($can{$o}) {
142 0         0 my $success = $self->$o(args => \@args); # o conf init => sub init => sub load
143 0 0       0 unless ($success) {
144 0         0 die "Panic: could not configure CPAN.pm for args [@args]. Giving up.";
145             }
146             } else {
147 0 0       0 CPAN->debug("o[$o]") if $CPAN::DEBUG;
148 0 0       0 unless (exists $keys{$o}) {
149 0         0 $CPAN::Frontend->mywarn("Warning: unknown configuration variable '$o'\n");
150             }
151 0         0 my $changed;
152              
153              
154             # one day I used randomize_urllist for a boolean, so we must
155             # list them explicitly --ak
156 0 0       0 if (0) {
    0          
157 0         0 } elsif ($o =~ /^(wait_list|urllist|dontload_list|plugin_list)$/) {
158              
159             #
160             # ARRAYS
161             #
162              
163 0         0 $func = shift @args;
164 0   0     0 $func ||= "";
165 0 0       0 CPAN->debug("func[$func]args[@args]") if $CPAN::DEBUG;
166             # Let's avoid eval, it's easier to comprehend without.
167 0 0       0 if ($func eq "push") {
    0          
    0          
    0          
    0          
    0          
168 0         0 push @{$CPAN::Config->{$o}}, @args;
  0         0  
169 0         0 $changed = 1;
170             } elsif ($func eq "pop") {
171 0         0 pop @{$CPAN::Config->{$o}};
  0         0  
172 0         0 $changed = 1;
173             } elsif ($func eq "shift") {
174 0         0 shift @{$CPAN::Config->{$o}};
  0         0  
175 0         0 $changed = 1;
176             } elsif ($func eq "unshift") {
177 0         0 unshift @{$CPAN::Config->{$o}}, @args;
  0         0  
178 0         0 $changed = 1;
179             } elsif ($func eq "splice") {
180 0   0     0 my $offset = shift @args || 0;
181 0   0     0 my $length = shift @args || 0;
182 0         0 splice @{$CPAN::Config->{$o}}, $offset, $length, @args; # may warn
  0         0  
183 0         0 $changed = 1;
184             } elsif ($func) {
185 0         0 $CPAN::Config->{$o} = [$func, @args];
186 0         0 $changed = 1;
187             } else {
188 0         0 $self->prettyprint($o);
189             }
190 0 0       0 if ($changed) {
191 0 0       0 if ($o eq "urllist") {
    0          
192             # reset the cached values
193 0         0 undef $CPAN::FTP::Thesite;
194 0         0 undef $CPAN::FTP::Themethod;
195 0         0 $CPAN::Index::LAST_TIME = 0;
196             } elsif ($o eq "dontload_list") {
197             # empty it, it will be built up again
198 0         0 $CPAN::META->{dontload_hash} = {};
199             }
200             }
201             } elsif ($o =~ /_hash$/) {
202              
203             #
204             # HASHES
205             #
206              
207 0 0 0     0 if (@args==1 && $args[0] eq "") {
    0          
208 0         0 @args = ();
209             } elsif (@args % 2) {
210 0         0 push @args, "";
211             }
212 0         0 $CPAN::Config->{$o} = { @args };
213 0         0 $changed = 1;
214             } else {
215              
216             #
217             # SCALARS
218             #
219              
220 0 0       0 if (defined $args[0]) {
221 0         0 $CPAN::CONFIG_DIRTY = 1;
222 0         0 $CPAN::Config->{$o} = $args[0];
223 0         0 $changed = 1;
224             }
225 0 0 0     0 $self->prettyprint($o)
226             if exists $keys{$o} or defined $CPAN::Config->{$o};
227             }
228 0 0       0 if ($changed) {
229 0 0       0 if ($CPAN::Config->{auto_commit}) {
230 0         0 $self->commit;
231             } else {
232 0         0 $CPAN::CONFIG_DIRTY = 1;
233 0         0 $CPAN::Frontend->myprint("Please use 'o conf commit' to ".
234             "make the config permanent!\n\n");
235             }
236             }
237             }
238             }
239              
240             sub prettyprint {
241 0     0 0 0 my($self,$k) = @_;
242 0         0 my $v = $CPAN::Config->{$k};
243 0 0       0 if (ref $v) {
    0          
244 0         0 my(@report);
245 0 0       0 if (ref $v eq "ARRAY") {
246 0         0 @report = map {"\t$_ \[$v->[$_]]\n"} 0..$#$v;
  0         0  
247             } else {
248 0 0       0 @report = map
249             {
250 0         0 sprintf "\t%-18s => %s\n",
251             "[$_]",
252             defined $v->{$_} ? "[$v->{$_}]" : "undef"
253             } keys %$v;
254             }
255 0         0 $CPAN::Frontend->myprint(
256             join(
257             "",
258             sprintf(
259             " %-18s\n",
260             $k
261             ),
262             @report
263             )
264             );
265             } elsif (defined $v) {
266 0         0 $CPAN::Frontend->myprint(sprintf " %-18s [%s]\n", $k, $v);
267             } else {
268 0         0 $CPAN::Frontend->myprint(sprintf " %-18s undef\n", $k);
269             }
270             }
271              
272             # generally, this should be called without arguments so that the currently
273             # loaded config file is where changes are committed.
274             sub commit {
275 0     0 0 0 my($self,@args) = @_;
276 0 0       0 CPAN->debug("args[@args]") if $CPAN::DEBUG;
277 0 0       0 if ($CPAN::RUN_DEGRADED) {
278 0         0 $CPAN::Frontend->mydie(
279             "'o conf commit' disabled in ".
280             "degraded mode. Maybe try\n".
281             " !undef \$CPAN::RUN_DEGRADED\n"
282             );
283             }
284 0         0 my ($configpm, $must_reload);
285              
286             # XXX does anything do this? can it be simplified? -- dagolden, 2011-01-19
287 0 0       0 if (@args) {
288 0 0       0 if ($args[0] eq "args") {
289             # we have not signed that contract
290             } else {
291 0         0 $configpm = $args[0];
292             }
293             }
294              
295             # use provided name or the current config or create a new MyConfig
296 0   0     0 $configpm ||= require_myconfig_or_config() || make_new_config();
      0        
297              
298             # commit to MyConfig if we can't write to Config
299 0 0 0     0 if ( ! -w $configpm && $configpm =~ m{CPAN/Config\.pm} ) {
300 0         0 my $myconfig = _new_config_name();
301 0         0 $CPAN::Frontend->mywarn(
302             "Your $configpm file\n".
303             "is not writable. I will attempt to write your configuration to\n" .
304             "$myconfig instead.\n\n"
305             );
306 0         0 $configpm = make_new_config();
307 0         0 $must_reload++; # so it gets loaded as $INC{'CPAN/MyConfig.pm'}
308             }
309              
310             # XXX why not just "-w $configpm"? -- dagolden, 2011-01-19
311 0         0 my($mode);
312 0 0       0 if (-f $configpm) {
313 0         0 $mode = (stat $configpm)[2];
314 0 0 0     0 if ($mode && ! -w _) {
315 0         0 _die_cant_write_config($configpm);
316             }
317             }
318              
319 0         0 $self->_write_config_file($configpm);
320 0 0       0 require_myconfig_or_config() if $must_reload;
321              
322             #$mode = 0444 | ( $mode & 0111 ? 0111 : 0 );
323             #chmod $mode, $configpm;
324             ###why was that so? $self->defaults;
325 0         0 $CPAN::Frontend->myprint("commit: wrote '$configpm'\n");
326 0         0 $CPAN::CONFIG_DIRTY = 0;
327 0         0 1;
328             }
329              
330             sub _write_config_file {
331 0     0   0 my ($self, $configpm) = @_;
332 0         0 my $msg;
333 0 0       0 $msg = <
334              
335             # This is CPAN.pm's systemwide configuration file. This file provides
336             # defaults for users, and the values can be changed in a per-user
337             # configuration file.
338              
339             EOF
340 0   0     0 $msg ||= "\n";
341 0         0 my($fh) = FileHandle->new;
342 0 0       0 rename $configpm, "$configpm~" if -f $configpm;
343 0 0       0 open $fh, ">$configpm" or
344             $CPAN::Frontend->mydie("Couldn't open >$configpm: $!");
345 0         0 $fh->print(qq[$msg\$CPAN::Config = \{\n]);
346 0         0 foreach (sort keys %$CPAN::Config) {
347 0 0       0 unless (exists $keys{$_}) {
348             # do not drop them: forward compatibility!
349 0         0 $CPAN::Frontend->mywarn("Unknown config variable '$_'\n");
350 0         0 next;
351             }
352             $fh->print(
353 0         0 " '$_' => ",
354             $self->neatvalue($CPAN::Config->{$_}),
355             ",\n"
356             );
357             }
358 0         0 $fh->print("};\n1;\n__END__\n");
359 0         0 close $fh;
360              
361 0         0 return;
362             }
363              
364              
365             # stolen from MakeMaker; not taking the original because it is buggy;
366             # bugreport will have to say: keys of hashes remain unquoted and can
367             # produce syntax errors
368             sub neatvalue {
369 7     7 0 2398 my($self, $v) = @_;
370 7 50       15 return "undef" unless defined $v;
371 7         11 my($t) = ref $v;
372 7 100       10 unless ($t) {
373 4         13 $v =~ s/\\/\\\\/g;
374 4         15 return "q[$v]";
375             }
376 3 100       9 if ($t eq 'ARRAY') {
377 1         4 my(@m, @neat);
378 1         2 push @m, "[";
379 1         4 foreach my $elem (@$v) {
380 1         3 push @neat, "q[$elem]";
381             }
382 1         3 push @m, join ", ", @neat;
383 1         3 push @m, "]";
384 1         4 return join "", @m;
385             }
386 2 50       6 return "$v" unless $t eq 'HASH';
387 2         3 my(@m, $key, $val);
388 2         8 while (($key,$val) = each %$v) {
389 2 50       4 last unless defined $key; # cautious programming in case (undef,undef) is true
390 2         9 push(@m,"q[$key]=>".$self->neatvalue($val)) ;
391             }
392 2         6 return "{ ".join(', ',@m)." }";
393             }
394              
395             sub defaults {
396 0     0 0 0 my($self) = @_;
397 0 0       0 if ($CPAN::RUN_DEGRADED) {
398 0         0 $CPAN::Frontend->mydie(
399             "'o conf defaults' disabled in ".
400             "degraded mode. Maybe try\n".
401             " !undef \$CPAN::RUN_DEGRADED\n"
402             );
403             }
404 0         0 my $done;
405 0         0 for my $config (qw(CPAN/MyConfig.pm CPAN/Config.pm)) {
406 0 0       0 if ($INC{$config}) {
407 0 0       0 CPAN->debug("INC{'$config'}[$INC{$config}]") if $CPAN::DEBUG;
408 0         0 CPAN::Shell->_reload_this($config,{reloforce => 1});
409 0         0 $CPAN::Frontend->myprint("'$INC{$config}' reread\n");
410 0         0 last;
411             }
412             }
413 0         0 $CPAN::CONFIG_DIRTY = 0;
414 0         0 1;
415             }
416              
417             =head2 C<< CLASS->safe_quote ITEM >>
418              
419             Quotes an item to become safe against spaces
420             in shell interpolation. An item is enclosed
421             in double quotes if:
422              
423             - the item contains spaces in the middle
424             - the item does not start with a quote
425              
426             This happens to avoid shell interpolation
427             problems when whitespace is present in
428             directory names.
429              
430             This method uses C to determine
431             the correct quote. If C is
432             a space, no quoting will take place.
433              
434              
435             if it starts and ends with the same quote character: leave it as it is
436              
437             if it contains no whitespace: leave it as it is
438              
439             if it contains whitespace, then
440              
441             if it contains quotes: better leave it as it is
442              
443             else: quote it with the correct quote type for the box we're on
444              
445             =cut
446              
447             {
448             # Instead of patching the guess, set commands_quote
449             # to the right value
450             my ($quotes,$use_quote)
451             = $^O eq 'MSWin32'
452             ? ('"', '"')
453             : (q{"'}, "'")
454             ;
455              
456             sub safe_quote {
457 2     2 1 8 my ($self, $command) = @_;
458             # Set up quote/default quote
459 2   33     19 my $quote = $CPAN::Config->{commands_quote} || $quotes;
460              
461 2 50 33     27 if ($quote ne ' '
      33        
      33        
462             and defined($command )
463             and $command =~ /\s/
464             and $command !~ /[$quote]/) {
465 0         0 return qq<$use_quote$command$use_quote>
466             }
467 2         8 return $command;
468             }
469             }
470              
471             sub init {
472 0     0 0 0 my($self,@args) = @_;
473 0         0 CPAN->debug("self[$self]args[".join(",",@args)."]");
474 0         0 $self->load(do_init => 1, @args);
475 0         0 1;
476             }
477              
478             # Loads CPAN::MyConfig or fall-back to CPAN::Config. Will not reload a file
479             # if already loaded. Returns the path to the file %INC or else the empty string
480             #
481             # Note -- if CPAN::Config were loaded and CPAN::MyConfig subsequently
482             # created, calling this again will leave *both* in %INC
483              
484             sub require_myconfig_or_config () {
485 7 50 33 7 0 37 if ( $INC{"CPAN/MyConfig.pm"} || _try_loading("CPAN::MyConfig", cpan_home())) {
    0 0        
486 7         27 return $INC{"CPAN/MyConfig.pm"};
487             }
488             elsif ( $INC{"CPAN/Config.pm"} || _try_loading("CPAN::Config") ) {
489 0         0 return $INC{"CPAN/Config.pm"};
490             }
491             else {
492 0         0 return q{};
493             }
494             }
495              
496             # Load a module, but ignore "can't locate..." errors
497             # Optionally take a list of directories to add to @INC for the load
498             sub _try_loading {
499 0     0   0 my ($module, @dirs) = @_;
500 0         0 (my $file = $module) =~ s{::}{/}g;
501 0         0 $file .= ".pm";
502              
503 0         0 local @INC = @INC;
504 0         0 for my $dir ( @dirs ) {
505 0 0       0 if ( -f File::Spec->catfile($dir, $file) ) {
506 0         0 unshift @INC, $dir;
507 0         0 last;
508             }
509             }
510              
511 0         0 eval { require $file };
  0         0  
512 0         0 my $err_myconfig = $@;
513 0 0 0     0 if ($err_myconfig and $err_myconfig !~ m#locate \Q$file\E#) {
514 0         0 die "Error while requiring ${module}:\n$err_myconfig";
515             }
516 0         0 return $INC{$file};
517             }
518              
519             # prioritized list of possible places for finding "CPAN/MyConfig.pm"
520             sub cpan_home_dir_candidates {
521 0     0 0 0 my @dirs;
522 0         0 my $old_v = $CPAN::Config->{load_module_verbosity};
523 0         0 $CPAN::Config->{load_module_verbosity} = q[none];
524 0 0       0 if ($CPAN::META->has_usable('File::HomeDir')) {
525 0 0       0 if ($^O ne 'darwin') {
526 0         0 push @dirs, File::HomeDir->my_data;
527             # my_data is ~/Library/Application Support on darwin,
528             # which causes issues in the toolchain.
529             }
530 0         0 push @dirs, File::HomeDir->my_home;
531             }
532             # Windows might not have HOME, so check it first
533 0 0       0 push @dirs, $ENV{HOME} if $ENV{HOME};
534             # Windows might have these instead
535 0 0 0     0 push( @dirs, File::Spec->catpath($ENV{HOMEDRIVE}, $ENV{HOMEPATH}, '') )
536             if $ENV{HOMEDRIVE} && $ENV{HOMEPATH};
537 0 0       0 push @dirs, $ENV{USERPROFILE} if $ENV{USERPROFILE};
538              
539 0         0 $CPAN::Config->{load_module_verbosity} = $old_v;
540 0 0       0 my $dotcpan = $^O eq 'VMS' ? '_cpan' : '.cpan';
541 0         0 @dirs = map { File::Spec->catdir($_, $dotcpan) } grep { defined } @dirs;
  0         0  
  0         0  
542 0 0       0 return wantarray ? @dirs : $dirs[0];
543             }
544              
545             sub load {
546 7     7 0 39 my($self, %args) = @_;
547 7         15 $CPAN::Be_Silent+=0; # protect against 'used only once'
548 7 50       27 $CPAN::Be_Silent++ if $args{be_silent}; # do not use; planned to be removed in 2011
549 7   50     45 my $do_init = delete $args{do_init} || 0;
550 7         13 my $make_myconfig = delete $args{make_myconfig};
551 7 100       33 $loading = 0 unless defined $loading;
552              
553 7         25 my $configpm = require_myconfig_or_config;
554 7         35 my @miss = $self->missing_config_data;
555 7 50       24 CPAN->debug("do_init[$do_init]loading[$loading]miss[@miss]") if $CPAN::DEBUG;
556 7 50 33     58 return unless $do_init || @miss;
557              
558             # I'm not how we'd ever wind up in a recursive loop, but I'm leaving
559             # this here for safety's sake -- dagolden, 2011-01-19
560 0 0       0 return if $loading;
561 0   0     0 local $loading = ($loading||0) + 1;
562              
563             # Warn if we have a config file, but things were found missing
564 0 0 0     0 if ($configpm && @miss && !$do_init) {
      0        
565 0 0 0     0 if ($make_myconfig || ( ! -w $configpm && $configpm =~ m{CPAN/Config\.pm})) {
      0        
566 0         0 $configpm = make_new_config();
567 0         0 $CPAN::Frontend->myprint(<
568             The system CPAN configuration file has provided some default values,
569             but you need to complete the configuration dialog for CPAN.pm.
570             Configuration will be written to
571             <<$configpm>>
572             END
573             }
574             else {
575 0         0 $CPAN::Frontend->myprint(<
576             Sorry, we have to rerun the configuration dialog for CPAN.pm due to
577             some missing parameters. Configuration will be written to
578             <<$configpm>>
579              
580             END
581             }
582             }
583              
584 0         0 require CPAN::FirstTime;
585 0   0     0 return CPAN::FirstTime::init($configpm || make_new_config(), %args);
586             }
587              
588             # Creates a new, empty config file at the preferred location
589             # Any existing will be renamed with a ".bak" suffix if possible
590             # If the file cannot be created, an exception is thrown
591             sub make_new_config {
592 0     0 0 0 my $configpm = _new_config_name();
593 0         0 my $configpmdir = File::Basename::dirname( $configpm );
594 0 0       0 File::Path::mkpath($configpmdir) unless -d $configpmdir;
595              
596 0 0       0 if ( -w $configpmdir ) {
597             #_#_# following code dumped core on me with 5.003_11, a.k.
598 0 0       0 if( -f $configpm ) {
599 0         0 my $configpm_bak = "$configpm.bak";
600 0 0       0 unlink $configpm_bak if -f $configpm_bak;
601 0 0       0 if( rename $configpm, $configpm_bak ) {
602 0         0 $CPAN::Frontend->mywarn(<
603             Old configuration file $configpm
604             moved to $configpm_bak
605             END
606             }
607             }
608 0         0 my $fh = FileHandle->new;
609 0 0       0 if ($fh->open(">$configpm")) {
610 0         0 $fh->print("1;\n");
611 0         0 return $configpm;
612             }
613             }
614 0         0 _die_cant_write_config($configpm);
615             }
616              
617             sub _die_cant_write_config {
618 0     0   0 my ($configpm) = @_;
619 0         0 $CPAN::Frontend->mydie(<<"END");
620             WARNING: CPAN.pm is unable to write a configuration file. You
621             must be able to create and write to '$configpm'.
622              
623             Aborting configuration.
624             END
625              
626             }
627              
628             # From candidate directories, we would like (in descending preference order):
629             # * the one that contains a MyConfig file
630             # * one that exists (even without MyConfig)
631             # * the first one on the list
632             sub cpan_home {
633 0     0 0 0 my @dirs = cpan_home_dir_candidates();
634 0         0 for my $d (@dirs) {
635 0 0       0 return $d if -f "$d/CPAN/MyConfig.pm";
636             }
637 0         0 for my $d (@dirs) {
638 0 0       0 return $d if -d $d;
639             }
640 0         0 return $dirs[0];
641             }
642              
643             sub _new_config_name {
644 0     0   0 return File::Spec->catfile(cpan_home(), 'CPAN', 'MyConfig.pm');
645             }
646              
647             # returns mandatory but missing entries in the Config
648             sub missing_config_data {
649 7     7 0 10 my(@miss);
650 7 50       52 for (
651             "auto_commit",
652             "build_cache",
653             "build_dir",
654             "cache_metadata",
655             "cpan_home",
656             "ftp_proxy",
657             #"gzip",
658             "http_proxy",
659             "index_expire",
660             #"inhibit_startup_message",
661             "keep_source_where",
662             #"make",
663             "make_arg",
664             "make_install_arg",
665             "makepl_arg",
666             "mbuild_arg",
667             "mbuild_install_arg",
668             ($^O eq "MSWin32" ? "" : "mbuild_install_build_command"),
669             "mbuildpl_arg",
670             "no_proxy",
671             #"pager",
672             "prerequisites_policy",
673             "scan_cache",
674             #"tar",
675             #"unzip",
676             "urllist",
677             ) {
678 140 50       252 next unless exists $keys{$_};
679 140 50       242 push @miss, $_ unless defined $CPAN::Config->{$_};
680             }
681 7         27 return @miss;
682             }
683              
684             sub help {
685 0     0 0   $CPAN::Frontend->myprint(q[
686             Known options:
687             commit commit session changes to disk
688             defaults reload default config values from disk
689             help this help
690             init enter a dialog to set all or a set of parameters
691              
692             Edit key values as in the following (the "o" is a literal letter o):
693             o conf build_cache 15
694             o conf build_dir "/foo/bar"
695             o conf urllist shift
696             o conf urllist unshift ftp://ftp.foo.bar/
697             o conf inhibit_startup_message 1
698              
699             ]);
700 0           1; #don't reprint CPAN::Config
701             }
702              
703             sub cpl {
704 0     0 0   my($word,$line,$pos) = @_;
705 0   0       $word ||= "";
706 0 0         CPAN->debug("word[$word] line[$line] pos[$pos]") if $CPAN::DEBUG;
707 0           my(@words) = split " ", substr($line,0,$pos+1);
708 0 0 0       if (
    0 0        
    0 0        
      0        
      0        
      0        
709             defined($words[2])
710             and
711             $words[2] =~ /list$/
712             and
713             (
714             @words == 3
715             ||
716             @words == 4 && length($word)
717             )
718             ) {
719 0           return grep /^\Q$word\E/, qw(splice shift unshift pop push);
720             } elsif (defined($words[2])
721             and
722             $words[2] eq "init"
723             and
724             (
725             @words == 3
726             ||
727             @words >= 4 && length($word)
728             )) {
729 0           return sort grep /^\Q$word\E/, keys %keys;
730             } elsif (@words >= 4) {
731 0           return ();
732             }
733 0           my %seen;
734 0           my(@o_conf) = sort grep { !$seen{$_}++ }
  0            
735             keys %can,
736             keys %$CPAN::Config,
737             keys %keys;
738 0           return grep /^\Q$word\E/, @o_conf;
739             }
740              
741             sub prefs_lookup {
742 0     0 0   my($self,$distro,$what) = @_;
743              
744 0 0         if ($prefssupport{$what}) {
745 0 0 0       return $CPAN::Config->{$what} unless
      0        
      0        
746             $distro
747             and $distro->prefs
748             and $distro->prefs->{cpanconfig}
749             and defined $distro->prefs->{cpanconfig}{$what};
750 0           return $distro->prefs->{cpanconfig}{$what};
751             } else {
752 0           $CPAN::Frontend->mywarn("Warning: $what not yet officially ".
753             "supported for distroprefs, doing a normal lookup");
754 0           return $CPAN::Config->{$what};
755             }
756             }
757              
758              
759             {
760             package
761             CPAN::Config; ####::###### #hide from indexer
762             # note: J. Nick Koston wrote me that they are using
763             # CPAN::Config->commit although undocumented. I suggested
764             # CPAN::Shell->o("conf","commit") even when ugly it is at least
765             # documented
766              
767             # that's why I added the CPAN::Config class with autoload and
768             # deprecated warning
769              
770 13     13   97 use strict;
  13         21  
  13         462  
771 13     13   83 use vars qw($AUTOLOAD $VERSION);
  13         16  
  13         2100  
772             $VERSION = "5.5005";
773              
774             # formerly CPAN::HandleConfig was known as CPAN::Config
775             sub AUTOLOAD { ## no critic
776 0     0     my $class = shift; # e.g. in dh-make-perl: CPAN::Config
777 0           my($l) = $AUTOLOAD;
778 0           $CPAN::Frontend->mywarn("Dispatching deprecated method '$l' to CPAN::HandleConfig\n");
779 0           $l =~ s/.*:://;
780 0           CPAN::HandleConfig->$l(@_);
781             }
782             }
783              
784             1;
785              
786             __END__