Borrar filtros
Borrar filtros

Get the line number of the last warning found ?

13 visualizaciones (últimos 30 días)
alice
alice el 19 de Jul. de 2017
Editada: alice el 19 de Jul. de 2017
Is it possible to get the line number of the last warning found in order to store it and use it afterwards?
As long as the backtrace option is on for warnings, this line is displayed (among the complete stack trace) in the command window and I would like to retrieve it.
I have not found how to do it in the documentation (it looks like it is possible for errors though, but I can't turn my warnings into errors).

Respuesta aceptada

Jan
Jan el 19 de Jul. de 2017
You could shadow the buil-in warning function and grab the stacktrace manually
msgBack = lastwarn;
warnBack = warning;
traceBack = warning('query', 'backtrace');
warning('on', 'backtrace');
warning('on');
BackTrace = evalc('warning(''Error appeared in:'')');
BackTrace(strfind(BackTrace, char(8))) = [];
BackTrace(strfind(BackTrace, '{')) = [];
BackTrace(strfind(BackTrace, '}')) = [];
if strncmpi(BackTrace, 'warning: ', 9) % Remove initial 'Warning: '
BackTrace(1:9) = [];
end
BackTrace = strsplit(BackTrace, '\n');
BackTrace(strncmp(BackTrace, '> ', 2)) = []; % 1st line: '> SuError...'
if length(BackTrace) == 1
BackTrace{2} = ' Command line';
end
% Restore original state of WARNING:
if ~isempty(traceBack)
warning(traceBack);
end
warning(warnBack);
lastwarn(msgBack);
Now you have to replace all calls of builtin('warning') by builtin('warning') and care for the outputs.
But this is such ugly and it would be horrible, if a programming error conceals important warnings. Therefore I would never use this for serious code. (I use this code snippet to get a stack-trace in a user-defined Error class only.)
Think about using another method than the stacktrace to track the warning. What about parsing the output to the command window? See FEX: CmdWinTool for a method to get the text from it.
  1 comentario
alice
alice el 19 de Jul. de 2017
Editada: alice el 19 de Jul. de 2017
Thank you very much !
I will try the command window approach, but it is also interesting to see how to access the stacktrace, I didn't know how it works. Just a typo, line 8 should be:
BackTrace = evalc('warning(msgBack)');

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Downloads en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by