Sha256: 1f0c5437b26db5b69703b83b8b80517f32fdfe7e419305ca4054a858e72b027f
Contents?: true
Size: 1.52 KB
Versions: 11
Compression:
Stored size: 1.52 KB
Contents
module Byebug module Helpers # # Utilities for thread subcommands # module ThreadHelper def display_context(ctx) puts pr('thread.context', thread_arguments(ctx)) end def thread_arguments(ctx) { status_flag: status_flag(ctx), debug_flag: debug_flag(ctx), id: ctx.thnum, thread: ctx.thread.inspect, file_line: location(ctx), pid: Process.pid, status: ctx.thread.status, current: current_thread?(ctx) } end def current_thread?(ctx) ctx.thread == Thread.current end def context_from_thread(thnum) ctx = Byebug.contexts.find { |c| c.thnum.to_s == thnum } err = case when ctx.nil? then pr('thread.errors.no_thread') when ctx == context then pr('thread.errors.current_thread') when ctx.ignored? then pr('thread.errors.ignored', arg: thnum) end [ctx, err] end private # TODO: Check whether it is Byebug.current_context or context def location(ctx) return context.location if ctx == Byebug.current_context backtrace = ctx.thread.backtrace_locations return '' unless backtrace && backtrace[0] "#{backtrace[0].path}:#{backtrace[0].lineno}" end def status_flag(ctx) return '$' if ctx.suspended? current_thread?(ctx) ? '+' : ' ' end def debug_flag(ctx) ctx.ignored? ? '!' : ' ' end end end end
Version data entries
11 entries across 11 versions & 1 rubygems