in reply to Re: How to get die() to stop printing a line number?
in thread How to get die() to stop printing a line number?

That's very foriegn to me. Say for instance I have a large program that has multiple files to open and I mistype a filename, either when I declare in some variable somewhere or even if I just used it in the open call itself. So now if I don't have a line number and the filename it spit back out was useless I have to go through the entire program to find where I made such a mistake. Even if its a variable that was declared elsewhere, the line number at least gives me a place to start. I may have forgotten the variable name I used, etc.

For me an even more common use would be if a SQL query failed. Its extremely easy to have a syntax error in query, and it won't get caught until runtime. Sure I could print out the whole query and look for it, but a line number seems so much easier: fire up 'vim' <line-number> shift-G and there's the error.

Lobster Aliens Are attacking the world!
  • Comment on Re: Re: How to get die() to stop printing a line number?

Replies are listed 'Best First'.
Re: How to get die() to stop printing a line number?
by Abigail-II (Bishop) on Jul 02, 2003 at 14:29 UTC
    Well, assuming you print the name of the file that failed to open in the error message, a simple grep on the file name would find its declaration immediately - which got to be faster than first going to the line number, and then grepping for the variable name. (vi +/filename/ program.pl)

    Depending on your preference, you might be right about the SQL query (I usually write modules with just a handful of related queries in the same file, which would then be relatively small, so there's hardly any searching needed). But I was arguing against the sentiment one should always have to have the line number in a die message. The fact that there are cases where you might want to have the line numbers doesn't dispute that.

    Abigail

      Well I think we can both agree that it comes down to a matter of personal preference. I didn't mean to imply with my original post that there would never be a reason to not show a line number, rather the original poster seemed to want to just exit his program with no output, which is what exit is for, where as die indicates some kind of error occured.

      Update: Why on earth was this modded down? Its not a flame and I don't believe that it is wrong either.

      Lobster Aliens Are attacking the world!
        Actually, a die() is quite different from an exit(), even you don't generate output with die(). If you want something equivalent, you'd need to do:
        exit $! ? $! : ($? >> 8) ? ($? >> 8) : 255;

        and pray $SIG{__DIE__} wasn't set, and that the code was not inside eval {}.

        Abigail