Sponsored Content
Top Forums Shell Programming and Scripting Methods For Debugging Perl Problems Post 302542424 by Vi-Curious on Wednesday 27th of July 2011 02:16:32 PM
Old 07-27-2011
Methods For Debugging Perl Problems

Note: Not a programmer by profession but occasionally have to program.

I am looking for general methods and freely/readily available tools employed to debug problems during development of perl scripts. Anything that has really helped you out with problems you just couldn't find.

A couple of problems I'm seeing:
- apparent corruption of $_[0], $_[1], etc
- regexp failures that should be matching

I have a lot of subroutines that I unit tested and found all to be working as expected. When I put everything together into a single script, I noticed unexpected results.

For the $_[0] case, I put in debug statements to see how the subroutine was executing and noticed that the value was correct on entry into the routine but then, when processing, it seemed as if it had been truncated (based on how the routine behaved). After I couldn't really figure out what was happening to it, I copied the parameters to temporary variables on entry to the subroutine and then used those variables throughout. And that solved that problem. But again, if I isolate the subroutine it works fine without the temporary variables.

I have a long list of regexps I'm searching for and I know that the expressions, themselves are good. Everyone of them was tested to verify that it was matching what it was supposed to match. But with everything together, the regexps are failing. And I'm talking even simple regexps... like just matching an 11-digit number. More complicated ones are matching and then, on the same line, simple ones are failing to match. During my testing, I tested with multiple expressions on the same line and there was no problem so I don't think it has anything to do with how many
are on the line. But I don't know. I can't understand why the expressions are failing to match. Would it have anything to do with pos? One thing I did change (some time) before I ever noticed any problem was that, once I found a match, I perform a global substitution. I don't think that should be the source of this problem (but I will take out the global substitution in just a minute, just to see) as I am not doing global matches to try to identify the expressions and each attempt at a match uses a new block.

Any debugging suggestions would be greatly appreciated.


------------------------------------------------------------

Edited to add:

I removed the global substitutions and it made no difference in the regexp matching. Some lines aren't even matching any of the regexps that are there so the global substitution never would have even come into play in those cases.

Another thing I just tried... inside my loop where I read the data file, I manually set the line variable to one of the lines in the file (thus ignoring the actual read-in lines) and the matches that are failing when the data is read from the file match this way. The fact that I can take the same file data and do a manual assignment and it will succeed, but it fails when actually reading the file, makes no sense because I just copied/pasted the data so I'm fairly sure there's nothing wrong with the data file.


----------------------------------------------

Edited to add:

It just keeps getting better. Now I deleted the direct assignment and tried the file again. No joy. But then I put the direct assignment back into the loop and it no longer matches there either. Guess it's time to pull it all apart once again and have another go at it.

Last edited by Vi-Curious; 07-27-2011 at 05:20 PM.. Reason: Follow-up re: direct assignment of line data
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problems with perl

hi i'm writing multiclient perl server cross plataform it will redirect one connection to any computer inside mine lan so when someone connect on this server it create a socket and connect to the computer create two threads and read the data incoming from the client and send to another... (0 Replies)
Discussion started by: sendai
0 Replies

2. Shell Programming and Scripting

problems with double quotes in PERL

I have a cgi script I run through apache2 and I need to have a line that contains double quotes within double quotes. Here's what I need PERL to pass to rrdtool: HRULE:30#BBBB00:"30.0 constant":dashesIt's a little more complicated since I also have variables in the statement which requires... (13 Replies)
Discussion started by: audiophile
13 Replies

3. Shell Programming and Scripting

Perl - Problems with Signal Handler

I have a problem with signal handlers not working. I have a long 1000 line code and somehow this code for signal handling is not working: $SIG{INT} = \&interrupt; sub interrupt { print STDERR "Caught a control c!\n"; exit; # or just about anything else you'd want to do } Any... (2 Replies)
Discussion started by: som.nitk
2 Replies

4. UNIX for Dummies Questions & Answers

Problems with Alt Gr in Perl scripts

Hey I am new to programming in general but am trying to work in Perl. The thing is that almost every time I write a script (I use nedit) I get problems with Alt Gr. E.g. In stead of } I get <gs> or in stead of \ nothing happens. Sometimes it's really bad and when I want a new line then... (1 Reply)
Discussion started by: Banni
1 Replies

5. Shell Programming and Scripting

Methods to SSH (Perl)...

Can anyone break down the different methods of using SSH in perl? I'm currently using Net::SSH::Expect, which allows me to login to a machine and execute multiple commands without having to ssh again. This feature of holding the session works well for me, but it's slow. If I set timeouts to 4... (3 Replies)
Discussion started by: mrwatkin
3 Replies

6. Shell Programming and Scripting

Turning on Debugging for a perl script

for security reasons I can not post any part of the script in question in this thread. i hope im not breaking any rules by not doing so. but i have a perl script that i've been asked to turn on debugging on. i didn't write this perl script and i have very very little knowledge of perl. so i... (3 Replies)
Discussion started by: SkySmart
3 Replies

7. Shell Programming and Scripting

Perl Methods Calling

Hello I am on my way to improve my wonderful Perl skills, I got an issue which I want to share with you all. I have a Perl module which looks like package Cocoa; require Exporter; @ISA = qw(Exporter); my $a=''; my $b=''; my $c=''; sub new { my $this = shift; # Create... (8 Replies)
Discussion started by: adisky123
8 Replies

8. Red Hat

Perl problems in RHEL 5.X

Hi, We have RHEL 5.X OS installed here, where we need few Perl modules installed. I have local copy of Perl modules in .tar.gz format. The problem is that we don't have Internet available here and it is really pain to install all the modules manually on all the servers one by one. So can I... (1 Reply)
Discussion started by: nixhead
1 Replies

9. Shell Programming and Scripting

Debugging mysterious perl script problem

the attached perl script is a deamon that, once kicked off from the command line, it runs in the background and waits for the master server to tell it what plugins to run. the script works well. but the problem is, whenever i start it, after about a few seconds of starting it, i start getting... (4 Replies)
Discussion started by: SkySmart
4 Replies
grep(1) 						      General Commands Manual							   grep(1)

Name
       grep, egrep, fgrep - search file for regular expression

Syntax
       grep [option...] expression [file...]

       egrep [option...] [expression] [file...]

       fgrep [option...] [strings] [file]

Description
       Commands  of  the family search the input files (standard input default) for lines matching a pattern.  Normally, each line found is copied
       to the standard output.

       The command patterns are limited regular expressions in the style of which uses a compact nondeterministic algorithm.  The command patterns
       are  full  regular  expressions.  The command uses a fast deterministic algorithm that sometimes needs exponential space.  The command pat-
       terns are fixed strings.  The command is fast and compact.

       In all cases the file name is shown if there is more than one input file.  Take care when using the characters $ * [ ^ | ( ) and   in  the
       expression because they are also meaningful to the Shell.  It is safest to enclose the entire expression argument in single quotes ' '.

       The command searches for lines that contain one of the (new line-separated) strings.

       The command accepts extended regular expressions.  In the following description `character' excludes new line:

	      A  followed by a single character other than new line matches that character.

	      The character ^ matches the beginning of a line.

	      The character $ matches the end of a line.

	      A .  (dot) matches any character.

	      A single character not otherwise endowed with special meaning matches that character.

	      A  string  enclosed in brackets [] matches any single character from the string.	Ranges of ASCII character codes may be abbreviated
	      as in `a-z0-9'.  A ] may occur only as the first character of the string.  A literal - must be placed where it can't be mistaken	as
	      a range indicator.

	      A  regular  expression  followed	by  an	* (asterisk) matches a sequence of 0 or more matches of the regular expression.  A regular
	      expression followed by a + (plus) matches a sequence of 1 or more matches of the regular expression.  A regular expression  followed
	      by a ? (question mark) matches a sequence of 0 or 1 matches of the regular expression.

	      Two regular expressions concatenated match a match of the first followed by a match of the second.

	      Two regular expressions separated by | or new line match either a match for the first or a match for the second.

	      A regular expression enclosed in parentheses matches a match for the regular expression.

       The  order  of  precedence  of  operators at the same parenthesis level is the following:  [], then *+?, then concatenation, then | and new
       line.

Options
       -b	   Precedes each output line with its block number.  This is sometimes useful in locating disk block numbers by context.

       -c	   Produces count of matching lines only.

       -e expression
		   Uses next argument as expression that begins with a minus (-).

       -f file	   Takes regular expression (egrep) or string list (fgrep) from file.

       -i	   Considers upper and lowercase letter identical in making comparisons and only).

       -l	   Lists files with matching lines only once, separated by a new line.

       -n	   Precedes each matching line with its line number.

       -s	   Silent mode and nothing is printed (except error messages).	This is useful for checking the error status (see DIAGNOSTICS).

       -v	   Displays all lines that do not match specified expression.

       -w	   Searches for an expression as for a word (as if surrounded by `<' and `>').  For further information, see only.

       -x	   Prints exact lines matched in their entirety only).

Restrictions
       Lines are limited to 256 characters; longer lines are truncated.

Diagnostics
       Exit status is 0 if any matches are found, 1 if none, 2 for syntax errors or inaccessible files.

See Also
       ex(1), sed(1), sh(1)

																	   grep(1)
All times are GMT -4. The time now is 02:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy