diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2007-10-01 15:32:19 -0400 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-10-02 12:31:32 +0000 |
commit | 74dc058dc967bba1ab16a57522ef421ee59cc29b (patch) | |
tree | 3be50fbae73e60671c67c379aa1ac563a80ddb1e | |
parent | bd3d0583950212b2f79deb8cb857c0f408cdf2aa (diff) | |
download | perl-74dc058dc967bba1ab16a57522ef421ee59cc29b.tar.gz |
/cygdrive is configurable
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510710011632n175427fdx39e173372862526e@mail.gmail.com>
p4raw-id: //depot/perl@32006
-rw-r--r-- | README.cygwin | 5 | ||||
-rw-r--r-- | cygwin/cygwin.c | 23 | ||||
-rw-r--r-- | lib/File/Spec/Cygwin.pm | 15 | ||||
-rw-r--r-- | t/lib/cygwin.t | 13 |
4 files changed, 41 insertions, 15 deletions
diff --git a/README.cygwin b/README.cygwin index 26ef2294cd..356266f122 100644 --- a/README.cygwin +++ b/README.cygwin @@ -514,14 +514,15 @@ the first is always "binmode" or "textmode". system|user,binmode|textmode,exec,cygexec,cygdrive,mixed, notexec,managed,nosuid,devfs,proc,noumount -If the argument is "/cygdrive", just the volume mount settings are returned. +If the argument is "/cygdrive", then just the volume mount settings, +and the cygdrive mount prefix are returned. User mounts override system mounts. $ perl -e 'print Cygwin::mount_flags "/usr/bin"' system,binmode,cygexec $ perl -e 'print Cygwin::mount_flags "/cygdrive"' - binmode,cygdrive + binmode,cygdrive,/cygdrive =item C<Cygwin::is_binmount> diff --git a/cygwin/cygwin.c b/cygwin/cygwin.c index 8a1ef03839..c3bec61698 100644 --- a/cygwin/cygwin.c +++ b/cygwin/cygwin.c @@ -292,28 +292,31 @@ XS(XS_Cygwin_mount_flags) char flags[260]; if (items != 1) - Perl_croak(aTHX_ "Usage: Cygwin::mount_flags(mnt_dir)"); + Perl_croak(aTHX_ "Usage: Cygwin::mount_flags(mnt_dir|'/cygwin')"); pathname = SvPV_nolen(ST(0)); - - /* TODO: check for cygdrive registry setting. use CW_GET_CYGDRIVE_INFO then + + /* TODO: Check for cygdrive registry setting, + * and then use CW_GET_CYGDRIVE_INFO */ if (!strcmp(pathname, "/cygdrive")) { char user[260]; char system[260]; char user_flags[260]; char system_flags[260]; + cygwin_internal (CW_GET_CYGDRIVE_INFO, user, system, user_flags, system_flags); - if (strlen(system) > 0) - strcpy (flags, system_flags); - if (strlen(user) > 0) - strcpy(flags, user_flags); - if (strlen(flags) > 0) - strcat(flags, ","); - strcat(flags, "cygdrive"); + + if (strlen(user) > 0) { + sprintf(flags, "%s,cygdrive,%s", user_flags, user); + } else { + sprintf(flags, "%s,cygdrive,%s", system_flags, system); + } + ST(0) = sv_2mortal(newSVpv(flags, 0)); XSRETURN(1); + } else { struct mntent *mnt; setmntent (0, 0); diff --git a/lib/File/Spec/Cygwin.pm b/lib/File/Spec/Cygwin.pm index 5d89fe5305..c5d8e9a781 100644 --- a/lib/File/Spec/Cygwin.pm +++ b/lib/File/Spec/Cygwin.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '1.1_02'; +$VERSION = '1.1_03'; @ISA = qw(File::Spec::Unix); @@ -112,7 +112,18 @@ sub case_tolerant () { if ($^O ne 'cygwin') { return 1; } - my $drive = shift || "/cygdrive/c"; + my $drive = shift; + if (! $drive) { + my @flags = split(/,/, Cygwin::mount_flags('/cygwin')); + my $prefix = pop(@flags); + if (! $prefix || $prefix eq 'cygdrive') { + $drive = '/cygdrive/c'; + } elsif ($prefix eq '/') { + $drive = '/c'; + } else { + $drive = "$prefix/c"; + } + } my $mntopts = Cygwin::mount_flags($drive); if ($mntopts and ($mntopts =~ /,managed/)) { return 0; diff --git a/t/lib/cygwin.t b/t/lib/cygwin.t index d92031db3e..096cb98dcf 100644 --- a/t/lib/cygwin.t +++ b/t/lib/cygwin.t @@ -9,7 +9,7 @@ BEGIN { } } -use Test::More tests => 14; +use Test::More tests => 16; is(Cygwin::winpid_to_pid(Cygwin::pid_to_winpid($$)), $$, "perl pid translates to itself"); @@ -51,6 +51,17 @@ my $rootmnt = Cygwin::mount_flags("/"); ok($binmode ? ($rootmnt =~ /,binmode/) : ($rootmnt =~ /,textmode/), "check / mount_flags"); is(Cygwin::mount_flags("/cygdrive") =~ /,cygdrive/, 1, "check cygdrive mount_flags"); +# Cygdrive mount prefix +my @flags = split(/,/, Cygwin::mount_flags('/cygdrive')); +my $prefix = pop(@flags); +ok($prefix, "cygdrive mount prefix = " . (($prefix) ? $prefix : '<none>')); +chomp(my $prefix2 = `df | grep -i '^c: ' | cut -d% -f2 | xargs`); +$prefix2 =~ s/\/c$//i; +if (! $prefix2) { + $prefix2 = '/'; +} +is($prefix, $prefix2, 'cygdrive mount prefix'); + my @mnttbl = Cygwin::mount_table(); ok(@mnttbl > 0, "non empty mount_table"); for $i (@mnttbl) { |