Hi colleagues!
Yet another time I figured that there is no super-simple way to display error from %Status variable, but I need it relatively often in a terminal.
Yes, I know about $$$ Macro, but they are not superhelpful in a terminal.
My usual behavior is to try to remember by heart or copy from somewhere the formula:
USER>w $System.Status.DisplayError(st)
So introduced the alias:
:alias err d $System.Status.DisplayError($1) ;
so, if you get something like:
USER>set st=##class(bla.bla).methodbla()
you can get the error as:
USER>:err st
d $System.Status.DisplayError(st) ;
ERROR #879: Target role NewRole does not exist.
Hope you like it!
Great... thanks @Evgeny Shvarov, I didn't know about the aliases
Great you find it helpful!
Awesome, It's pretty useful. However, If alias is retains like :history -Display command history its' really helpful and no need to define the shortcuts again.
You could also use the language extension feature: https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls.... The advantage is that everyone using the instance can use it. Someone sent this to me a very long time ago as an example:
Thanks for sharing, @Edward Clark !
I wrote my own class that does some fun, magical stuff. Here's the class:
/// This class can be used to make a status code do some basic handling on its own when it becomes an error status. /// For example:<br /><br /> /// set status = ##class(DH.WatchedStatus).New("RW")<br /> /// set status.sc = (some method that returns a status here)<br /><br /> /// If the method returns an error status, it will immediately be written, and the status will change back to $$$OK.<br /> /// Note that if ..sc is not set back to an $$$OK status, either automatically or manually, error handling will not trigger again on the next error. Class DH.WatchedStatus Extends %RegisteredObject { /// This is the status code to be watched. Property sc As %Status [ InitialExpression = 1, SqlComputeCode = {set {*} = ##class(DH.WatchedStatus).Reset({sc},{resetSelf})}, SqlComputed, SqlComputeOnChange = isErr ]; /// Used to track if the status code is an error. This is necessary for some shenanigans with SQLComputeCode between this flag and the status code. Property isErr As %Boolean [ InitialExpression = 0, SqlComputeCode = {set {*} = ##class(DH.WatchedStatus).ErrCheck({sc},{writeSelf},{logSelf},{throwSelf})}, SqlComputed, SqlComputeOnChange = sc ]; /// If true, this will will throw ..sc as soon as it becomes an error. Property throwSelf As %Boolean [ InitialExpression = 0 ]; /// If true, this will log ..sc as an Exception as soon as it becomes an error. Property logSelf As %Boolean [ InitialExpression = 0 ]; /// If true, this will write the error text of ..sc as soon as it becomes an error. Property writeSelf As %Boolean [ InitialExpression = 0 ]; /// If true, after other error handling, ..sc will be reset to $$$OK. /// Note that if this is false, you will need to reset the status yourself for the automatic handling to trigger again. Property resetSelf As %Boolean [ InitialExpression = 0 ]; /// Handles status according to flags set, then sets isErr. ClassMethod ErrCheck(sc, writeSelf, logSelf, throwSelf) As %Boolean [ Internal ] { if $$$ISERR(sc){ if writeSelf{ write $SYSTEM.Status.GetErrorText(sc) } if logSelf = 1{ do ##class(%Exception.StatusException).CreateFromStatus(sc).Log() } if throwSelf = 1{ $$$ThrowStatus(sc) } quit 1 } else{ quit 0 } } /// If resetSelf is true, resets the status code after error handling occurs. ClassMethod Reset(sc, resetSelf) As %Status [ Internal ] { return:resetSelf $$$OK return sc } /// flags is a string which determines status behavior when an error occurs /// T = throw the status /// L = log the status as an exception /// W = write the status error text /// R = reset status after error handling; if set, isErr goes back to 0 and sc goes back to 1 ClassMethod New(flags As %String) As DH.WatchedStatus { set status = ##class(DH.WatchedStatus).%New() set flags = $ZCVT(flags,"U") set:(flags [ "T") status.throwSelf = 1 set:(flags [ "L") status.logSelf = 1 set:(flags [ "W") status.writeSelf = 1 set:(flags [ "R") status.resetSelf = 1 return status } }
Here's how I can use it:
Having done that, since I used the write and reset flags in the constructor, it will write out the error text and then reset the status object back to $$$OK. I can use this to save myself from constantly having to check whether the status is an error and log or throw it in other code outside the terminal too. It essentially watches itself.
Update: this is now available on IPM.
Very cool, @David Hockenbroch! Do you want to pack it into an IPM module and share with the community?
I will gladly if I can figure out how to do that. Documentation I'm finding for IPM is all referring to ZPM and from 2019 or so.
@Evgeny Shvarov, I think I have submitted it to Open Exchange correctly. This is my first time using IPM, GitHub AND Open Exchange, so bear with me if I messed any of it up!
Well done, @David Hockenbroch !
Installed perfectly!
Not sure about functionality though. I was wondering of a class that gives me an error, and remember another ipm module - objectcript-errors.
Installed:
it can generate errors in simple objectscript calls, e.g. null division etc:
So this is what I did:
if I do w status.sc:
If I do everything right?
Ok, I upgraded errors, so they verbose on demand. now:
So, every time I need to printout an error I do:
and it prints out an error if it is an error. and if not it is silent?
I like it!
Yes, that's how it works.
If you don't want it to reset the sc, then you can leave out the R flag when you call the New() method. Just be aware that the error handling only triggers when sc goes from OK to an error, so it won't trigger again unless you manually set sc back to $$$OK.
Ah, now I understand the flag's meaning! cool!
It's useful in terminal, and in my opinion, it lets me write neater code too. I don't have to include lines like
if $$$ISERR(sc) { $$$ThrowStatus(sc) }
every time.
Ah, it is more readable indeed!
There is another popular one which I sometimes hate to use:
$$$ThrowOnError(something())