-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathutils.lua
299 lines (259 loc) · 7.91 KB
/
utils.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
local Region = require("refactoring.region")
local async = require("plenary.async")
local api = vim.api
local ts = vim.treesitter
local iter = vim.iter
local M = {}
function M.wait_frame()
async.util.scheduler()
end
---@return refactor.Region
function M.get_top_of_file_region()
local range = { line = 0, character = 0 }
return Region:from_lsp_range_insert({ start = range, ["end"] = range })
end
---@param node TSNode
---@param out string[]|nil
function M.get_node_text(node, out)
out = out or {}
local count = node:child_count()
-- TODO: generalize node type checks for different languages in treesitter
if
count == 0
-- cpp special case
or node:type() == "string_literal"
-- go special case
or node:type() == "interpreted_string_literal"
then
local cur_bufnr = api.nvim_get_current_buf()
local text = ts.get_node_text(node, cur_bufnr)
table.insert(out, text)
return out
end
for child in node:iter_children() do
M.get_node_text(child, out)
end
return out
end
---@param a TSNode
---@param b TSNode
---@return boolean
function M.appears_before(a, b)
local a_row, a_col, a_bytes = a:start()
local b_row, b_col, b_bytes = b:start()
if a_row ~= b_row then
return a_row < b_row
end
-- A starts before B
-- B ends after A
return (a_col < b_col or b_col + b_bytes > a_col + a_bytes)
end
---@param nodes TSNode[]
---@return TSNode[]
function M.sort_in_appearance_order(nodes)
table.sort(nodes, M.appears_before)
return nodes
end
-- determines if a contains node b.
---@param a TSNode the containing node
---@param b TSNode the node to be contained
function M.node_contains(a, b)
if a == nil or b == nil then
return false
end
local _, _, _, a_end_col = a:range()
local start_row, start_col, end_row, end_col = b:range()
if end_col == a_end_col then
end_col = end_col - 1
end
return ts.is_in_node_range(a, start_row, start_col)
and ts.is_in_node_range(a, end_row, end_col)
end
-- TODO: This likely doesn't work with multistatement line inserts
---@param node TSNode
---@return refactor.Region
function M.region_one_line_up_from_node(node)
local region = Region:from_node(node)
region.end_row = region.start_row
region.start_col = 1
region.end_col = 1
return region
end
---@param node TSNode
---@param region refactor.Region
---@return boolean
M.region_complement = function(node, region)
return not region:contains(Region:from_node(node))
end
---@param node TSNode[]
---@param region refactor.Region
---@param bufnr integer|nil
---@return boolean
M.region_intersect = function(node, region, bufnr)
return region:contains(Region:from_node(node, bufnr))
end
---@param node TSNode[]
---@param region refactor.Region
---@return boolean
M.after_region = function(node, region)
return Region:from_node(node):is_after(region)
end
---@param bufnr integer
---@param nodes TSNode[]
---@return table<string, true>
function M.nodes_to_text_set(bufnr, nodes)
local out = {} ---@type table<string, true>
for _, node in pairs(nodes) do
local text = ts.get_node_text(node, bufnr)
if text ~= nil then
out[text] = true
end
end
return out
end
---@param a table<any, any>
---@param b table<any, any>
---@return table
function M.table_key_intersect(a, b)
local out = {} ---@type table<any, any>
for k, v in pairs(b) do
if a[k] then
out[k] = v
end
end
return out
end
---@param node TSNode
---@return refactor.Region
function M.region_above_node(node)
local scope_region = Region:from_node(node)
scope_region.start_row = math.max(scope_region.start_row - 1, 1)
scope_region.start_col = 1
scope_region.end_row = scope_region.start_row
scope_region.end_col = scope_region.start_col
local node_for_region =
assert(node:named_descendant_for_range(scope_region:to_ts()))
local import_nodes = {
"import_statement",
}
for _, import_node in ipairs(import_nodes) do
if node_for_region:type() == import_node then
scope_region = M.region_above_node(
assert(node_for_region:next_named_sibling())
)
end
end
return scope_region
end
---@param node TSNode|nil
---@return boolean
local function is_comment_or_decorator_node(node)
if node == nil then
return false
end
local comment_and_decorator_node_types = {
"comment",
"block_comment",
"decorator",
}
for _, node_type in ipairs(comment_and_decorator_node_types) do
if node_type == node:type() then
return true
end
end
return false
end
---@param node TSNode
---@return TSNode first_node_row, integer start_row
function M.get_first_node_in_row(node)
local start_row, _, _, _ = node:range()
local first = node
while true do
local parent = first:parent()
if parent == nil then
break
end
local parent_row, _, _, _ = parent:range()
if parent_row ~= start_row then
break
end
first = parent
end
return first, start_row
end
-- TODO (TheLeoP): clean this up and use some kind of configuration for each language
---@param refactor refactor.Refactor
function M.get_non_comment_region_above_node(refactor)
local prev_sibling = M.get_first_node_in_row(refactor.scope)
:prev_named_sibling()
if is_comment_or_decorator_node(prev_sibling) then
---@cast prev_sibling TSNode
---@type integer
local start_row
while true do
-- Only want first value
start_row = prev_sibling:range()
local temp = prev_sibling:prev_sibling()
if is_comment_or_decorator_node(temp) then
---@cast temp TSNode
-- Only want first value
local temp_row = temp:range()
if start_row - temp_row == 1 then
prev_sibling = temp
else
break
end
else
break
end
end
if start_row > 0 then
return M.region_above_node(assert(prev_sibling))
else
return M.region_above_node(refactor.scope)
end
else
return M.region_above_node(refactor.scope)
end
end
---@param refactor refactor.Refactor
---@return string[]
function M.get_selected_locals(refactor)
---@param node TSNode
---@return TSNode[]
local function node_to_parent_if_needed(node)
if refactor.ts.should_check_parent_node(node) then
local parent = assert(node:parent()) -- assert may return multiple values when running inside of plenary, causing errors on the iter pipeline
return parent
end
return node
end
local local_defs = iter(
refactor.ts:get_local_defs(refactor.scope, refactor.region)
):map(node_to_parent_if_needed):totable()
local region_refs = iter(
refactor.ts:get_region_refs(refactor.scope, refactor.region)
):map(node_to_parent_if_needed):totable()
local bufnr = refactor.buffers[1]
local local_def_map = M.nodes_to_text_set(bufnr, local_defs)
local region_refs_map = M.nodes_to_text_set(bufnr, region_refs)
return M.table_key_intersect(local_def_map, region_refs_map)
end
function M.is_visual_mode()
local mode = api.nvim_get_mode().mode
-- '\22' is an escaped `<C-v>`
return mode == "v" or mode == "V" or mode == "\22", mode
end
function M.exit_to_normal_mode()
-- Don't use `<C-\><C-n>` in command-line window as they close it
if vim.fn.getcmdwintype() ~= "" then
local is_vis, cur_mode = M.is_visual_mode()
if is_vis then
vim.cmd("normal! " .. cur_mode)
end
else
-- '\28\14' is an escaped version of `<C-\><C-n>`
vim.cmd("normal! \28\14")
end
end
return M