# frozen_string_literals: true## Copyright, 2019, by Samuel G. D. Williams. <http://www.codeotaku.com># # Permission is hereby granted, free of charge, to any person obtaining a copy# of this software and associated documentation files (the "Software"), to deal# in the Software without restriction, including without limitation the rights# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell# copies of the Software, and to permit persons to whom the Software is# furnished to do so, subject to the following conditions:# # The above copyright notice and this permission notice shall be included in# all copies or substantial portions of the Software.# # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN# THE SOFTWARE.require_relative'generic'moduleConsolemoduleEventclassFailure<Genericdefself.current_working_directoryDir.getwdrescue# e.g. Errno::EMFILEnilenddefself.for(exception)self.new(exception,self.current_working_directory)enddefinitialize(exception,root=nil)@exception=exception@root=rootendattr:exceptionattr:rootdefself.register(terminal)terminal[:exception_title]||=terminal.style(:red,nil,:bold)terminal[:exception_detail]||=terminal.style(:yellow)terminal[:exception_backtrace]||=terminal.style(:red)enddefformat(output,terminal,verbose)format_exception(@exception,nil,output,terminal,verbose)enddefformat_exception(exception,prefix,output,terminal,verbose)lines=exception.message.lines.map(&:chomp)output.puts" #{prefix}#{terminal[:exception_title]}#{exception.class}#{terminal.reset}: #{lines.shift}"lines.eachdo|line|output.puts" #{terminal[:exception_detail]}#{line}#{terminal.reset}"endexception.backtrace&.each_with_indexdo|line,index|path,offset,message=line.split(":")# Make the path a bit more readablepath.gsub!(/^#{@root}\//,"./")if@rootoutput.puts" #{index==0?"→":" "}#{terminal[:exception_backtrace]}#{path}:#{offset}#{terminal.reset}#{message}"endifexception.causeformat_exception(exception.cause,"Caused by ",output,terminal,verbose)endendendendend