Perl function extraction


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Perl function extraction
# 1  
Old 12-03-2009
Java Perl function extraction

The log file reads as follows.

D function_add() ADD input data 1021214
0 VAR1 STR 10
0 VAR2 STR 20
0 VAR3 STR
1 SUM=VAR1+VAR2
D function_add() ADD output data 1021267
0 DISPLAY SUM

D function_sub() SUB input data 1021214
0 VAR1 STR 10
0 VAR2 STR 20
0 VAR3 STR
1 sub=VAR1-VAR2
D function_sub() SUB output data 1021267
0 DISPLAY sub

I want to get the output as follows in PERL script. i.e i want to get the lines inbetween "D function_add() ADD input data 1021214" and "D function_sub() SUB input data 1021214".
Kindly suggest ideas for me to write in PERL script

Sample OUTPUT
------------------------
OPCODE is ADD
Input function
0 VAR1 STR 10
0 VAR2 STR 20
0 VAR3 STR
1 SUM=VAR1+VAR2
Output function
0 DISPLAY SUM
-------------------------
-------------------------
OPCODE IS SUB
Input function
0 VAR1 STR 10
0 VAR2 STR 20
0 VAR3 STR
1 sub=VAR1-VAR2
output function
0 DISPLAY SUB
-------------------------
# 2  
Old 12-03-2009
Code:
open LOG, "a";

$print_ind = 0;

while ( <LOG> ){

  $print_ind = 0 if ( m/D function_sub\(\) SUB input data 1021214/ );

  print if $print_ind;

  $print_ind = 1 if ( m/D function_add\(\) ADD input data 1021214/ );
  
  }


Last edited by quirkasaurus; 12-03-2009 at 01:16 PM.. Reason: slight logic error.
# 3  
Old 12-04-2009
Code:
while(<DATA>){
	if(/.*?() (\S*)\s*input/){
		print "OPCODE is $1\n";
		print "Input function\n";
	}
	elsif(/output/){
		print "Output function\n";
	}
	else{
		print;
	}
}
__DATA__
D function_add() ADD input data 1021214
0 VAR1 STR 10
0 VAR2 STR 20
0 VAR3 STR
1 SUM=VAR1+VAR2
D function_add() ADD output data 1021267
0 DISPLAY SUM

D function_sub() SUB input data 1021214
0 VAR1 STR 10
0 VAR2 STR 20
0 VAR3 STR
1 sub=VAR1-VAR2
D function_sub() SUB output data 1021267
0 DISPLAY sub

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Converting shell to Perl I run into shell built in function trap and need alternative in Perl

I am working on converting shell to Perl script. In shell we have built in function trap Do you know alternative in Perl or actually we don't need it? Thanks for contribution (3 Replies)
Discussion started by: digioleg54
3 Replies

2. Shell Programming and Scripting

Perl-extraction using windows cmd

Hi, I need to extract Password expires from the output of windows command print `net user %USERNAME% /domain`; in perl. So i want to redirect the output of this win-cmd to a file and try extracting Password expires along with its value. i'm trying with this code but getting errors. #!usr/bin/perl... (1 Reply)
Discussion started by: sam_bd
1 Replies

3. Shell Programming and Scripting

perl function enquery

Dear all, I find a perl script that contains the following codes. Does anybody know the meaning of codes highlight. ..... @field = parse_csv($file); chomp(@field); ........ ........ sub parse_csv { my $text = shift; my @new = (); push( @new, $+ ) while $text =~ m{... (9 Replies)
Discussion started by: eldonlck
9 Replies

4. Shell Programming and Scripting

perl extraction of code between comments /* .. */

Hi, I am using the following code to retrieve the contents between C-style comments "/* .. */". perl -lne 'while(/(\/\*.*?\*\/)/g) {print "$1";}' This works fine when the commented section of code is present in a single line. But I also need to extract the data which is present inside... (3 Replies)
Discussion started by: royalibrahim
3 Replies

5. Shell Programming and Scripting

Data Extraction problem in perl

Hello, I want to extract the words from a file which starts with SRD-R or SRD-DR. I have written a script which is able to trace the word but it is printing the whole line. sub extract_SRD_tag{ my ($tag, $app, $path, @data, $word ); $path = shift; $app = shift; open (FILE, $path) or... (2 Replies)
Discussion started by: suvendu4urs
2 Replies

6. Shell Programming and Scripting

Data extraction in perl variable

HI, i have variable in perl like below $tmp="/home/sai/automation/work/TFP_GN.txt" it can conatain any path its filled from config file. now i want extarct the path upto this /home/sai/automation/work/ and put it in another variable say... (4 Replies)
Discussion started by: raghavendra.nsn
4 Replies

7. Shell Programming and Scripting

Function extraction in PERL

the log contains mathematical operation as follows fm_void_mathematics : PCM_OP_MATHS input function PIN_FLD_NUM1 INT 1 PIN_FLD_NUM2 INT 2 PIN_FLD_RESULTS int PIN_FLD_OUT INT * D Wed Sep 16 05:40:22 2009 solaris_testing fm_void_add : PIN_FLD_SUM int 3 D Wed Sep 16 05:40:22 2009... (1 Reply)
Discussion started by: vkca
1 Replies

8. Shell Programming and Scripting

String Extraction in Perl

I have a string stored in a variable. For instance, $str = " Opcode called is : CM_OP_xxx " where xxx changes dynamically and can be either LOGIN or SEARCH..... depends on runtime. For example : $str = " Opcode called is : CM_OP_SEARCH " $str = " Opcode called is : CM_OP_LOGIN " I... (3 Replies)
Discussion started by: vkca
3 Replies

9. Shell Programming and Scripting

metapattern extraction in PERL

Hi, I want to extract some part of a pattern that matches my requirement in a string with PERL. A case in point is a string like: $eqtst="abh nmae res = 10 s abh nmae req = 10 s"; from which I want the words preceding the "=" symbol. Previously I was assured that there would be only 2 such... (4 Replies)
Discussion started by: Abhishek Ghose
4 Replies

10. Shell Programming and Scripting

Optimize/speed-up perl extraction

Hi, Is there a way I can extract my data faster. You know my data is 1.2 GB text file with 8Million rows with 38 columns/fields. Imagine how huge this is. How I can optimized the data extraction using perl. That is why I'm creating a script to filter only those informations that I need. Is... (3 Replies)
Discussion started by: pinpe
3 Replies
Login or Register to Ask a Question