Class: AppMap::Event::MethodCall

Inherits:
MethodEvent show all
Defined in:
lib/appmap/event.rb

Direct Known Subclasses

Handler::Rails::SQLHandler::SQLCall

Constant Summary

Constants inherited from MethodEvent

AppMap::Event::MethodEvent::LIMIT

Instance Attribute Summary collapse

Attributes inherited from MethodEventStruct

#event, #id, #thread_id

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from MethodEvent

best_class_name, custom_display_string, default_display_string, display_string, encode_dislay_string, object_properties

Instance Attribute Details

#defined_classObject

Returns the value of attribute defined_class.



131
132
133
# File 'lib/appmap/event.rb', line 131

def defined_class
  @defined_class
end

#linenoObject

Returns the value of attribute lineno.



131
132
133
# File 'lib/appmap/event.rb', line 131

def lineno
  @lineno
end

#method_idObject

Returns the value of attribute method_id.



131
132
133
# File 'lib/appmap/event.rb', line 131

def method_id
  @method_id
end

#parametersObject

Returns the value of attribute parameters.



131
132
133
# File 'lib/appmap/event.rb', line 131

def parameters
  @parameters
end

#pathObject

Returns the value of attribute path.



131
132
133
# File 'lib/appmap/event.rb', line 131

def path
  @path
end

#receiverObject

Returns the value of attribute receiver.



131
132
133
# File 'lib/appmap/event.rb', line 131

def receiver
  @receiver
end

#staticObject Also known as: static?

Returns the value of attribute static.



131
132
133
# File 'lib/appmap/event.rb', line 131

def static
  @static
end

Class Method Details

.build_from_invocation(defined_class, method, receiver, arguments, event: MethodCall.new) ⇒ Object



134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# File 'lib/appmap/event.rb', line 134

def build_from_invocation(defined_class, method, receiver, arguments, event: MethodCall.new)
  event ||= MethodCall.new
  defined_class ||= 'Class'
  event.tap do
    static = receiver.is_a?(Module)
    event.defined_class = defined_class
    event.method_id = method.name.to_s
    if method.source_location
      path = method.source_location[0]
      path = path[Dir.pwd.length + 1..-1] if path.index(Dir.pwd) == 0
      event.path = path
      event.lineno = method.source_location[1]
    else
      event.path = [ defined_class, static ? '.' : '#', method.name ].join
    end

    # Check if the method has key parameters. If there are any they'll always be last.
    # If yes, then extract it from arguments.
    has_key = [[:dummy], *method.parameters].last.first.to_s.start_with?('key') && arguments[-1].is_a?(Hash)
    kwargs = has_key && arguments[-1].dup || {}

    event.parameters = method.parameters.map.with_index do |method_param, idx|
      param_type, param_name = method_param
      param_name ||= 'arg'
      value = case param_type
        when :keyrest
          kwargs
        when /^key/
          kwargs.delete param_name
        when :rest
          arguments[idx..(has_key ? -2 : -1)]
        else
          arguments[idx]
        end
      {
        name: param_name,
        class: best_class_name(value),
        object_id: value.__id__,
        value: display_string(value),
        kind: param_type
      }
    end
    event.receiver = {
      class: best_class_name(receiver),
      object_id: receiver.__id__,
      value: display_string(receiver)
    }
    event.static = static
    MethodEvent.build_from_invocation(:call, event: event)
  end
end

Instance Method Details

#to_hObject



187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/appmap/event.rb', line 187

def to_h
  super.tap do |h|
    h[:defined_class] = defined_class
    h[:method_id] = method_id
    h[:path] = path
    h[:lineno] = lineno
    h[:static] = static
    h[:parameters] = parameters
    h[:receiver] = receiver
    h.delete_if { |_, v| v.nil? }
  end
end