Sha256: c0c0af74ced94ee5f2273244139c4b02270ca7f3f558b8f1050386f9dd4fb281

Contents?: true

Size: 1.65 KB

Versions: 20

Compression:

Stored size: 1.65 KB

Contents

require "active_support/core_ext/module/attr_internal"
require "active_record/log_subscriber"

module ActiveRecord
  module Railties # :nodoc:
    module ControllerRuntime #:nodoc:
      extend ActiveSupport::Concern

    # TODO Change this to private once we've dropped Ruby 2.2 support.
    # Workaround for Ruby 2.2 "private attribute?" warning.
    protected

      attr_internal :db_runtime

    private

      def process_action(action, *args)
        # We also need to reset the runtime before each action
        # because of queries in middleware or in cases we are streaming
        # and it won't be cleaned up by the method below.
        ActiveRecord::LogSubscriber.reset_runtime
        super
      end

      def cleanup_view_runtime
        if logger && logger.info? && ActiveRecord::Base.connected?
          db_rt_before_render = ActiveRecord::LogSubscriber.reset_runtime
          self.db_runtime = (db_runtime || 0) + db_rt_before_render
          runtime = super
          db_rt_after_render = ActiveRecord::LogSubscriber.reset_runtime
          self.db_runtime += db_rt_after_render
          runtime - db_rt_after_render
        else
          super
        end
      end

      def append_info_to_payload(payload)
        super
        if ActiveRecord::Base.connected?
          payload[:db_runtime] = (db_runtime || 0) + ActiveRecord::LogSubscriber.reset_runtime
        end
      end

      module ClassMethods # :nodoc:
        def log_process_action(payload)
          messages, db_runtime = super, payload[:db_runtime]
          messages << ("ActiveRecord: %.1fms" % db_runtime.to_f) if db_runtime
          messages
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
activerecord-5.1.7 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.7.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.6.2 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.6.1 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.6 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.5 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.5.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.4 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.4.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.3 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.3.rc3 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.3.rc2 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.3.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.2 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.2.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.1 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.0 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.0.rc2 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.0.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-5.1.0.beta1 lib/active_record/railties/controller_runtime.rb