Error trapping with Dyalog APL: Difference between revisions

Jump to navigation Jump to search
m
Text replacement - "</source>" to "</syntaxhighlight>"
m (Text replacement - "</source>" to "</syntaxhighlight>")
Line 27: Line 27:
⎕FX 'r←WeakInterrupt' 'r←1002'
⎕FX 'r←WeakInterrupt' 'r←1002'
⎕FX 'r←StrongInterrupt' 'r←1003'
⎕FX 'r←StrongInterrupt' 'r←1003'
</source>
</syntaxhighlight>


In a large system you want those to be constants, so a user cannot change them. That's why they are niladic functions.
In a large system you want those to be constants, so a user cannot change them. That's why they are niladic functions.
Line 35: Line 35:
<source lang=apl>
<source lang=apl>
#.Events.RestartAppl←501
#.Events.RestartAppl←501
</source>
</syntaxhighlight>


According to the help file, users should use the range from 500 to 999 to define their own events.
According to the help file, users should use the range from 500 to 999 to define their own events.


== Setting <source lang=apl inline>⎕TRAP</source> ==
== Setting <source lang=apl inline>⎕TRAP</syntaxhighlight> ==


<source lang=apl inline>⎕TRAP</source> allows us to implement a general mechanism on a global level. For discussion purposes let's assume the following:
<source lang=apl inline>⎕TRAP</syntaxhighlight> allows us to implement a general mechanism on a global level. For discussion purposes let's assume the following:
# <source lang=apl inline>⎕LX</source> is set to run function <source lang=apl inline>Run</source>
# <source lang=apl inline>⎕LX</syntaxhighlight> is set to run function <source lang=apl inline>Run</syntaxhighlight>
# This function calls 3 sub-functions: <source lang=apl inline>Initial</source>, <source lang=apl inline>Work</source> and <source lang=apl inline>Shutdown</source>
# This function calls 3 sub-functions: <source lang=apl inline>Initial</syntaxhighlight>, <source lang=apl inline>Work</syntaxhighlight> and <source lang=apl inline>Shutdown</syntaxhighlight>
# <source lang=apl inline>Initial</source> initializes the application: it opens files, interprets an INI file, takes the Windows registry into account, builds the GUI and so forth.
# <source lang=apl inline>Initial</syntaxhighlight> initializes the application: it opens files, interprets an INI file, takes the Windows registry into account, builds the GUI and so forth.
# <source lang=apl inline>Work</source> simply runs <source lang=apl inline>⎕DQ</source>
# <source lang=apl inline>Work</syntaxhighlight> simply runs <source lang=apl inline>⎕DQ</syntaxhighlight>
# <source lang=apl inline>Shutdown</source> cleans up: it closes files, says good-by.
# <source lang=apl inline>Shutdown</syntaxhighlight> cleans up: it closes files, says good-by.


=== Solving the stop vector problem ===
=== Solving the stop vector problem ===
Line 53: Line 53:
<source lang=apl>
<source lang=apl>
⎕TRAP←⊂(#.Events.StopVector 'E' '→⎕LC')
⎕TRAP←⊂(#.Events.StopVector 'E' '→⎕LC')
</source>
</syntaxhighlight>
<source lang=apl inline>#.Events.StopVector</source> returns 1001 which is the event number a stop vector is associated with. As soon as APL stops on a stop vector <source lang=apl inline>⎕EN</source> is set to 1001. This event can be caught with <source lang=apl inline>⎕TRAP</source>, so we can tell APL to execute (<source lang=apl inline>'E'</source>) the expression given as third argument. In this case it tells APL to simply ignore stop vectors by resuming execution.
<source lang=apl inline>#.Events.StopVector</syntaxhighlight> returns 1001 which is the event number a stop vector is associated with. As soon as APL stops on a stop vector <source lang=apl inline>⎕EN</syntaxhighlight> is set to 1001. This event can be caught with <source lang=apl inline>⎕TRAP</syntaxhighlight>, so we can tell APL to execute (<source lang=apl inline>'E'</syntaxhighlight>) the expression given as third argument. In this case it tells APL to simply ignore stop vectors by resuming execution.


=== Preventing users from interrupting an application ===
=== Preventing users from interrupting an application ===
Line 64: Line 64:
events←#.Events.WeakInterrupt #.Events.StrongInterrupt
events←#.Events.WeakInterrupt #.Events.StrongInterrupt
⎕TRAP,←⊂(events 'E' '→⎕LC')
⎕TRAP,←⊂(events 'E' '→⎕LC')
</source>
</syntaxhighlight>


=== Restarting the application ===
=== Restarting the application ===


For reasons explained in a minute we now have to define the “Restart the application” procedure. For this, for the first time we do not use the <source lang=apl inline>'E'</source> statement but the <source lang=apl inline>'C'</source> statement. The ''C'' is short for ''Cut back''. This instructs APL to cut the status indicator back to the level where <source lang=apl inline>⎕TRAP</source> '''is localized''' – that is not  necessarily where it was set – and execute the expression in the 3rd argument there. However, if <source lang=apl inline>⎕TRAP</source> is not localized at all, i.e. it is in the workspace, the status indicator is cut back completely and the expression is executed in the workspace.
For reasons explained in a minute we now have to define the “Restart the application” procedure. For this, for the first time we do not use the <source lang=apl inline>'E'</syntaxhighlight> statement but the <source lang=apl inline>'C'</syntaxhighlight> statement. The ''C'' is short for ''Cut back''. This instructs APL to cut the status indicator back to the level where <source lang=apl inline>⎕TRAP</syntaxhighlight> '''is localized''' – that is not  necessarily where it was set – and execute the expression in the 3rd argument there. However, if <source lang=apl inline>⎕TRAP</syntaxhighlight> is not localized at all, i.e. it is in the workspace, the status indicator is cut back completely and the expression is executed in the workspace.
<source lang=apl>
<source lang=apl>
⎕TRAP,←⊂(#.Events.RestartAppl 'C' '→∆Restart')
⎕TRAP,←⊂(#.Events.RestartAppl 'C' '→∆Restart')
</source>
</syntaxhighlight>
To make this work the function in which <source lang=apl inline>⎕TRAP</source> is localized must have a label <source lang=apl inline>∆Restart</source> or a function that returns a valid line number to branch to of course.
To make this work the function in which <source lang=apl inline>⎕TRAP</syntaxhighlight> is localized must have a label <source lang=apl inline>∆Restart</syntaxhighlight> or a function that returns a valid line number to branch to of course.


=== Catching Errors ===
=== Catching Errors ===
Line 79: Line 79:
<source lang=apl>
<source lang=apl>
⎕TRAP,←⊂((0 1000) 'E' '#.HandleError' )
⎕TRAP,←⊂((0 1000) 'E' '#.HandleError' )
</source>
</syntaxhighlight>
The 0 stands for all the events from 1 to 999 while the 1000 stands for all events larger than 1000.
The 0 stands for all the events from 1 to 999 while the 1000 stands for all events larger than 1000.


<source lang=apl inline>⎕TRAP</source> may contain more than one error catching group. Since the contents of <source lang=apl inline>⎕TRAP</source> is scanned from left to right, a statement will ONLY be executed for an event not processed earlier. That is the reason why we must define the restart event first.
<source lang=apl inline>⎕TRAP</syntaxhighlight> may contain more than one error catching group. Since the contents of <source lang=apl inline>⎕TRAP</syntaxhighlight> is scanned from left to right, a statement will ONLY be executed for an event not processed earlier. That is the reason why we must define the restart event first.


For example, in the following statement:
For example, in the following statement:
<source lang=apl>
<source lang=apl>
⎕TRAP←(333 'E' 'expA') (0 'E' 'expB')
⎕TRAP←(333 'E' 'expA') (0 'E' 'expB')
</source>
</syntaxhighlight>
event 333 will be caught by the 1st group and NOT by the 2nd even though 0 stands for “events from 1 to 999”. Only the expression <source lang=apl inline>expA</source> will be executed.
event 333 will be caught by the 1st group and NOT by the 2nd even though 0 stands for “events from 1 to 999”. Only the expression <source lang=apl inline>expA</syntaxhighlight> will be executed.


== The <source lang=apl inline>#.HandleError</source> function ==
== The <source lang=apl inline>#.HandleError</syntaxhighlight> function ==


The <source lang=apl inline>#.HandleError</source> function should do at least the following:
The <source lang=apl inline>#.HandleError</syntaxhighlight> function should do at least the following:


* Perhaps neutralize <source lang=apl inline>⎕LX</source>
* Perhaps neutralize <source lang=apl inline>⎕LX</syntaxhighlight>
* Save the <source lang=apl inline>⎕DM</source> and <source lang=apl inline>⎕EN</source> settings
* Save the <source lang=apl inline>⎕DM</syntaxhighlight> and <source lang=apl inline>⎕EN</syntaxhighlight> settings
* Save the snapshot
* Save the snapshot
* Maybe create an HTML page with general information about the error
* Maybe create an HTML page with general information about the error
Line 110: Line 110:
Keep in mind that you want to have an easy opportunity to test the system with error trapping. So you may need another parameter that tells the system that error trapping has to be used. Last but not least, there should be an easy opportunity to let the application crash on purpose. I prefer to have a “developers menu”, which is displayed only to developers. Among other useful commands it offers a “Let's crash” option.
Keep in mind that you want to have an easy opportunity to test the system with error trapping. So you may need another parameter that tells the system that error trapping has to be used. Last but not least, there should be an easy opportunity to let the application crash on purpose. I prefer to have a “developers menu”, which is displayed only to developers. Among other useful commands it offers a “Let's crash” option.


=== Control Structure <source lang=apl inline>:Trap</source> ===
=== Control Structure <source lang=apl inline>:Trap</syntaxhighlight> ===


If you use <source lang=apl inline>:Trap</source>, keep in mind that <source lang=apl inline>⎕TRAP</source> and <source lang=apl inline>:Trap</source> are both taken into account. That means that in case of
If you use <source lang=apl inline>:Trap</syntaxhighlight>, keep in mind that <source lang=apl inline>⎕TRAP</syntaxhighlight> and <source lang=apl inline>:Trap</syntaxhighlight> are both taken into account. That means that in case of
<source lang=apl>
<source lang=apl>
:Trap 0
:Trap 0
Line 119: Line 119:
.
.
:EndTrap
:EndTrap
</source>
</syntaxhighlight>


the error caused by the <source lang=apl inline>-'a'</source> statement is caught by the <source lang=apl inline>:Else</source>, while the <source lang=apl inline>.</source> is caught by the <source lang=apl inline>⎕TRAP</source> setting.
the error caused by the <source lang=apl inline>-'a'</syntaxhighlight> statement is caught by the <source lang=apl inline>:Else</syntaxhighlight>, while the <source lang=apl inline>.</syntaxhighlight> is caught by the <source lang=apl inline>⎕TRAP</syntaxhighlight> setting.


When using <source lang=apl inline>:Trap</source> try to be as specific as possible. For example, this code is faulty:
When using <source lang=apl inline>:Trap</syntaxhighlight> try to be as specific as possible. For example, this code is faulty:
<source lang=apl>
<source lang=apl>
:Trap 0
:Trap 0
Line 130: Line 130:
filename ⎕FCREATE 0
filename ⎕FCREATE 0
:EndTrap
:EndTrap
</source>
</syntaxhighlight>
because it tries to create a file not only if this file does not already exist but also if the current user lacks the right to tie it, for example because somebody else has already tied it exclusively. Therefore, it is a better to be specific:
because it tries to create a file not only if this file does not already exist but also if the current user lacks the right to tie it, for example because somebody else has already tied it exclusively. Therefore, it is a better to be specific:
<source lang=apl>
<source lang=apl>
Line 138: Line 138:
filename ⎕FCREATE 0
filename ⎕FCREATE 0
:EndTrap
:EndTrap
</source>
</syntaxhighlight>
The best idea, however, is to use <source lang=apl inline>⎕NEXISTS</source> to check the file for already being created. In general it is a good idea to use error trapping only for extraordinary problems.
The best idea, however, is to use <source lang=apl inline>⎕NEXISTS</syntaxhighlight> to check the file for already being created. In general it is a good idea to use error trapping only for extraordinary problems.


=== The <source lang=apl inline>⎕SIGNAL</source> system function ===
=== The <source lang=apl inline>⎕SIGNAL</syntaxhighlight> system function ===


Note that an event which is <source lang=apl inline>⎕SIGNAL</source>led can be intercepted with <source lang=apl inline>⎕TRAP</source> but not <source lang=apl inline>:Trap</source>
Note that an event which is <source lang=apl inline>⎕SIGNAL</syntaxhighlight>led can be intercepted with <source lang=apl inline>⎕TRAP</syntaxhighlight> but not <source lang=apl inline>:Trap</syntaxhighlight>
If you execute this function:
If you execute this function:
<source lang=apl>
<source lang=apl>
Line 154: Line 154:
  :EndTrap
  :EndTrap
</source>
</syntaxhighlight>
you get this:
you get this:
<source lang=apl>
<source lang=apl>
caught by ⎕TRAP
caught by ⎕TRAP
</source>
</syntaxhighlight>


=== Ensure future trouble ===
=== Ensure future trouble ===
Line 167: Line 167:
DoSomethingHere
DoSomethingHere
:EndTrap
:EndTrap
</source>
</syntaxhighlight>
This technique is called “silent trapping”. If something is going wrong, do not take care and do not tell anybody about it!
This technique is called “silent trapping”. If something is going wrong, do not take care and do not tell anybody about it!


Line 180: Line 180:
TakeCare
TakeCare
EndTrap
EndTrap
</source>
</syntaxhighlight>
If the flag is true, error trapping is active, if not, the <source lang=apl inline>DoSomeThing</source> statement will fail if an error occurs. This makes is much easier to debug an application.
If the flag is true, error trapping is active, if not, the <source lang=apl inline>DoSomeThing</syntaxhighlight> statement will fail if an error occurs. This makes is much easier to debug an application.


You might need a more sophisticated mechanism for this, because under some circumstances you want to switch off most but not all error trapping statements. For example, if you use a logging mechanism which is logging every user action for analyzing purposes, the code doing this may cause an interrupt itself, for example because the disk is full which holds the logging files. In such a case it might be inappropriate that the logging code breaks the application. Therefore, you might control this code with <source lang=apl inline>:Trap</source>-statements.
You might need a more sophisticated mechanism for this, because under some circumstances you want to switch off most but not all error trapping statements. For example, if you use a logging mechanism which is logging every user action for analyzing purposes, the code doing this may cause an interrupt itself, for example because the disk is full which holds the logging files. In such a case it might be inappropriate that the logging code breaks the application. Therefore, you might control this code with <source lang=apl inline>:Trap</syntaxhighlight>-statements.


In such a case it might be a good idea to control the behavior of the application on different levels for code which is really essential in terms of business logic, for example, and for code which is not essential.
In such a case it might be a good idea to control the behavior of the application on different levels for code which is really essential in terms of business logic, for example, and for code which is not essential.
Line 766: Line 766:


:EndNamespace
:EndNamespace
</source>
</syntaxhighlight>
}}
}}
== See also ==
== See also ==

Navigation menu