aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/log_subscriber.rb
blob: 4d597a0ab1f2bb468e4df00703314c8f2e397c1a (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                    
                                                
 
                            
                                                       


                    
                                                     






                                   

                  
                  

       


                                                            
          
                                    
         

                             

       
                  

                                 

                                          
                             
 
                                                             
 
                                                                
                           
                 

                                           
                                                                               
         
 

                                             
 
                                       

       








                                            







                               
                                                    
module ActiveRecord
  class LogSubscriber < ActiveSupport::LogSubscriber
    IGNORE_PAYLOAD_NAMES = ["SCHEMA", "EXPLAIN"]

    def self.runtime=(value)
      ActiveRecord::RuntimeRegistry.sql_runtime = value
    end

    def self.runtime
      ActiveRecord::RuntimeRegistry.sql_runtime ||= 0
    end

    def self.reset_runtime
      rt, self.runtime = runtime, 0
      rt
    end

    def initialize
      super
      @odd = false
    end

    def render_bind(attribute)
      value = if attribute.type.binary? && attribute.value
        "<#{attribute.value.bytesize} bytes of binary data>"
      else
        attribute.value_for_database
      end

      [attribute.name, value]
    end

    def sql(event)
      return unless logger.debug?

      self.class.runtime += event.duration

      payload = event.payload

      return if IGNORE_PAYLOAD_NAMES.include?(payload[:name])

      name  = "#{payload[:name]} (#{event.duration.round(1)}ms)"
      sql   = payload[:sql]
      binds = nil

      unless (payload[:binds] || []).empty?
        binds = "  " + payload[:binds].map { |attr| render_bind(attr) }.inspect
      end

      name = color(name, nil, true)
      sql  = color(sql, sql_color(sql), true)

      debug "  #{name}  #{sql}#{binds}"
    end

    def sql_color(sql)
      case sql
        when /\s*\Ainsert/i      then GREEN
        when /\s*\Aselect/i      then BLUE
        when /\s*\Aupdate/i      then YELLOW
        when /\s*\Adelete/i      then RED
        when /transaction\s*\Z/i then CYAN
        else MAGENTA
      end
    end

    def logger
      ActiveRecord::Base.logger
    end
  end
end

ActiveRecord::LogSubscriber.attach_to :active_record