2

一位同事要求我提出一个正则表达式(POSIX 语法),用于printf(...);在 c 代码文件中查找对不在#ifdef...#endif范围内的调用。

但是,鉴于我只是在 Uni 学习正则表达式,我对此并不完全有信心。

场景看起来像这样:

possibly some code
printf(some_parameters);  // This should match
possibly more code

#ifdef DEBUG
possibly some code
printf(some_parameters);  // This shouldn't match
possibly more code
#endif

possibly some code
printf(some_parameters);  // This should also match
possibly more code

请注意,c 文件可能根本不包含#ifdef/#endif 语句,在这种情况下,所有调用都printf();应该匹配。

到目前为止,我尝试过的是:

(?<!(#ifdef [A-Å0-9]+)).*printf\(.*\);.*(?!(#endif))

...以及玩弄 .* 的位置(甚至包含/排除)

任何帮助或提示表示赞赏。

4

2 回答 2

1

正则表达式不是解决这个问题的好方法。它们不能很好地处理多行搜索,并且它们可以表达的模式受到限制,例如,不可能用正则表达式指定任意嵌套。

解决此问题的正确方法是使用旨在处理 C 代码中的条件编译指令的工具。这将是编译器的 C 预处理器,或专用工具,例如unifdef

$ unifdef -UDEBUG file.c | grep printf
printf(some_parameters);  // This should match
printf(some_parameters);  // This should also match

从手册:

UNIFDEF(1)                BSD General Commands Manual               UNIFDEF(1)

NAME
     unifdef, unifdefall — remove preprocessor conditionals from code

SYNOPSIS
     unifdef [-ceklst] [-Ipath -Dsym[=val] -Usym -iDsym[=val] -iUsym] ... [file]
     unifdefall [-Ipath] ... file

DESCRIPTION
     The unifdef utility selectively processes conditional cpp(1) directives.
     It removes from a file both the directives and any additional text that
     they specify should be removed, while otherwise leaving the file alone.

     The unifdef utility acts on #if, #ifdef, #ifndef, #elif, #else, and #endif
     lines, and it understands only the commonly-used subset of the expression
     syntax for #if and #elif lines.  It handles integer values of symbols
     defined on the command line, the defined() operator applied to symbols
     defined or undefined on the command line, the operators !, <, >, <=, >=,
     ==, !=, &&, ||, and parenthesized expressions.  Anything that it does not
     understand is passed through unharmed.  It only processes #ifdef and
     #ifndef directives if the symbol is specified on the command line, other‐
     wise they are also passed through unchanged.  By default, it ignores #if
     and #elif lines with constant expressions, or they may be processed by
     specifying the -k flag on the command line.
于 2012-09-27T09:09:20.930 回答
0

不需要正则表达式。

cpp -D<your #define options here> | grep printf
于 2012-09-27T09:06:41.487 回答