6548a3fd7d8be69d97aef46589364de9200c7fff
[p5sagit/p5-mst-13.2.git] / lib / CPAN / FirstTime.pm
1 # -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*-
2 package CPAN::Mirrored::By;
3
4 sub new { 
5     my($self,@arg) = @_;
6     bless [@arg], $self;
7 }
8 sub continent { shift->[0] }
9 sub country { shift->[1] }
10 sub url { shift->[2] }
11
12 package CPAN::FirstTime;
13
14 use strict;
15 use ExtUtils::MakeMaker qw(prompt);
16 use FileHandle ();
17 use File::Basename ();
18 use File::Path ();
19 use vars qw($VERSION);
20 $VERSION = substr q$Revision: 1.50 $, 10;
21
22 =head1 NAME
23
24 CPAN::FirstTime - Utility for CPAN::Config file Initialization
25
26 =head1 SYNOPSIS
27
28 CPAN::FirstTime::init()
29
30 =head1 DESCRIPTION
31
32 The init routine asks a few questions and writes a CPAN::Config
33 file. Nothing special.
34
35 =cut
36
37
38 sub init {
39     my($configpm) = @_;
40     use Config;
41     unless ($CPAN::VERSION) {
42         require CPAN::Nox;
43     }
44     eval {require CPAN::Config;};
45     $CPAN::Config ||= {};
46     local($/) = "\n";
47     local($\) = "";
48     local($|) = 1;
49
50     my($ans,$default,$local,$cont,$url,$expected_size);
51
52     #
53     # Files, directories
54     #
55
56     print qq[
57
58 CPAN is the world-wide archive of perl resources. It consists of about
59 100 sites that all replicate the same contents all around the globe.
60 Many countries have at least one CPAN site already. The resources
61 found on CPAN are easily accessible with the CPAN.pm module. If you
62 want to use CPAN.pm, you have to configure it properly.
63
64 If you do not want to enter a dialog now, you can answer 'no' to this
65 question and I\'ll try to autoconfigure. (Note: you can revisit this
66 dialog anytime later by typing 'o conf init' at the cpan prompt.)
67
68 ];
69
70     my $manual_conf =
71         ExtUtils::MakeMaker::prompt("Are you ready for manual configuration?",
72                                     "yes");
73     my $fastread;
74     {
75       local $^W;
76       if ($manual_conf =~ /^\s*y/i) {
77         $fastread = 0;
78         *prompt = \&ExtUtils::MakeMaker::prompt;
79       } else {
80         $fastread = 1;
81         $CPAN::Config->{urllist} ||= [];
82         # prototype should match that of &MakeMaker::prompt
83         *prompt = sub ($;$) {
84           my($q,$a) = @_;
85           my($ret) = defined $a ? $a : "";
86           printf qq{%s [%s]\n\n}, $q, $ret;
87           $ret;
88         };
89       }
90     }
91     print qq{
92
93 The following questions are intended to help you with the
94 configuration. The CPAN module needs a directory of its own to cache
95 important index files and maybe keep a temporary mirror of CPAN files.
96 This may be a site-wide directory or a personal directory.
97
98 };
99
100     my $cpan_home = $CPAN::Config->{cpan_home} || MM->catdir($ENV{HOME}, ".cpan");
101     if (-d $cpan_home) {
102         print qq{
103
104 I see you already have a  directory
105     $cpan_home
106 Shall we use it as the general CPAN build and cache directory?
107
108 };
109     } else {
110         print qq{
111
112 First of all, I\'d like to create this directory. Where?
113
114 };
115     }
116
117     $default = $cpan_home;
118     while ($ans = prompt("CPAN build and cache directory?",$default)) {
119       eval { File::Path::mkpath($ans); }; # dies if it can't
120       if ($@) {
121         warn "Couldn't create directory $ans.
122 Please retry.\n";
123         next;
124       }
125       if (-d $ans && -w _) {
126         last;
127       } else {
128         warn "Couldn't find directory $ans
129   or directory is not writable. Please retry.\n";
130       }
131     }
132     $CPAN::Config->{cpan_home} = $ans;
133
134     print qq{
135
136 If you want, I can keep the source files after a build in the cpan
137 home directory. If you choose so then future builds will take the
138 files from there. If you don\'t want to keep them, answer 0 to the
139 next question.
140
141 };
142
143     $CPAN::Config->{keep_source_where} = MM->catdir($CPAN::Config->{cpan_home},"sources");
144     $CPAN::Config->{build_dir} = MM->catdir($CPAN::Config->{cpan_home},"build");
145
146     #
147     # Cache size, Index expire
148     #
149
150     print qq{
151
152 How big should the disk cache be for keeping the build directories
153 with all the intermediate files\?
154
155 };
156
157     $default = $CPAN::Config->{build_cache} || 10;
158     $ans = prompt("Cache size for build directory (in MB)?", $default);
159     $CPAN::Config->{build_cache} = $ans;
160
161     # XXX This the time when we refetch the index files (in days)
162     $CPAN::Config->{'index_expire'} = 1;
163
164     print qq{
165
166 By default, each time the CPAN module is started, cache scanning
167 is performed to keep the cache size in sync. To prevent from this,
168 disable the cache scanning with 'never'.
169
170 };
171
172     $default = $CPAN::Config->{scan_cache} || 'atstart';
173     do {
174         $ans = prompt("Perform cache scanning (atstart or never)?", $default);
175     } while ($ans ne 'atstart' && $ans ne 'never');
176     $CPAN::Config->{scan_cache} = $ans;
177
178     #
179     # cache_metadata
180     #
181     print qq{
182
183 To considerably speed up the initial CPAN shell startup, it is
184 possible to use Storable to create a cache of metadata. If Storable
185 is not available, the normal index mechanism will be used.
186
187 };
188
189     defined($default = $CPAN::Config->{cache_metadata}) or $default = 1;
190     do {
191         $ans = prompt("Cache metadata (yes/no)?", ($default ? 'yes' : 'no'));
192     } while ($ans !~ /^\s*[yn]/i);
193     $CPAN::Config->{cache_metadata} = ($ans =~ /^\s*y/i ? 1 : 0);
194
195     #
196     # term_is_latin
197     #
198     print qq{
199
200 The next option deals with the charset your terminal supports. In
201 general CPAN is English speaking territory, thus the charset does not
202 matter much, but some of the aliens out there who upload their
203 software to CPAN bear names that are outside the ASCII range. If your
204 terminal supports UTF-8, you say no to the next question, if it
205 supports ISO-8859-1 (also known as LATIN1) then you say yes, and if it
206 supports neither nor, your answer does not matter, you will not be
207 able to read the names of some authors anyway. If you answer no, nmes
208 will be output in UTF-8.
209
210 };
211
212     defined($default = $CPAN::Config->{term_is_latin}) or $default = 1;
213     do {
214         $ans = prompt("Your terminal expects ISO-8859-1 (yes/no)?",
215                       ($default ? 'yes' : 'no'));
216     } while ($ans !~ /^\s*[yn]/i);
217     $CPAN::Config->{term_is_latin} = ($ans =~ /^\s*y/i ? 1 : 0);
218
219     #
220     # prerequisites_policy
221     # Do we follow PREREQ_PM?
222     #
223     print qq{
224
225 The CPAN module can detect when a module that which you are trying to
226 build depends on prerequisites. If this happens, it can build the
227 prerequisites for you automatically ('follow'), ask you for
228 confirmation ('ask'), or just ignore them ('ignore'). Please set your
229 policy to one of the three values.
230
231 };
232
233     $default = $CPAN::Config->{prerequisites_policy} || 'ask';
234     do {
235       $ans =
236           prompt("Policy on building prerequisites (follow, ask or ignore)?",
237                  $default);
238     } while ($ans ne 'follow' && $ans ne 'ask' && $ans ne 'ignore');
239     $CPAN::Config->{prerequisites_policy} = $ans;
240
241     #
242     # External programs
243     #
244
245     print qq{
246
247 The CPAN module will need a few external programs to work properly.
248 Please correct me, if I guess the wrong path for a program. Don\'t
249 panic if you do not have some of them, just press ENTER for those. To
250 disable the use of a download program, you can type a space followed
251 by ENTER.
252
253 };
254
255     my $old_warn = $^W;
256     local $^W if $^O eq 'MacOS';
257     my(@path) = split /$Config{'path_sep'}/, $ENV{'PATH'};
258     local $^W = $old_warn;
259     my $progname;
260     for $progname (qw/gzip tar unzip make lynx wget ncftpget ncftp ftp/){
261       if ($^O eq 'MacOS') {
262           $CPAN::Config->{$progname} = 'not_here';
263           next;
264       }
265       my $progcall = $progname;
266       # we don't need ncftp if we have ncftpget
267       next if $progname eq "ncftp" && $CPAN::Config->{ncftpget} gt " ";
268       my $path = $CPAN::Config->{$progname} 
269           || $Config::Config{$progname}
270               || "";
271       if (MM->file_name_is_absolute($path)) {
272         # testing existence is not good enough, some have these exe
273         # extensions
274
275         # warn "Warning: configured $path does not exist\n" unless -e $path;
276         # $path = "";
277       } else {
278         $path = '';
279       }
280       unless ($path) {
281         # e.g. make -> nmake
282         $progcall = $Config::Config{$progname} if $Config::Config{$progname};
283       }
284
285       $path ||= find_exe($progcall,[@path]);
286       warn "Warning: $progcall not found in PATH\n" unless
287           $path; # not -e $path, because find_exe already checked that
288       $ans = prompt("Where is your $progname program?",$path) || $path;
289       $CPAN::Config->{$progname} = $ans;
290     }
291     my $path = $CPAN::Config->{'pager'} || 
292         $ENV{PAGER} || find_exe("less",[@path]) || 
293             find_exe("more",[@path]) || ($^O eq 'MacOS' ? $ENV{EDITOR} : 0 )
294             || "more";
295     $ans = prompt("What is your favorite pager program?",$path);
296     $CPAN::Config->{'pager'} = $ans;
297     $path = $CPAN::Config->{'shell'};
298     if (MM->file_name_is_absolute($path)) {
299         warn "Warning: configured $path does not exist\n" unless -e $path;
300         $path = "";
301     }
302     $path ||= $ENV{SHELL};
303     if ($^O eq 'MacOS') {
304         $CPAN::Config->{'shell'} = 'not_here';
305     } else {
306         $path =~ s,\\,/,g if $^O eq 'os2';      # Cosmetic only
307         $ans = prompt("What is your favorite shell?",$path);
308         $CPAN::Config->{'shell'} = $ans;
309     }
310
311     #
312     # Arguments to make etc.
313     #
314
315     print qq{
316
317 Every Makefile.PL is run by perl in a separate process. Likewise we
318 run \'make\' and \'make install\' in processes. If you have any
319 parameters \(e.g. PREFIX, LIB, UNINST or the like\) you want to pass
320 to the calls, please specify them here.
321
322 If you don\'t understand this question, just press ENTER.
323
324 };
325
326     $default = $CPAN::Config->{makepl_arg} || "";
327     $CPAN::Config->{makepl_arg} =
328         prompt("Parameters for the 'perl Makefile.PL' command?
329 Typical frequently used settings:
330
331     POLLUTE=1        increasing backwards compatibility
332     LIB=~/perl       non-root users (please see manual for more hints)
333
334 Your choice: ",$default);
335     $default = $CPAN::Config->{make_arg} || "";
336     $CPAN::Config->{make_arg} = prompt("Parameters for the 'make' command?
337 Typical frequently used setting:
338
339     -j3              dual processor system
340
341 Your choice: ",$default);
342
343     $default = $CPAN::Config->{make_install_arg} || $CPAN::Config->{make_arg} || "";
344     $CPAN::Config->{make_install_arg} =
345         prompt("Parameters for the 'make install' command?
346 Typical frequently used setting:
347
348     UNINST=1         to always uninstall potentially conflicting files
349
350 Your choice: ",$default);
351
352     #
353     # Alarm period
354     #
355
356     print qq{
357
358 Sometimes you may wish to leave the processes run by CPAN alone
359 without caring about them. As sometimes the Makefile.PL contains
360 question you\'re expected to answer, you can set a timer that will
361 kill a 'perl Makefile.PL' process after the specified time in seconds.
362
363 If you set this value to 0, these processes will wait forever. This is
364 the default and recommended setting.
365
366 };
367
368     $default = $CPAN::Config->{inactivity_timeout} || 0;
369     $CPAN::Config->{inactivity_timeout} =
370         prompt("Timeout for inactivity during Makefile.PL?",$default);
371
372     # Proxies
373
374     print qq{
375
376 If you\'re accessing the net via proxies, you can specify them in the
377 CPAN configuration or via environment variables. The variable in
378 the \$CPAN::Config takes precedence.
379
380 };
381
382     for (qw/ftp_proxy http_proxy no_proxy/) {
383         $default = $CPAN::Config->{$_} || $ENV{$_};
384         $CPAN::Config->{$_} = prompt("Your $_?",$default);
385     }
386
387     #
388     # MIRRORED.BY
389     #
390
391     conf_sites() unless $fastread;
392
393     unless (@{$CPAN::Config->{'wait_list'}||[]}) {
394         print qq{
395
396 WAIT support is available as a Plugin. You need the CPAN::WAIT module
397 to actually use it.  But we need to know your favorite WAIT server. If
398 you don\'t know a WAIT server near you, just press ENTER.
399
400 };
401         $default = "wait://ls6.informatik.uni-dortmund.de:1404";
402         $ans = prompt("Your favorite WAIT server?\n  ",$default);
403         push @{$CPAN::Config->{'wait_list'}}, $ans;
404     }
405
406     # We don't ask that now, it will be noticed in time, won't it?
407     $CPAN::Config->{'inhibit_startup_message'} = 0;
408     $CPAN::Config->{'getcwd'} = 'cwd';
409
410     print "\n\n";
411     CPAN::Config->commit($configpm);
412 }
413
414 sub conf_sites {
415   my $m = 'MIRRORED.BY';
416   my $mby = MM->catfile($CPAN::Config->{keep_source_where},$m);
417   File::Path::mkpath(File::Basename::dirname($mby));
418   if (-f $mby && -f $m && -M $m < -M $mby) {
419     require File::Copy;
420     File::Copy::copy($m,$mby) or die "Could not update $mby: $!";
421   }
422   my $loopcount = 0;
423   local $^T = time;
424   while ($mby) {
425     if ( ! -f $mby ){
426       print qq{You have no $mby
427   I\'m trying to fetch one
428 };
429       $mby = CPAN::FTP->localize($m,$mby,3);
430     } elsif (-M $mby > 60 && $loopcount == 0) {
431       print qq{Your $mby is older than 60 days,
432   I\'m trying to fetch one
433 };
434       $mby = CPAN::FTP->localize($m,$mby,3);
435       $loopcount++;
436     } elsif (-s $mby == 0) {
437       print qq{You have an empty $mby,
438   I\'m trying to fetch one
439 };
440       $mby = CPAN::FTP->localize($m,$mby,3);
441     } else {
442       last;
443     }
444   }
445   read_mirrored_by($mby);
446   bring_your_own();
447 }
448
449 sub find_exe {
450     my($exe,$path) = @_;
451     my($dir);
452     #warn "in find_exe exe[$exe] path[@$path]";
453     for $dir (@$path) {
454         my $abs = MM->catfile($dir,$exe);
455         if (($abs = MM->maybe_command($abs))) {
456             return $abs;
457         }
458     }
459 }
460
461 sub picklist {
462     my($items,$prompt,$default,$require_nonempty,$empty_warning)=@_;
463     $default ||= '';
464
465     my ($item, $i);
466     for $item (@$items) {
467         printf "(%d) %s\n", ++$i, $item;
468     }
469
470     my @nums;
471     while (1) {
472         my $num = prompt($prompt,$default);
473         @nums = split (' ', $num);
474         (warn "invalid items entered, try again\n"), next
475             if grep (/\D/ || $_ < 1 || $_ > $i, @nums);
476         if ($require_nonempty) {
477             (warn "$empty_warning\n"), next
478                 unless @nums;
479         }
480         last;
481     }
482     print "\n";
483     for (@nums) { $_-- }
484     @{$items}[@nums];
485 }
486
487 sub read_mirrored_by {
488     my $local = shift or return;
489     my(%all,$url,$expected_size,$default,$ans,$host,$dst,$country,$continent,@location);
490     my $fh = FileHandle->new;
491     $fh->open($local) or die "Couldn't open $local: $!";
492     local $/ = "\012";
493     while (<$fh>) {
494         ($host) = /^([\w\.\-]+)/ unless defined $host;
495         next unless defined $host;
496         next unless /\s+dst_(dst|location)/;
497         /location\s+=\s+\"([^\"]+)/ and @location = (split /\s*,\s*/, $1) and
498             ($continent, $country) = @location[-1,-2];
499         $continent =~ s/\s\(.*//;
500         $continent =~ s/\W+$//; # if Jarkko doesn't know latitude/longitude
501         /dst_dst\s+=\s+\"([^\"]+)/  and $dst = $1;
502         next unless $host && $dst && $continent && $country;
503         $all{$continent}{$country}{$dst} = CPAN::Mirrored::By->new($continent,$country,$dst);
504         undef $host;
505         $dst=$continent=$country="";
506     }
507     $fh->close;
508     $CPAN::Config->{urllist} ||= [];
509     my(@previous_urls);
510     if (@previous_urls = @{$CPAN::Config->{urllist}}) {
511         $CPAN::Config->{urllist} = [];
512     }
513
514     print qq{
515
516 Now we need to know where your favorite CPAN sites are located. Push
517 a few sites onto the array (just in case the first on the array won\'t
518 work). If you are mirroring CPAN to your local workstation, specify a
519 file: URL.
520
521 First, pick a nearby continent and country (you can pick several of
522 each, separated by spaces, or none if you just want to keep your
523 existing selections). Then, you will be presented with a list of URLs
524 of CPAN mirrors in the countries you selected, along with previously
525 selected URLs. Select some of those URLs, or just keep the old list.
526 Finally, you will be prompted for any extra URLs -- file:, ftp:, or
527 http: -- that host a CPAN mirror.
528
529 };
530
531     my (@cont, $cont, %cont, @countries, @urls, %seen);
532     my $no_previous_warn = 
533        "Sorry! since you don't have any existing picks, you must make a\n" .
534        "geographic selection.";
535     @cont = picklist([sort keys %all],
536                      "Select your continent (or several nearby continents)",
537                      '',
538                      ! @previous_urls,
539                      $no_previous_warn);
540
541
542     foreach $cont (@cont) {
543         my @c = sort keys %{$all{$cont}};
544         @cont{@c} = map ($cont, 0..$#c);
545         @c = map ("$_ ($cont)", @c) if @cont > 1;
546         push (@countries, @c);
547     }
548
549     if (@countries) {
550         @countries = picklist (\@countries,
551                                "Select your country (or several nearby countries)",
552                                '',
553                                ! @previous_urls,
554                                $no_previous_warn);
555         %seen = map (($_ => 1), @previous_urls);
556         # hmmm, should take list of defaults from CPAN::Config->{'urllist'}...
557         foreach $country (@countries) {
558             (my $bare_country = $country) =~ s/ \(.*\)//;
559             my @u = sort keys %{$all{$cont{$bare_country}}{$bare_country}};
560             @u = grep (! $seen{$_}, @u);
561             @u = map ("$_ ($bare_country)", @u)
562                if @countries > 1;
563             push (@urls, @u);
564         }
565     }
566     push (@urls, map ("$_ (previous pick)", @previous_urls));
567     my $prompt = "Select as many URLs as you like,
568 put them on one line, separated by blanks";
569     if (@previous_urls) {
570        $default = join (' ', ((scalar @urls) - (scalar @previous_urls) + 1) ..
571                              (scalar @urls));
572        $prompt .= "\n(or just hit RETURN to keep your previous picks)";
573     }
574
575     @urls = picklist (\@urls, $prompt, $default);
576     foreach (@urls) { s/ \(.*\)//; }
577     push @{$CPAN::Config->{urllist}}, @urls;
578 }
579
580 sub bring_your_own {
581     my %seen = map (($_ => 1), @{$CPAN::Config->{urllist}});
582     my($ans,@urls);
583     do {
584         my $prompt = "Enter another URL or RETURN to quit:";
585         unless (%seen) {
586             $prompt = qq{CPAN.pm needs at least one URL where it can fetch CPAN files from.
587
588 Please enter your CPAN site:};
589         }
590         $ans = prompt ($prompt, "");
591
592         if ($ans) {
593             $ans =~ s|/?\z|/|; # has to end with one slash
594             $ans = "file:$ans" unless $ans =~ /:/; # without a scheme is a file:
595             if ($ans =~ /^\w+:\/./) {
596                 push @urls, $ans unless $seen{$ans}++;
597             } else {
598                 printf(qq{"%s" doesn\'t look like an URL at first sight.
599 I\'ll ignore it for now.
600 You can add it to your %s
601 later if you\'re sure it\'s right.\n},
602                        $ans,
603                        $INC{'CPAN/MyConfig.pm'} || $INC{'CPAN/Config.pm'} || "configuration file",
604                       );
605             }
606         }
607     } while $ans || !%seen;
608
609     push @{$CPAN::Config->{urllist}}, @urls;
610     # xxx delete or comment these out when you're happy that it works
611     print "New set of picks:\n";
612     map { print "  $_\n" } @{$CPAN::Config->{urllist}};
613 }
614
615 1;