Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
skylight / lib / skylight / vm / gc.rb
Size: Mime:

module Skylight
  # @api private
  module VM
    if defined?(JRUBY_VERSION)

      # This doesn't quite work as we would like it. I believe that the GC
      # statistics includes time that is not stop-the-world, this does not
      # necessarily take time away from the application.
      #
      # require 'java'
      # class GC
      #   def initialize
      #     @factory = Java::JavaLangManagement::ManagementFactory
      #   end
      #
      #   def enable
      #   end
      #
      #   def total_time
      #     res = 0.0
      #
      #     @factory.garbage_collector_mx_beans.each do |mx|
      #       res += (mx.collection_time.to_f / 1_000.0)
      #     end
      #
      #     res
      #   end
      # end

    elsif defined?(::GC::Profiler)

      class GC
        def initialize
          @total = 0
        end

        def enable
          ::GC::Profiler.enable
        end

        def total_time
          # Reported in seconds
          run = (::GC::Profiler.total_time * 1_000_000).to_i

          if run > 0
            ::GC::Profiler.clear
          end

          @total += run
        end
      end

    end

    # Fallback
    unless defined?(VM::GC)

      class GC
        def enable
        end

        def total_time
          0
        end
      end

    end
  end
end