Class: DeadEnd::PathnameFromMessage
- Inherits:
-
Object
- Object
- DeadEnd::PathnameFromMessage
- Defined in:
- lib/dead_end/pathname_from_message.rb
Overview
Converts a SyntaxError message to a path
Handles the case where the filename has a colon in it such as on a windows file system: github.com/zombocom/dead_end/issues/111
Example:
= "/tmp/scratch:2:in `require_relative': /private/tmp/bad.rb:1: syntax error, unexpected `end' (SyntaxError)"
puts PathnameFromMessage.new().call.name
# => "/tmp/scratch.rb"
Constant Summary collapse
- EVAL_RE =
/^\(eval\):\d+/
- STREAMING_RE =
/^-:\d+/
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(message, io: $stderr) ⇒ PathnameFromMessage
constructor
A new instance of PathnameFromMessage.
- #skip_missing_file_name? ⇒ Boolean
- #stop? ⇒ Boolean
Constructor Details
#initialize(message, io: $stderr) ⇒ PathnameFromMessage
Returns a new instance of PathnameFromMessage.
20 21 22 23 24 25 26 |
# File 'lib/dead_end/pathname_from_message.rb', line 20 def initialize(, io: $stderr) @line = .lines.first @parts = @line.split(":") @guess = [] @name = nil @io = io end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
18 19 20 |
# File 'lib/dead_end/pathname_from_message.rb', line 18 def name @name end |
Instance Method Details
#call ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/dead_end/pathname_from_message.rb', line 28 def call if skip_missing_file_name? if ENV["DEBUG"] @io.puts "DeadEnd: Could not find filename from #{@line.inspect}" end else until stop? @guess << @parts.shift @name = Pathname(@guess.join(":")) end if @parts.empty? @io.puts "DeadEnd: Could not find filename from #{@line.inspect}" @name = nil end end self end |
#skip_missing_file_name? ⇒ Boolean
55 56 57 |
# File 'lib/dead_end/pathname_from_message.rb', line 55 def skip_missing_file_name? @line.match?(EVAL_RE) || @line.match?(STREAMING_RE) end |
#stop? ⇒ Boolean
48 49 50 51 52 53 |
# File 'lib/dead_end/pathname_from_message.rb', line 48 def stop? return true if @parts.empty? return false if @guess.empty? @name&.exist? end |