aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/railties/controller_runtime.rb
blob: 535e967ec301d4409f25d920a613b80a24f81bdc (plain) (blame)
1
2
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
require 'active_support/core_ext/module/attr_internal'

module ActiveRecord
  module Railties
    module ControllerRuntime
      extend ActiveSupport::Concern

      attr_internal :db_runtime

      def cleanup_view_runtime
        if ActiveRecord::Base.connected?
          db_rt_before_render = ActiveRecord::Base.connection.reset_runtime
          runtime = super
          db_rt_after_render = ActiveRecord::Base.connection.reset_runtime
          self.db_runtime = db_rt_before_render + db_rt_after_render
          runtime - db_rt_after_render
        else
          super
        end
      end

      module ClassMethods
        def log_process_action(controller)
          super
          db_runtime = controller.send :db_runtime
          logger.info("  ActiveRecord runtime: %.1fms" % db_runtime.to_f) if db_runtime
        end
      end
    end
  end
end