Class: Spoom::Cli::Bump
- Inherits:
-
Thor
- Object
- Thor
- Spoom::Cli::Bump
- Extended by:
- T::Sig
- Includes:
- Helper
- Defined in:
- lib/spoom/cli/bump.rb
Constant Summary
Constants included from Helper
Instance Method Summary collapse
Methods included from Helper
#blue, #color?, #colorize, #context, #context_requiring_sorbet!, #cyan, #exec_path, #gray, #green, #highlight, #red, #say, #say_error, #yellow
Methods included from Spoom::Colorize
Instance Method Details
#bump(directory = ".") ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/spoom/cli/bump.rb', line 49 def bump(directory = ".") context = context_requiring_sorbet! from = [:from] to = [:to] force = [:force] dry = [:dry] only = [:only] cmd = [:suggest_bump_command] directory = File.(directory) exec_path = File.(self.exec_path) unless Sorbet::Sigils.valid_strictness?(from) say_error("Invalid strictness `#{from}` for option `--from`") exit(1) end unless Sorbet::Sigils.valid_strictness?(to) say_error("Invalid strictness `#{to}` for option `--to`") exit(1) end if [:count_errors] && !dry say_error("`--count-errors` can only be used with `--dry`") exit(1) end say("Checking files...") files_to_bump = context.srb_files_with_strictness(from, include_rbis: false) .map { |file| File.(file, context.absolute_path) } .select { |file| file.start_with?(directory) } if only list = File.read(only).lines.map { |file| File.(file.strip) } files_to_bump.select! { |file| list.include?(File.(file)) } end say("\n") if files_to_bump.empty? say("No files to bump from `#{from}` to `#{to}`") exit(0) end Sorbet::Sigils.change_sigil_in_files(files_to_bump, to) if force print_changes(files_to_bump, command: cmd, from: from, to: to, dry: dry, path: exec_path) undo_changes(files_to_bump, from) if dry exit(files_to_bump.empty?) end error_url_base = Spoom::Sorbet::Errors::DEFAULT_ERROR_URL_BASE result = begin T.unsafe(context).srb_tc( *[:sorbet_options].split(" "), "--error-url-base=#{error_url_base}", capture_err: true, sorbet_bin: [:sorbet], ) rescue Spoom::Sorbet::Error::Segfault => error say_error(<<~ERR, status: nil) !!! Sorbet exited with code #{Spoom::Sorbet::SEGFAULT_CODE} - SEGFAULT !!! This is most likely related to a bug in Sorbet. It means one of the file bumped to `typed: #{to}` made Sorbet crash. Run `spoom bump -f` locally followed by `bundle exec srb tc` to investigate the problem. ERR undo_changes(files_to_bump, from) exit(error.result.exit_code) rescue Spoom::Sorbet::Error::Killed => error say_error(<<~ERR, status: nil) !!! Sorbet exited with code #{Spoom::Sorbet::KILLED_CODE} - KILLED !!! It means Sorbet was killed while executing. Changes to files have not been applied. Re-run `spoom bump` to try again. ERR undo_changes(files_to_bump, from) exit(error.result.exit_code) end if result.status print_changes(files_to_bump, command: cmd, from: from, to: to, dry: dry, path: exec_path) undo_changes(files_to_bump, from) if dry exit(files_to_bump.empty?) end unless result.exit_code == 100 # Sorbet will return exit code 100 if there are type checking errors. # If Sorbet returned something else, it means it didn't terminate normally. say_error(result.err, status: nil, nl: false) undo_changes(files_to_bump, from) exit(1) end errors = Sorbet::Errors::Parser.parse_string(result.err, error_url_base: error_url_base) all_files = errors.flat_map do |err| [err.file, *err.files_from_error_sections] end files_with_errors = all_files.map do |file| path = File.(file) next unless path.start_with?(directory) next unless File.file?(path) next unless files_to_bump.include?(path) path end.compact.uniq undo_changes(files_with_errors, from) say("Found #{errors.length} type checking error#{"s" if errors.length > 1}") if [:count_errors] files_changed = files_to_bump - files_with_errors print_changes(files_changed, command: cmd, from: from, to: to, dry: dry, path: exec_path) undo_changes(files_to_bump, from) if dry exit(files_changed.empty?) end |