Module: Bullet::Mongoid

Defined in:
lib/bullet/mongoid2x.rb,
lib/bullet/mongoid3x.rb,
lib/bullet/mongoid4x.rb

Class Method Summary collapse

Class Method Details

.enableObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/bullet/mongoid2x.rb', line 3

def self.enable
  require 'mongoid'

  ::Mongoid::Contexts::Mongo.class_eval do
    alias_method :origin_first, :first
    alias_method :origin_last, :last
    alias_method :origin_iterate, :iterate
    alias_method :origin_eager_load, :eager_load

    def first
      result = origin_first
      Bullet::Detector::NPlusOneQuery.add_impossible_object(result) if result
      result
    end

    def last
      result = origin_last
      Bullet::Detector::NPlusOneQuery.add_impossible_object(result) if result
      result
    end

    def iterate(&block)
      records = execute.to_a
      if records.size > 1
        Bullet::Detector::NPlusOneQuery.add_possible_objects(records)
      elsif records.size == 1
        Bullet::Detector::NPlusOneQuery.add_impossible_object(records.first)
      end
      origin_iterate(&block)
    end

    def eager_load(docs)
      associations = criteria.inclusions.map(&:name)
      docs.each do |doc|
        Bullet::Detector::Association.add_object_associations(doc, associations)
      end
      Bullet::Detector::UnusedEagerLoading.add_eager_loadings(docs, associations)
      origin_eager_load(docs)
    end
  end

  ::Mongoid::Relations::Accessors.class_eval do
    alias_method :origin_set_relation, :set_relation

    def set_relation(name, relation)
      if relation && relation..macro !~ /embed/
        Bullet::Detector::NPlusOneQuery.call_association(self, name)
      end
      origin_set_relation(name, relation)
    end
  end
end