vote up 2 vote down star

Hi,

I'm working on a small academic research about extremely long and complicated functions in the Linux kernel. I'm trying to figure out if there is a good reason to write 600 or 800 lines-long functions.

For that purpose, I would like to find a tool that can extract a function from a .c file, so I can run some automated tests on the function.

For example, If I have the function cifs_parse_mount_options() within the file connect.c, I'm seeking a solution that would roughly work like:

extract /fs/cifs/connect.c cifs_parse_mount_options

and return the 523 lines of code(!) of the function, from the opening braces to the closing braces.

Of course, any way of manipulating existing software packages like gcc to do that, would be most helpful too.

Thanks,

Udi

EDIT : The answers to Regex to pull out C function prototype declarations? convinced me that matching function declaration by regex is far from trivial.

flag

1 Answer

vote up 2 vote down check

Why don't you write a small PERL/PHP/Python script or even a small C++,Java or C# program that does that?

I don't know of any already-made tools to do that but writing the code to parse out the text file and extract a function body from a C++ code file should not take more than 20 lines of code.. The only difficult part will be locating the beginning of the function and that should be a relatively simple task using RegEx. After that, all you need is to iterate through the rest of the file keeping track of opening and closing curly braces and when you reach the function body closing brace you're done.

link|flag
That was my first idea, but comments make things a little more complicated. However, If I am to write such a script. I guess I'll publish it - it might be useful to others. – Adam Matan Jul 17 at 15:50
I agree.. you probably need to take comments into consideration just in case they might contain non-matching curly braces inside. Still, it shouldn't be too difficult to code! – Miky D Jul 17 at 15:57
I have to strip them out, get the location of the end of the function, and then extract the code with the comments. Another issue is the function signature on top - it can be more than one line long. As I mentioned before, it's not a big deal - but I'd rather focus on my research and use a ready-made tool. If that won't be possible, I'll Python the problem! – Adam Matan Jul 17 at 15:58
Seriously, writing this script should take less than an hour. You have probably already wasted more time looking for a tool to do it than doing it yourself. – muusbolla Jul 17 at 17:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.