Sha256: ce9165bf8e3b155dbdd035d785320a051c31bb6924d97e511602e2bd98096867

Contents?: true

Size: 1.42 KB

Versions: 138

Compression:

Stored size: 1.42 KB

Contents

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

module ActiveRecord
  module Railties
    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
          runtime = super
          db_rt_after_render = ActiveRecord::LogSubscriber.reset_runtime
          self.db_runtime = db_rt_before_render + 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
        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

138 entries across 107 versions & 14 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activerecord-3.2.22.5/lib/active_record/railties/controller_runtime.rb
activerecord-3.2.22.5 lib/active_record/railties/controller_runtime.rb
activerecord-3.2.22.4 lib/active_record/railties/controller_runtime.rb
activerecord-3.2.22.3 lib/active_record/railties/controller_runtime.rb
activerecord-3.2.22.2 lib/active_record/railties/controller_runtime.rb
activerecord-3.2.22.1 lib/active_record/railties/controller_runtime.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.12/lib/active_record/railties/controller_runtime.rb
activerecord-3.2.22 lib/active_record/railties/controller_runtime.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.12/lib/active_record/railties/controller_runtime.rb
activerecord-3.2.21 lib/active_record/railties/controller_runtime.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activerecord-3.2.18/lib/active_record/railties/controller_runtime.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.18/lib/active_record/railties/controller_runtime.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.18/lib/active_record/railties/controller_runtime.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.18/lib/active_record/railties/controller_runtime.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.18/lib/active_record/railties/controller_runtime.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activerecord-3.2.18/lib/active_record/railties/controller_runtime.rb
activerecord-3.2.20 lib/active_record/railties/controller_runtime.rb
activerecord-3.2.19 lib/active_record/railties/controller_runtime.rb
activerecord-3.2.18 lib/active_record/railties/controller_runtime.rb
activerecord-3.2.17 lib/active_record/railties/controller_runtime.rb