Class: AppMap::Config::LookupPackage
- Inherits:
-
Struct
- Object
- Struct
- AppMap::Config::LookupPackage
- Defined in:
- lib/appmap/config.rb
Overview
Looks up a class and method in the config, to find the matching Package configuration. This class is only used after path_enabled?
has returned ‘true`.
Instance Attribute Summary collapse
-
#cls ⇒ Object
Returns the value of attribute cls.
-
#config ⇒ Object
Returns the value of attribute config.
-
#method ⇒ Object
Returns the value of attribute method.
Instance Method Summary collapse
- #package ⇒ Object
-
#package_for_code_object ⇒ Object
Hook a method which is specified by class and method name.
-
#package_for_location ⇒ Object
Hook a method which is specified by code location (i.e. path).
Instance Attribute Details
#cls ⇒ Object
Returns the value of attribute cls
393 394 395 |
# File 'lib/appmap/config.rb', line 393 def cls @cls end |
#config ⇒ Object
Returns the value of attribute config
393 394 395 |
# File 'lib/appmap/config.rb', line 393 def config @config end |
#method ⇒ Object
Returns the value of attribute method
393 394 395 |
# File 'lib/appmap/config.rb', line 393 def method @method end |
Instance Method Details
#package ⇒ Object
394 395 396 397 398 399 |
# File 'lib/appmap/config.rb', line 394 def package # Global "excludes" configuration can be used to ignore any class/method. return if config.never_hook?(cls, method) package_for_code_object || package_for_location end |
#package_for_code_object ⇒ Object
Hook a method which is specified by class and method name.
402 403 404 405 406 407 |
# File 'lib/appmap/config.rb', line 402 def package_for_code_object Array(config.hooked_methods[cls.name]) .compact .find { |hook| hook.include_method?(method.name) } &.package end |
#package_for_location ⇒ Object
Hook a method which is specified by code location (i.e. path).
410 411 412 413 414 415 416 417 418 419 420 421 422 423 |
# File 'lib/appmap/config.rb', line 410 def package_for_location location = method.source_location location_file, = location return unless location_file location_file = AppMap::Util.normalize_path(location_file) config .packages .select { |pkg| pkg.path } .find do |pkg| (location_file.index(pkg.path) == 0) && !pkg.exclude.find { |p| location_file.index(p) } end end |