-
Notifications
You must be signed in to change notification settings - Fork 1
/
dap-lldb.lua
251 lines (203 loc) · 6.7 KB
/
dap-lldb.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
---@mod dap-lldb LLDB extension for nvim-dap
---@brief [[
---An extension for nvim-dap to provide C, C++, and Rust debugging support.
---@brief ]]
local M = {}
local sep = package.config:sub(1, 1)
local ts_query = [[
(mod_item
name: (identifier) @module
body: (declaration_list
(attribute_item (attribute (identifier) @attribute (#eq? @attribute "test")))
(function_item
name: (identifier) @function)))
]]
local function require_dap()
local ok, dap = pcall(require, "dap")
assert(ok, "nvim-dap is required to use dap-lldb")
return dap
end
local function find_codelldb()
local ok, registry = pcall(require, "mason-registry")
if ok and registry.is_installed("codelldb") then
local pkg = registry.get_package("codelldb")
return table.concat({ pkg:get_install_path(), "extension", "adapter", "codelldb" }, sep)
end
return nil
end
local function compiler_error(input)
local _, json = pcall(vim.fn.json_decode, input)
if type(json) == "table" and json.reason == "compiler-message" then
return json.message.rendered
end
return nil
end
local function compiler_target(input)
local _, json = pcall(vim.fn.json_decode, input)
if
type(json) == "table"
and json.reason == "compiler-artifact"
and json.executable ~= nil
and (vim.tbl_contains(json.target.kind, "bin") or json.profile.test)
then
return json.executable
end
return nil
end
local function read_target()
local cwd = string.format("%s%s", vim.fn.getcwd(), sep)
return vim.fn.input("Path to executable: ", cwd, "file")
end
local function list_targets(selection)
local arg = string.format("--%s", selection or "bins")
local cmd = { "cargo", "build", arg, "--quiet", "--message-format", "json" }
local out = vim.fn.systemlist(cmd)
if vim.v.shell_error ~= 0 then
local errors = vim.tbl_map(compiler_error, out)
vim.notify(table.concat(errors, "\n"), vim.log.levels.ERROR)
return nil
end
local function filter(e)
return e ~= nil
end
return vim.tbl_filter(filter, vim.tbl_map(compiler_target, out))
end
local function select_target(selection)
local targets = list_targets(selection)
if targets == nil then
return nil
end
if #targets == 0 then
return read_target()
end
if #targets == 1 then
return targets[1]
end
local options = { "Select a target:" }
for index, target in ipairs(targets) do
local parts = vim.split(target, sep, { trimempty = true })
local option = string.format("%d. %s", index, parts[#parts])
table.insert(options, option)
end
local choice = vim.fn.inputlist(options)
return targets[choice]
end
local function select_test()
local filetype = vim.bo.filetype
if filetype ~= "rust" or vim.treesitter.language.get_lang(filetype) == nil then
return nil
end
local bufnr = vim.api.nvim_get_current_buf()
local query = vim.treesitter.query.parse(filetype, ts_query)
local parser = vim.treesitter.get_parser(bufnr, filetype)
local tree = parser:parse()[1]
local root = tree:root()
local stop = vim.api.nvim_win_get_cursor(0)[1]
local mod = nil
local fun = nil
for id, node in query:iter_captures(root, bufnr, 0, stop) do
local capture = query.captures[id]
if capture == "module" then
mod = vim.treesitter.get_node_text(node, 0)
elseif capture == "function" then
fun = vim.treesitter.get_node_text(node, 0)
end
end
if not mod or not fun then
return nil
end
return string.format("%s::%s", mod, fun)
end
local function read_args()
local args = vim.fn.input("Enter args: ")
return vim.split(args, " ", { trimempty = true })
end
local function default_configurations(dap)
local cfg = {
name = "Debug",
type = "lldb",
request = "launch",
cwd = "${workspaceFolder}",
program = read_target,
stopOnEntry = false,
}
dap.configurations.c = {
cfg,
vim.tbl_extend("force", cfg, { name = "Debug (+args)", args = read_args }),
vim.tbl_extend("force", cfg, { name = "Attach debugger", request = "attach" }),
}
dap.configurations.cpp = vim.tbl_extend("keep", {}, dap.configurations.c)
dap.configurations.rust = {
vim.tbl_extend("force", cfg, { program = select_target }),
vim.tbl_extend("force", cfg, { name = "Debug (+args)", program = select_target, args = read_args }),
vim.tbl_extend("force", cfg, {
name = "Debug tests",
program = function()
return select_target("tests")
end,
args = { "--test-threads=1" },
}),
vim.tbl_extend("force", cfg, {
name = "Debug tests (+args)",
program = function()
return select_target("tests")
end,
args = function()
return vim.list_extend(read_args(), { "--test-threads=1" })
end,
}),
vim.tbl_extend("force", cfg, {
name = "Debug test (cursor)",
program = function()
return select_target("tests")
end,
args = function()
local test = select_test()
local args = test and { "--exact", test } or {}
return vim.list_extend(args, { "--test-threads=1" })
end,
}),
vim.tbl_extend("force", cfg, { name = "Attach debugger", request = "attach", program = select_target }),
}
end
local function custom_configurations(dap, opts)
if type(opts.configurations) == "table" then
for lang, cfg in pairs(opts.configurations) do
local config = dap.configurations[lang] or {}
dap.configurations[lang] = vim.list_extend(config, cfg)
end
end
end
---@class SetupOpts
---@field codelldb_path string|nil Path to CodeLLDB extension
---@field configurations table|nil Per programming language configuration
---@see https://github.com/vadimcn/codelldb/blob/master/MANUAL.md
---Register LLDB debug adapter
---@param opts SetupOpts|nil See |dap-lldb.SetupOpts|
function M.setup(opts)
opts = type(opts) == "table" and opts or {}
local dap = require_dap()
local codelldb = opts.codelldb_path or find_codelldb() or "codelldb"
dap.adapters.lldb = {
type = "server",
port = "${port}",
executable = {
command = codelldb,
args = { "--port", "${port}" },
detached = vim.loop.os_uname().sysname ~= "Windows",
},
}
default_configurations(dap)
custom_configurations(dap, opts)
end
---Debug test function above the cursor
function M.debug_test()
if vim.bo.filetype ~= "rust" then
vim.notify("This feature is available only for Rust", vim.log.levels.ERROR)
return nil
end
local dap = require_dap()
local cfg = dap.configurations.rust[5]
dap.run(cfg)
end
return M