1Debugging tools and hints {#occt__debug}
2=========================
3
4@tableofcontents
5
6@section occt_debug_intro Introduction
7
8This manual describes facilities included in OCCT to support debugging, and provides some hints for more efficient debug.
9
10@section occt_debug_macro Compiler macro to enable extended debug messages
11
12Many OCCT algorithms can produce extended debug messages, usually printed to cout.
13These include messages on internal errors and special cases encountered, timing etc.
14In OCCT versions prior to 6.8.0 most of these messages were activated by compiler macro *DEB*, enabled by default in debug builds.
15Since version 6.8.0 this is disabled by default but can be enabled by defining compiler macro *OCCT_DEBUG*.
16
17To enable this macro on Windows when building with Visual Studio projects, edit file custom.bat and add the line:
18
19    set CSF_DEFINES=OCCT_DEBUG
20
21Some algorithms use specific macros for yet more verbose messages, usually started with OCCT_DEBUG_.
22These messages can be enabled in the same way, by defining corresponding macro.
23
24Note that some header files are modified when *OCCT_DEBUG* is enabled, hence binaries built with it enabled are not compatible with client code built without this option; this is not intended for production use.
25
26@section occt_debug_exceptions Calling JIT debugger on exception
27
28On Windows platform when using Visual Studio compiler there is a possibility to start the debugger automatically if an exception is caught in a program running OCCT. For this, set environment variable *CSF_DEBUG* to any value. Note that this feature works only if you enable OCCT exception handler in your application by calling *OSD::SetSignal()*.
29
30@section occt_debug_bop Self-diagnostics in Boolean operations algorithm
31
32In real-world applications modeling operations are often performed in a long sequence, while the user sees only the final result of the whole sequence. If the final result is wrong, the first debug step is to identify the offending operation to be debugged further. Boolean operation algorithm in OCCT provides a self-diagnostic feature which can help to do that step.
33
34This feature can be activated by defining environment variable *CSF_DEBUG_BOP*, which should specify an existing writeable directory.
35
36The diagnostic code checks validity of the input arguments and the result of each Boolean operation. When an invalid situation is detected, the report consisting of argument shapes and a DRAW script to reproduce the problematic operation is saved to the directory pointed by *CSF_DEBUG_BOP*.
37
38Note that this feature does not applicable for UWP build.
39
40@section occt_debug_call Functions for calling from debugger
41
42Modern interactive debuggers provide the possibility to execute application code at a program break point. This feature can be used to analyse the temporary objects available only in the context of the debugged code. OCCT provides several global functions that can be used in this way.
43
44Note that all these functions accept pointer to variable as <i>void*</i> to allow calling the function even when debugger does not recognize type equivalence or can not perform necessary type cast automatically. It is responsibility of the developer to provide the correct pointer. In general these functions are not guaranteed to work, thus use them with caution and at your own risk.
45
46@subsection occt_debug_call_draw Interacting with DRAW
47
48Open CASCADE Test Harness or @ref occt_user_guides__test_harness "DRAW" provides an extensive set of tools for inspection and analysis of OCCT shapes and geometric objects and is mostly used as environment for prototyping and debugging OCCT-based algorithms.
49
50In some cases the objects to be inspected are available in DRAW as results of DRAW commands. In other cases, however, it is necessary to inspect intermediate objects created by the debugged algorithm. To support this, DRAW provides a set of commands allowing the developer to store intermediate objects directly from the debugger stopped at some point during the program execution (usually at a breakpoint).
51
52~~~~{.php}
53const char* Draw_Eval (const char *theCommandStr)
54~~~~
55
56Evaluates a DRAW command or script.
57A command is passed as a string parameter.
58
59~~~~{.php}
60const char* DBRep_Set (const char* theNameStr, void* theShapePtr)
61~~~~
62
63Sets the specified shape as a value of DRAW interpreter variable with the given name.
64- *theNameStr* -- the DRAW interpreter variable name to set.
65- *theShapePtr* -- a pointer to *TopoDS_Shape* variable.
66
67~~~~{.php}
68const char* DBRep_SetComp (const char* theNameStr, void* theListPtr)
69~~~~
70
71Makes a compound from the specified list of shapes and sets it as a value of DRAW interpreter variable with the given name.
72- *theNameStr* -- the DRAW interpreter variable name to set.
73- *theListPtr* -- a pointer to *TopTools_ListOfShape* variable.
74
75~~~~{.php}
76const char* DrawTrSurf_Set (const char* theNameStr, void* theHandlePtr)
77const char* DrawTrSurf_SetPnt (const char* theNameStr, void* thePntPtr)
78const char* DrawTrSurf_SetPnt2d (const char* theNameStr, void* thePnt2dPtr)
79~~~~
80
81Sets the specified geometric object as a value of DRAW interpreter variable with the given name.
82- *theNameStr* -- the DRAW interpreter variable name to set.
83- *theHandlePtr* -- a pointer to the geometric variable (Handle to *Geom_Geometry* or *Geom2d_Curve* or descendant) to be set.
84- *thePntPtr* -- a pointer to the variable of type *gp_Pnt* to be set.
85- *thePnt2dPtr* -- a pointer to the variable of type *gp_Pnt2d* to be set.
86
87All these functions are defined in *TKDraw* toolkit and return a string indicating the result of execution.
88
89@subsection occt_debug_call_brep Saving and dumping shapes and geometric objects
90
91The following functions are provided by *TKBRep* toolkit and can be used from debugger prompt:
92
93~~~~{.php}
94const char* BRepTools_Write (const char* theFileNameStr, void* theShapePtr)
95~~~~
96
97Saves the specified shape to a file with the given name.
98- *theFileNameStr* -- the name of the file where the shape is saved.
99- *theShapePtr* -- a pointer to *TopoDS_Shape* variable.
100
101~~~~{.php}
102const char* BRepTools_Dump (void* theShapePtr)
103const char* BRepTools_DumpLoc (void* theShapePtr)
104~~~~
105
106Dumps shape or its location to cout.
107- *theShapePtr* -- a pointer to *TopoDS_Shape* variable.
108
109The following function is provided by *TKMesh* toolkit:
110
111~~~~{.php}
112const char* BRepMesh_Dump (void* theMeshHandlePtr, const char* theFileNameStr)
113~~~~
114
115Stores mesh produced in parametric space to BREP file.
116- *theMeshHandlePtr* -- a pointer to *Handle(BRepMesh_DataStructureOfDelaun)* variable.
117- *theFileNameStr* -- the name of the file where the mesh is stored.
118
119The following functions are provided by *TKTopTest* toolkit:
120
121~~~~{.php}
122const char* MeshTest_DrawLinks(const char* theNameStr, void* theFaceAttr)
123const char* MeshTest_DrawTriangles(const char* theNameStr, void* theFaceAttr)
124~~~~
125
126Sets the edges or triangles from mesh data structure of type *Handle(BRepMesh_FaceAttribute)* as DRAW interpreter variables, assigning a unique name in the form "<theNameStr>_<index>" to each object.
127- *theNameStr* -- the prefix to use in names of objects.
128- *theFaceAttr* -- a pointer to *Handle(BRepMesh_FaceAttribute)* variable.
129
130The following additional function is provided by *TKGeomBase* toolkit:
131
132~~~~{.php}
133const char* GeomTools_Dump (void* theHandlePtr)
134~~~~
135
136Dump geometric object to cout.
137- *theHandlePtr* -- a pointer to the geometric variable (<i>Handle</i> to *Geom_Geometry* or *Geom2d_Curve* or descendant) to be set.
138
139
140@section occt_debug_dump_json Dump OCCT objects into Json
141
142Many OCCT classes may dump the current state into the stream. This stream contains the information about the class field into the field value/s.
143It is possible to prepare recursive dump using corresponded macro for class fields. The depth of this recursion is defined by parameter of the dump.
144The object defines What parameters should be presented in the Dump. The usual way is to dump all object fields.
145
146@subsection occt_debug_dump_json_object Implementation in object
147
148Steps to prepare dump of the object into json:
149
1501. Create method <b>DumpJson</b>. The method should accept the output stream and the depth for the fields dump.
151Depth, equal to zero means that only fields of this class should be dumped. Default value -1 means that whole tree of dump will be built recursively calling dump of all fields.
152
1532. Put into the first row of the method <b>OCCT_DUMP_CLASS_BEGIN</b> or <b>OCCT_DUMP_TRANSIENT_CLASS_BEGIN</b> (for Standard_Transient objects).
154This macro appends class name into output stream.
155
1563. Add several macro to store field values.
157
158The following macro are defined to cover the object parameters into json format:
159
160| Name                        | Result in json |
161| :-------------------------- | :--------|
162| OCCT_DUMP_FIELD_VALUE_NUMERICAL  | "field": value |
163| OCCT_DUMP_FIELD_VALUE_STRING     | "field": "value" |
164| OCCT_DUMP_FIELD_VALUE_POINTER    | "field": "pointer address" |
165| OCCT_DUMP_FIELD_VALUES_DUMPED    | "field": { result of field->DumpJson(...) } |
166| OCCT_DUMP_FIELD_VALUES_NUMERICAL | "field": [value_1, ..., value_n]
167| OCCT_DUMP_FIELD_VALUES_STRING    | "field": ["value_1", ..., "value_n"]
168| OCCT_DUMP_BASE_CLASS   | "kind": { result of kind::DumpJson(...) } |
169
170@subsection occt_debug_dump_json_draw Using in DRAW
171
172In DRAW, key '-dumpJson' is used to dump an object.
173It is implemented in 'vaspect' and 'boundingbox' commands.
174
175Json output for Bnd_OBB (using command 'bounding v -obb -dumpJson'):
176
177~~~~{.java}
178"Bnd_OBB": {
179   "Center": {
180      "gp_XYZ": [1, 2, 3]
181   },
182   "Axes[0]": {
183       "gp_XYZ:" [1, 0, 0]
184   },
185   "Axes[1]": {
186       "gp_XYZ:" [0, 1, 0]
187   },
188   "Axes[2]": {
189       "gp_XYZ:" [0, 0, 1]
190   },
191   "HDims[0]": 0,
192   "HDims[1]": 0,
193   "HDims[2]": 0,
194   "IsAABox": 1,
195}
196~~~~
197
198@section occt_debug_vstudio Using Visual Studio debugger
199
200@subsection occt_debug_vstudio_command Command window
201
202Visual Studio debugger provides the Command Window (can be activated from menu <b>View / Other Windows / Command Window</b>), which can be used to evaluate variables and expressions interactively in a debug session (see https://msdn.microsoft.com/en-us/library/c785s0kz.aspx). Note that the Immediate Window can also be used but it has some limitations, e.g. does not support aliases.
203
204When the execution is interrupted by a breakpoint, you can use this window to call the above described functions in context of the currently debugged function. Note that in most cases you will need to specify explicitly context of the function by indicating the name of the DLL where it is defined.
205
206For example, assume that you are debugging a function, where local variable *TopoDS_Edge* *anEdge1* is of interest.
207The following set of commands in the Command window will save this edge to file *edge1.brep*, then put it to DRAW variable *e1* and show it maximized in the axonometric DRAW view:
208
209~~~~{.php}
210>? ({,,TKBRep.dll}BRepTools_Write)("d:/edge1.brep",(void*)&anEdge1)
2110x04a2f234 "d:/edge1.brep"
212>? ({,,TKDraw.dll}DBRep_Set)("e1",(void*)&anEdge1)
2130x0369eba8 "e1"
214>? ({,,TKDraw.dll}Draw_Eval)("donly e1; axo; fit")
2150x029a48f0 ""
216~~~~
217
218For convenience it is possible to define aliases to commands in this window, for instance (here ">" is prompt provided by the command window; in the Immediate window this symbol should be entered manually):
219
220~~~~{.php}
221>alias deval      ? ({,,TKDraw}Draw_Eval)
222>alias dsetshape  ? ({,,TKDraw}DBRep_Set)
223>alias dsetcomp   ? ({,,TKDraw}DBRep_SetComp)
224>alias dsetgeom   ? ({,,TKDraw}DrawTrSurf_Set)
225>alias dsetpnt    ? ({,,TKDraw}DrawTrSurf_SetPnt)
226>alias dsetpnt2d  ? ({,,TKDraw}DrawTrSurf_SetPnt2d)
227>alias saveshape  ? ({,,TKBRep}BRepTools_Write)
228>alias dumpshape  ? ({,,TKBRep}BRepTools_Dump)
229>alias dumploc    ? ({,,TKBRep}BRepTools_DumpLoc)
230>alias dumpmesh   ? ({,,TKMesh}BRepMesh_Dump)
231>alias dumpgeom   ? ({,,TKGeomBase}GeomTools_Dump)
232~~~~
233
234Note that aliases are stored in the Visual Studio user's preferences and it is sufficient to define them once on a workstation. With these aliases, the above example can be reproduced easier (note the space symbol after alias name!):
235
236~~~~{.php}
237>saveshape ("d:/edge1.brep",(void*)&anEdge1)
2380x04a2f234 "d:/edge1.brep"
239>dsetshape ("e1",(void*)&anEdge1)
2400x0369eba8 "e1"
241>deval ("donly e1; axo; fit")
2420x029a48f0 ""
243~~~~
244
245Note that there is no guarantee that the call will succeed and will not affect the program execution, thus use this feature at your own risk. In particular, the commands interacting with window system (such as *axo*, *vinit*, etc.) are known to cause application crash when the program is built in 64-bit mode. To avoid this, it is recommended to prepare all necessary view windows in advance, and arrange these windows to avoid overlapping with the Visual Studio window, to ensure that they are visible during debug.
246
247@subsection occt_debug_vstudio_watch Customized display of variables content
248
249Visual Studio provides a way to customize display of variables of different types in debugger windows (Watch, Autos, Locals, etc.).
250
251In Visual Studio 2005-2010 the rules for this display are defined in file *autoexp.dat* located in  subfolder *Common7\\Packages\\Debugger* of the Visual Studio installation folder (hint: the path to that folder is given in the corresponding environment variable, e.g. *VS100COMNTOOLS* for vc10). This file contains two sections: *AutoExpand* and *Visualizer*. The following rules can be added to these sections to provide more convenient display of some OCCT data types.
252
253### \[AutoExpand\] section
254
255~~~~{.cpp}
256; Open CASCADE classes
257Standard_Transient=<,t> count=<count,d>
258Handle_Standard_Transient=<entity,x> count=<entity->count,d> <,t>
259TCollection_AsciiString=<mylength,d> <mystring,s>
260TCollection_HAsciiString=<myString.mylength,d> <myString.mystring,s>
261TCollection_ExtendedString=<mylength,d> <mystring,su>
262TCollection_HExtendedString=<myString.mylength,d> <myString.mystring,su>
263TDF_Label=<myLabelNode,x> tag=<myLabelNode->myTag>
264TDF_LabelNode=tag=<myTag,d>
265TDocStd_Document=format=<myStorageFormat.mystring,su> count=<count,d> <,t>
266TopoDS_Shape=<myTShape.entity,x> <myOrient>
267gp_XYZ=<x,g>, <y,g>, <z,g>
268gp_Pnt=<coord.x,g>, <coord.y,g>, <coord.z,g>
269gp_Vec=<coord.x,g>, <coord.y,g>, <coord.z,g>
270gp_Dir=<coord.x,g>, <coord.y,g>, <coord.z,g>
271gp_XY=<x,g>, <y,g>
272gp_Pnt2d=<coord.x,g>, <coord.y,g>
273gp_Dir2d=<coord.x,g>, <coord.y,g>
274gp_Vec2d=<coord.x,g>, <coord.y,g>
275gp_Mat2d={<matrix[0][0],g>,<matrix[0][1],g>}, {<matrix[1][0],g>,<matrix[1][1],g>}
276gp_Ax1=loc={<loc.coord.x,g>, <loc.coord.y,g>, <loc.coord.z,g>} vdir={<vdir.coord.x,g>, <vdir.coord.y,g>, <vdir.coord.z,g>}
277~~~~
278
279### \[Visualizer\] section
280
281~~~~{.cpp}
282; Open CASCADE classes
283
284NCollection_Handle<*> {
285  preview ( *((($T0::Ptr*)$e.entity)->myPtr) )
286  children ( (($T0::Ptr*)$e.entity)->myPtr )
287}
288
289NCollection_List<*> {
290  preview ( #( "NCollection_List [", $e.myLength, "]" )	)
291  children ( #list( head: $c.myFirst, next: myNext ) : #(*($T1*)(&$e+1)) )
292}
293
294NCollection_Array1<*> {
295  preview ( #( "NCollection_Array1 [", $e.myLowerBound, "..", $e.myUpperBound, "]" ) )
296  children ( #array( expr: $c.myData[$i], size: 1+$c.myUpperBound ) )
297}
298
299math_Vector {
300  preview ( #( "math_Vector [", $e.LowerIndex, "..", $e.UpperIndex, "]" ) )
301  children ( #array ( expr: ((double*)($c.Array.Addr))[$i], size: 1+$c.UpperIndex ) )
302}
303
304TColStd_Array1OfReal {
305  preview ( #( "Array1OfReal [", $e.myLowerBound, "..", $e.myUpperBound, "]" ) )
306  children ( #array ( expr: ((double*)($c.myStart))[$i], size: 1+$c.myUpperBound ) )
307}
308
309Handle_TColStd_HArray1OfReal {
310  preview ( #( "HArray1OfReal [",
311               ((TColStd_HArray1OfReal*)$e.entity)->myArray.myLowerBound, "..",
312               ((TColStd_HArray1OfReal*)$e.entity)->myArray.myUpperBound, "] ",
313               [$e.entity,x], " count=", $e.entity->count ) )
314  children ( #array ( expr: ((double*)(((TColStd_HArray1OfReal*)$e.entity)->myArray.myStart))[$i],
315                      size: 1+((TColStd_HArray1OfReal*)$e.entity)->myArray.myUpperBound ) )
316}
317
318TColStd_Array1OfInteger {
319  preview ( #( "Array1OfInteger [", $e.myLowerBound, "..", $e.myUpperBound, "]" ) )
320  children ( #array ( expr: ((int*)($c.myStart))[$i], size: 1+$c.myUpperBound ) )
321}
322
323Handle_TColStd_HArray1OfInteger {
324  preview ( #( "HArray1OfInteger [",
325               ((TColStd_HArray1OfInteger*)$e.entity)->myArray.myLowerBound, "..",
326               ((TColStd_HArray1OfInteger*)$e.entity)->myArray.myUpperBound, "] ",
327               [$e.entity,x], " count=", $e.entity->count ) )
328  children ( #array ( expr: ((int*)(((TColStd_HArray1OfInteger*)$e.entity)->myArray.myStart))[$i],
329                      size: 1+((TColStd_HArray1OfInteger*)$e.entity)->myArray.myUpperBound ) )
330}
331
332Handle_TCollection_HExtendedString {
333  preview ( #( "HExtendedString ", [$e.entity,x], " count=", $e.entity->count,
334               " ", ((TCollection_HExtendedString*)$e.entity)->myString ) )
335  children ( #([actual members]: [$e,!] ) )
336}
337
338Handle_TCollection_HAsciiString {
339  preview ( #( "HAsciiString ", [$e.entity,x], " count=", $e.entity->count,
340               " ", ((TCollection_HAsciiString*)$e.entity)->myString ) )
341  children ( #([actual members]: [$e,!],
342             #array( expr: ((TCollection_HAsciiString*)$e.entity)->myString.mystring[$i],
343                     size: ((TCollection_HAsciiString*)$e.entity)->myString.mylength) ) )
344}
345~~~~
346
347In Visual Studio 2012 and later, visualizers can be put in a separate file in subdirectory *Visualizers*. See file *occt.natvis* for example.
348
349@section occt_debug_perf Performance measurement tools
350
351It is recommended to use specialized performance analysis tools to profile OCCT and application code.
352However, when such tools are not available or cannot be used for some reason, tools provided by OSD package can be used: low-level C functions and macros defined in *OSD_PerfMeter.h* and *OSD_PerfMeter* class.
353
354This tool maintains an array of 100 global performance counters that can be started and stopped independently. Adding a performance counter to a function of interest allows to get statistics on the number of calls and the total execution time of the function.
355* In C++ code, this can be achieved by creating local variable *OSD_PerfMeter* in each block of code to be measured.
356* In C or Fortran code, use functions *perf_start_meter* and *perf_stop_meter* to start and stop the counter.
357
358Note that this instrumentation is intended to be removed when the profiling is completed.
359
360Macros provided in *OSD_PerfMeter.h* can be used to keep instrumentation code permanently but enable it only when macro *PERF_ENABLE_METERS* is defined.
361Each counter has its name shown when the collected statistics are printed.
362
363In DRAW, use command *dperf* to print all performance statistics.
364
365Note that performance counters are not thread-safe.
366
367@section occt_debug_sanitizers Use of compiler sanitizers
368
369GCC and Clang compilers provide options for instrumenting the code with the tools intended for detection of run-time errors, called sanitizers.
370This section provides some hints for using sanitizers for detecting possible errors in OCCT code.
371
372@subsection occt_debug_sanitizers_linux Linux
373
374Example of configuration steps for Ubuntu:
375
3761. In CMake configuration:
377
378  - Use up-to-date version of the GCC or CLang compiler; make sure that if CMAKE_CXX_COMPILER is set to C++ compiler (e.g. "clang++-6.0") and CMAKE_C_COMPILER is set to C compiler (e.g. "clang-6.0")
379  - Ensure that CMAKE_LINKER is set to the C++ linker bundled with compiler (e.g. clang++-6.0); this is important to avoid linking problems
380  - For building with Address sanitizer, set CMAKE_CXX_FLAGS and CMAKE_C_FLAGS to "-fsanitize=address -fno-omit-frame-pointer -fno-optimize-sibling-calls"
381  - For building with Undefined Behavior sanitizer, set CMAKE_CXX_FLAGS and CMAKE_C_FLAGS to "-fsanitize=undefined -fno-omit-frame-pointer -fno-optimize-sibling-calls"
382  - Set CMAKE_BUILD_TYPE to RelWithDebInfo to get more informative stack traces on errors
383
3842. Build as usual (make)
385
386  Be prepared that it works much slower than normal build and consumes more disk space.
387
3883. Before running executable, make sure that "llvm-symbolizer" is in PATH; this is necessary to get human-readable stack traces. The tool must have exactly that name.
389
390  If it is installed in common folder (/usr/bin or similar) with different name, one option is to create a symlink, for instance:
391> sudo ln -s /usr/bin/llvm-symbolizer-6.0 /usr/bin/llvm-symbolizer
392
393  Alternatively, add directory where actual llvm-symbolizer is located (such as /usr/lib/llvm-6.0/bin) to the PATH variable.
394
3954. Set environment variable to disable memory leaks detection (they seem to be reported for every global variable at exit, not much useful):
396> export ASAN_OPTIONS=detect_leaks=0
397
3985. Set environment variable CSF_CPULIMIT_FACTOR to reasonably large number to increase the time limits for program execution (used by OCCT tests) to compensate the performance penalty introduced by sanitizers:
399> export CSF_CPULIMIT_FACTOR=20
400
4016. When using UBSan, set environment variable UBSAN_OPTIONS to get stack traces:
402> export UBSAN_OPTIONS=print_stacktrace=1
403
4047. Run DRAW and perform tests as usual, keeping in mind that running with sanitizer is much heavier than normal build:
405> ./draw.sh relwithdeb  <br>
406
407~~~~{.php}
408Draw[]> testgrid -parallel 0
409~~~~
410
411Note that when running tests under sanitizers, behavior may be different.
412Known problems (as of CLang 6.0) are:
413- Software signals (access violation etc.) are not handled
414- Heap memory usage always reports zero
415
416@subsection occt_debug_sanitizers_windows Windows
417
418Though CLang toolset is available in Visual Studio 2015 and newer, sanitizer do not seem to be available out of the box (last tested with VS 2019 16.2.3).
419