Class: AppMap::Event::MethodReturn
- Inherits:
-
MethodReturnIgnoreValue
- Object
- Struct
- MethodEventStruct
- MethodEvent
- MethodReturnIgnoreValue
- AppMap::Event::MethodReturn
- Defined in:
- lib/appmap/event.rb
Direct Known Subclasses
Constant Summary
Constants inherited from MethodEvent
AppMap::Event::MethodEvent::MAX_ARRAY_ENUMERATION, AppMap::Event::MethodEvent::MAX_HASH_ENUMERATION, AppMap::Event::MethodEvent::MAX_STRING_LENGTH
Instance Attribute Summary collapse
-
#exceptions ⇒ Object
Returns the value of attribute exceptions.
-
#return_value ⇒ Object
Returns the value of attribute return_value.
Attributes inherited from MethodReturnIgnoreValue
#elapsed, #elapsed_instrumentation, #parent_id
Attributes inherited from MethodEventStruct
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from MethodEvent
add_schema, add_size, best_class_name, custom_display_string, default_display_string, display_string, encode_display_string, #ready?
Instance Attribute Details
#exceptions ⇒ Object
Returns the value of attribute exceptions.
288 289 290 |
# File 'lib/appmap/event.rb', line 288 def exceptions @exceptions end |
#return_value ⇒ Object
Returns the value of attribute return_value.
288 289 290 |
# File 'lib/appmap/event.rb', line 288 def return_value @return_value end |
Class Method Details
.build_from_invocation(parent_id, return_value, exception, elapsed: nil, event: MethodReturn.new, parameter_schema: false) ⇒ Object
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
# File 'lib/appmap/event.rb', line 291 def build_from_invocation(parent_id, return_value, exception, elapsed: nil, event: MethodReturn.new, parameter_schema: false) event ||= MethodReturn.new event.tap do |_| if return_value event.return_value = { class: best_class_name(return_value), value: display_string(return_value), object_id: return_value.__id__ }.tap do |param| add_size param, return_value add_schema param, return_value if parameter_schema && !exception end end if exception next_exception = exception exceptions = [] while next_exception exception_backtrace = AppMap::Util.try(next_exception.backtrace_locations, :[], 0) exceptions << { class: best_class_name(next_exception), message: display_string(next_exception.), object_id: next_exception.__id__, path: exception_backtrace&.path, lineno: exception_backtrace&.lineno }.compact next_exception = next_exception.cause end event.exceptions = exceptions end MethodReturnIgnoreValue.build_from_invocation(parent_id, elapsed: elapsed, event: event) end end |
Instance Method Details
#to_h ⇒ Object
326 327 328 329 330 331 |
# File 'lib/appmap/event.rb', line 326 def to_h super.tap do |h| h[:return_value] = return_value if return_value h[:exceptions] = exceptions if exceptions end end |