Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: regex 2 find C function dependencies

by perlmonkey (Hermit)
on Sep 20, 2003 at 06:16 UTC ( [id://292815]=note: print w/replies, xml ) Need Help??


in reply to regex 2 find C function dependencies

I just went through a similar exercise myself. I did not find C::Scan to be useful, and Parse::RecDescent can do it, but probably too much work for your needs.

You really want to use Regexp::Common here.

Something like this should get you started:
use Regexp::Common; my $func_rx = qr{ ([a-zA-Z]\w*) # match function name \s* # optional space ($RE{balanced}{-parens='()'}) # match parameter list }sx; while( $code =~ /$func_rx/g ) { print "func = $1\n"; print "param list = $2\n"; }

This will match things like if( !foo ) though, so you will probably have to explicitly skip built-in keywords like that.

Note that this is certainly not a complete solution for you, but just to point out Regexp::Common is a handy tool that should help.

Also you probably want to strip out all the comments first, so they dont throw off your matching regex. But this can also be done with Regexp::Common:
$code =~ s/$RE{comment}{'C++'}//g;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (2)
As of 2024-04-20 03:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found