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
168
|
# File 'lib/spoom/cli/srb/bump.rb', line 50
def bump(directory = ".")
context = context_requiring_sorbet!
from = options[:from]
to = options[:to]
force = options[:force]
dry = options[:dry]
only = options[:only]
cmd = options[:suggest_bump_command]
directory = File.expand_path(directory)
exec_path = File.expand_path(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 options[: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.expand_path(file, context.absolute_path) }
.select { |file| file.start_with?(directory) }
if only
list = File.read(only).lines.map { |file| File.expand_path(file.strip) }
files_to_bump.select! { |file| list.include?(File.expand_path(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(
*options[:sorbet_options].split(" "),
"--error-url-base=#{error_url_base}",
capture_err: true,
sorbet_bin: options[: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
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.expand_path(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 options[: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
|