Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: RE: Number of times I've used goto in Perl

by Anonymous Monk
on Nov 17, 2000 at 20:20 UTC ( [id://42214]=note: print w/replies, xml ) Need Help??


in reply to RE: Number of times I've used goto in Perl
in thread Number of times I've used goto in Perl

Bless me father for I am about to sin.... I may have found a use for the goto but I thought I'd would consult with the elders prior to taking the plunge! I have one large perl script that drives a large data loading process every night. The script has a "main" subroutine that has roughly 30-40 steps - here's a snippet:

sub main

{ ##>> 01001000:set output

&set_output;

##>> 03001000:database up

&database_up;

##>> 04001000:prior status

&prior_status;

##>> 06001000:delete log records

&delete_log_records; .........

the "&" labels in "main" naturally call subroutines down in the body of the script. If our load process fails I want a way to "goto" the failure point in the script and continue processing by passing in a parameter that represents the step from which I'd like to continue. I can't think of another way of doing this with out rewriting the whole blessed script.

Help O great ones!!

Grasshopper

  • Comment on Re: RE: Number of times I've used goto in Perl

Replies are listed 'Best First'.
Re (tilly) 3: Number of times I've used goto in Perl
by tilly (Archbishop) on Nov 17, 2000 at 21:43 UTC
    Why not in main wrap blocks of calls in eval blocks and die when you hit errors?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://42214]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-04-16 05:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found