mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- Added possibility to send stream information and transient object into Message_Messenger. Message_Printer will process it if needed. - Add Message_PrinterToReport to send messenger information into Message_Report. - Extended Message_Report to collect hierarchical alerts, to be able to collect some metrics during alerts processing. - Added Message_AlertExtended to prepare hierarchical alerts with custom attributes. One attribute for one alert. - Added Message_CompositeAlerts class to handle a container of alerts. - Added Message_Level to start a new hierarchical level by creating an instance, stop by destricting. - Added Message_Attribute and inheritors to store custom information about alert like object, stream, shape, some metrics. - Implement Message_AttributeAlert to collect start/stop information about active metrics of Message_Report. This kind of attribute is created if at least one metric is active in the report. - Add Message_MetricType enumeration with possible kinds of metrics in report. - Implement DumpJson for Message_Report to store all collected alerts into stream. - Added draw commands for Message_Report, Message_Messenger.
28 lines
801 B
Plaintext
28 lines
801 B
Plaintext
puts "=================================="
|
|
puts "0029451: Information Message Alert to debug an algorithm or object functionality"
|
|
puts "=================================="
|
|
pload MODELING
|
|
|
|
#ostream printer
|
|
PrintMessenger
|
|
SendMessage "processing a text message in ostream" "information message" "test faulty message" "warning message"
|
|
|
|
#report printer
|
|
SetMessagePrinter -type report
|
|
PrintMessenger
|
|
SendMessage "processing a text message in report" "information message" "test faulty message" "warning message"
|
|
|
|
PrintReport -dumpJson
|
|
|
|
#report printer with metric
|
|
ClearReport
|
|
SetReportMetric 1 3
|
|
CollectMetricMessages -activate 1
|
|
SendMessage "processing metric report"
|
|
CollectMetricMessages -activate 0
|
|
|
|
PrintReport -dumpJson
|
|
SetMessagePrinter -type report -state off
|
|
PrintMessenger
|
|
|
|
puts "TEST COMPLETED" |