Filter löschen
Filter löschen

Get the line number of the last warning found ?

13 Ansichten (letzte 30 Tage)
alice
alice am 19 Jul. 2017
Bearbeitet: alice am 19 Jul. 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).

Akzeptierte Antwort

Jan
Jan am 19 Jul. 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 Kommentar
alice
alice am 19 Jul. 2017
Bearbeitet: alice am 19 Jul. 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)');

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Downloads finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by