我正在使用API,我发现自己写了很多错误处理代码:
if (errorCode = functionName(params)) printError(errorCode,"functionName",__LINE__,__FILE__);
printError的主体可能如下所示:
fprintf(stderr,"Error in function %s on line %d of file %s",functionName,lineNumber,fileNumber);
但是,每次都要硬编码功能名称是一件很痛苦的事情.有没有办法得到导致错误的函数的名称,即在运行时或通过宏调用的最后一个函数?当然,我无法以任何方式修改API函数.有办法可以获得current function以及calling function,但是这两个功能都不在外面.
解决方法
你可以有这个
#define SAFE_CALL(func) \ do {\ if (errorCode = (func)) \ printError(errorCode,#func,__FILE__);\ } while(0) SAFE_CALL(functionName(params));