Sha256: 977b65dc39d24e0d895202957cefab1bdfb51f278c8e1c9331bb327e99b72526

Contents?: true

Size: 1.48 KB

Versions: 124

Compression:

Stored size: 1.48 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

    protected

      attr_internal :db_runtime

      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 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

124 entries across 120 versions & 9 rubygems

Version Path
activerecord-4.2.11.3 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.11.2 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.11.1 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.11 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.10 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.10.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.9 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.9.rc2 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.9.rc1 lib/active_record/railties/controller_runtime.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activerecord-4.2.8/lib/active_record/railties/controller_runtime.rb
activerecord-4.2.8 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.8.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.7.1 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.7 lib/active_record/railties/controller_runtime.rb
activerecord-4.1.16 lib/active_record/railties/controller_runtime.rb
activerecord-4.1.16.rc1 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.7.rc1 lib/active_record/railties/controller_runtime.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activerecord-4.2.6/lib/active_record/railties/controller_runtime.rb
activerecord-4.1.15 lib/active_record/railties/controller_runtime.rb
activerecord-4.2.6 lib/active_record/railties/controller_runtime.rb