GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Long::Jump(3) User Contributed Perl Documentation Long::Jump(3)

Long::Jump - Mechanism for returning to a specific point from a deeply nested stack.

This module essentially provides a multi-level return. You can mark a spot with "setjump()" and then unwind the stack back to that point from any nested stack frame by name using "longjump()". You can also provide a list of return values.

This is not quite a match for C's long jump, but it is "close enough". It is safer than C's jump in that it only lets you escape frames by going up the stack, you cannot jump in other ways.

    use Long::Jump qw/setjump longjump/;

    my $out = setjump foo => sub {
        bar();
        ...; # Will never get here
    };
    is($out, [qw/x y z/], "Got results of the long jump");

    $out = setjump foo => sub {
        print "Not calling longjump";
    };
    is($out, undef, "longjump was not called so we got an undef response");

    sub bar {
        baz();
        return 'bar'; # Will never get here
    }

    sub baz {
        bat();
        return 'baz'; # Will never get here
    }

    sub bat {
        my @out = qw/x y z/;
        longjump foo => @out;

        return 'bat'; # Will never get here
    }

$out = setjump($NAME, sub { ... })
$out = setjump $NAME, sub { ... }
$out = setjump($NAME => sub { ... })
$out = setjump $NAME => sub { ... }
Set a named point to which you will return when calling "longjump()". $out will be "undef" if "longjump()" was not called. $out will be an arrayref if "longjump()" was called. The $out arrayref will be empty, but present if "longjump()" is called without any return values.

The return value will always be false if "longjump" was not called, and will always be true if it was called.

You cannot nest multiple jump points with the same name, but you can nest multiple jump points if they have unqiue names. "longjump()" will always jump to the correct name.

longjump($NAME)
longjump $NAME
longjump($NAME, @RETURN_LIST)
longjump($NAME => @RETURN_LIST)
longjump $NAME => @RETURN_LIST
Jump to the named point, optionally with values to return. This will throw exceptions if you use an invalid $NAME, which includes the case of calling it without a set jump point.

The source code repository for Long-Jump can be found at https://github.com/exodist/Long-Jump/.

Chad Granum <exodist@cpan.org>

Chad Granum <exodist@cpan.org>

Copyright 2018 Chad Granum <exodist7@gmail.com>.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://dev.perl.org/licenses/

2019-09-29 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.