Sha256: 0e3249c6c4a850856af85c93854008d06189fde605b0795e37ef6d4bcaf877de
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 KB
Contents
module Bullet module Detector class UnusedEagerAssociation < Association # check if there are unused preload associations. # for each object => association # get related_objects from eager_loadings associated with object and associations # get call_object_association from associations of call_object_associations whose object is in related_objects # if association not in call_object_association, then the object => association - call_object_association is ununsed preload assocations def self.check_unused_preload_associations @@checked = true object_associations.each do |object, association| object_association_diff = diff_object_association object, association next if object_association_diff.empty? create_notification object.class, object_association_diff end end protected def self.create_notification(klazz, associations) notice = Bullet::Notification::UnusedEagerLoading.new( klazz, associations ) Bullet.notification_collector.add( notice ) end def self.call_object_association( object, association ) eager_loadings.similarly_associated( object, association ). collect { |related_object| call_object_associations[related_object] }. compact. flatten. uniq rescue [] end def self.diff_object_association( object, association ) potential_objects = association - call_object_association( object, association ) potential_objects.reject {|a| a.is_a?( Hash ) } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thaold-bullet-2.0.2 | lib/bullet/detector/unused_eager_association.rb |