]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blobdiff - samples/tag.pl
This is 0.34
[perl/modules/Scope-Upper.git] / samples / tag.pl
index 0e2e63279d56f1250a68e7976d3cbfc8ef26d9da..0e39930d2f7c03eda3ba55ad5e4bbb1d47998039 100644 (file)
@@ -1,44 +1,65 @@
 #!perl
 
-package X;
-
 use strict;
 use warnings;
 
 use blib;
 
-use Scope::Upper qw/reap localize localize_elem localize_delete UP/;
+package Scope;
 
-sub desc { shift->{desc} }
+use Scope::Upper qw<reap localize localize_elem localize_delete :words>;
 
-sub set_tag {
- my ($desc) = @_;
+sub new {
+ my ($class, $name) = @_;
 
- # First localize $x so that it gets destroyed last
- localize '$x' => bless({ desc => $desc }, __PACKAGE__) => UP;
+ localize '$tag' => bless({ name => $name }, $class) => UP;
 
- reap sub {
-  my $pkg = caller;
-  my $x = do { no strict 'refs'; ${$pkg.'::x'} }; # Get the $x in the scope
-  print $x->desc . ": done\n";
- } => UP;
+ reap { print Scope->tag->name, ": end\n" } UP;
+}
+
+# Get the tag stored in the caller namespace
+sub tag {
+ my $l   = 0;
+ my $pkg = __PACKAGE__;
+ $pkg    = caller $l++ while $pkg eq __PACKAGE__;
 
+ no strict 'refs';
+ ${$pkg . '::tag'};
+}
+
+sub name { shift->{name} }
+
+# Locally capture warnings and reprint them with the name prefixed
+sub catch {
  localize_elem '%SIG', '__WARN__' => sub {
-  my $pkg = caller;
-  my $x = do { no strict 'refs'; ${$pkg.'::x'} }; # Get the $x in the scope
-  CORE::warn($x->desc . ': ' . join('', @_));
+  print Scope->tag->name, ': ', @_;
  } => UP;
-
- localize_delete '@ARGV', $#ARGV => UP; # delete last @ARGV element
 }
 
-package main;
+# Locally clear @INC
+sub private {
+ for (reverse 0 .. $#INC) {
+  # First UP is the for loop, second is the sub boundary
+  localize_delete '@INC', $_ => UP UP;
+ }
+}
 
-use strict;
-use warnings;
+package UserLand;
 
 {
- X::set_tag('pie');
- # $x is now a X object, and @ARGV has one element less
- warn 'what'; # warns "pie: what at ..."
-} # "pie: done" is printed
+ Scope->new("top");      # initializes $UserLand::tag
+
+ {
+  Scope->catch;
+  my $one = 1 + undef;   # prints "top: Use of uninitialized value..."
+
+  {
+   Scope->private;
+   eval { delete $INC{"Cwd.pm"}; require Cwd }; # blib loads Cwd
+   print $@;             # prints "Can't locate Cwd.pm in @INC (@INC contains:) at..."
+  }
+
+  require Cwd;           # loads Cwd.pm
+ }
+
+}                        # prints "top: done"