in reply to Re^2: open undef
in thread open undef

When a Perl operator returns only true or false, it returns one of two statically-allocated scalars called &PL_sv_yes and &PL_sv_no. It's more efficient to return these than to allocate a new scalar every time.

There's a third statically-allocated scalar: &PL_sv_undef. It's used by Perl when it needs to return undef.

$ perl -MDevel::Peek -e'Dump(undef)' SV = NULL(0x0) at 0x2186148 REFCNT = 2147483639 FLAGS = (READONLY,PROTECT)

This scalar is undefined because it has no OK flags. But notice the artificially high REFCNT that prevents it from being deallocated. This tells us that Perl returned &PL_sv_undef. I shall call this "the undef", in contrast to other undefined scalars which I'll call "an undef".

An array element that has never been allocated (e.g. because nothing was ever assigned to it, or because delete was used on it) returns the undef.

$ perl -MDevel::Peek -e'Dump($a[0])' SV = NULL(0x0) at 0x1116148 REFCNT = 2147483639 FLAGS = (READONLY,PROTECT)

Otherwise, the array element itself is returned, which might be an undef.

$ perl -MDevel::Peek -e'$a[0]=undef; Dump($a[0])' SV = NULL(0x0) at 0xc93f90 REFCNT = 1 FLAGS = ()

The feature is meant to be triggered when you literally use undef in the code. But what it actually does is check for the undef.

use feature qw( say ); my @a; { say open(my $fh, '<', $a[0]) ? 1 : 0; } # 1 $a[1] = undef; { say open(my $fh, '<', $a[0]) ? 1 : 0; } # 1 $a[0] = undef; { say open(my $fh, '<', $a[0]) ? 1 : 0; } # 0 delete($a[0]); { say open(my $fh, '<', $a[0]) ? 1 : 0; } # 1

As you've discovered, this is an imperfect proxy.

Replies are listed 'Best First'.
Re^4: open undef
by morgon (Priest) on Aug 02, 2018 at 20:18 UTC
    I am not really sure if I understand what you are trying to say (but it is very interesting) - so thanks for that.

    For me I am trying to figure out why perl handles the cases differently.

    My position is that what happens in the first case is the proper thing to do.

    You want to open a file for reading and you supply undef as a file-name: Error. That's how I think it should be.

    And I still cannot quite see why the cases supplied should be different.

    And there is this:

    perl -MDevel::Peek -e'Dump($ARGV[0])' SV = NULL(0x0) at 0x55a8c4978560 REFCNT = 2147483639 FLAGS = (READONLY,PROTECT) perl -MDevel::Peek -e'Dump(undef)' SV = NULL(0x0) at 0x55923aa70560 REFCNT = 2147483639 FLAGS = (READONLY,PROTECT)
    Both have the same high refcount, but the addresses seem to differ - why is that?

    Is this a can of worms that one should not open?

      My position is that what happens in the first case is the proper thing to do.

      The first and third case are behaving correctly. The middle one should behave like the first, but open can't tell the difference between an unallocated array element and undef (since they both return the undef).

      the addresses seem to differ - why is that?

      I believe memory addresses are varied between program runs to minimize the damage from certain types of attacks. If you did both Dump in the same run, they would have the same address.

      $ perl -MDevel::Peek -e'Dump($ARGV[0]); Dump(undef);' SV = NULL(0x0) at 0xf78148 REFCNT = 2147483639 FLAGS = (READONLY,PROTECT) SV = NULL(0x0) at 0xf78148 REFCNT = 2147483639 FLAGS = (READONLY,PROTECT) $ perl -MDevel::Peek -e'Dump($ARGV[0]); Dump(undef);' SV = NULL(0x0) at 0xbe6148 REFCNT = 2147483639 FLAGS = (READONLY,PROTECT) SV = NULL(0x0) at 0xbe6148 REFCNT = 2147483639 FLAGS = (READONLY,PROTECT)
        Ah ok, that makes sense.

        As for the behaviour in the middle case I must say that I consider that to be bug. Your explanation makes sense, but it is a bug nevertheless - would you agree?

        ForgotPasswordAgain quoted the applicable documentation. Based on this quote, I would expect all three cases to create the temporary file. I agree that only the third case should. The quoted specification should be changed to reflect this.
        Bill