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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
|
-- mod-version:3 --lite-xl 2.1 --priority:5
local core = require "core"
local common = require "core.common"
local config = require "core.config"
local command = require "core.command"
local json = require "libraries.json"
local keymap = require "core.keymap"
local PluginManager = {
last_refresh = nil,
requires_restart = false
}
local binary_extension = (PLATFORM == "Windows" and ".exe" or (PLATFORM == "Android" and ".so" or ""))
config.plugins.plugin_manager = common.merge({
lpm_binary_name = "lpm." .. ARCH .. binary_extension,
lpm_binary_path = nil,
-- Restarts the plugin manager on changes.
restart_on_change = true,
-- Path to a local copy of all repositories.
cachdir = USERDIR .. PATHSEP .. "lpm",
-- Path to the folder that holds user-specified plugins.
userdir = USERDIR,
-- Path to ssl certificate directory or bunde. Nil will auto-detect.
ssl_certs = nil,
-- Whether or not to force install things.
force = false,
-- Dumps commands that run to stdout, as well as responses from lpm.
debug = false,
-- A list of addons to apply to the system bottle.
addons = nil
}, config.plugins.plugin_manager)
if not config.plugins.plugin_manager.lpm_binary_path then
local paths = {
DATADIR .. PATHSEP .. "plugins" .. PATHSEP .. "plugin_manager" .. PATHSEP .. config.plugins.plugin_manager.lpm_binary_name,
USERDIR .. PATHSEP .. "plugins" .. PATHSEP .. "plugin_manager" .. PATHSEP .. config.plugins.plugin_manager.lpm_binary_name,
DATADIR .. PATHSEP .. "plugins" .. PATHSEP .. "plugin_manager" .. PATHSEP .. "lpm" .. binary_extension,
USERDIR .. PATHSEP .. "plugins" .. PATHSEP .. "plugin_manager" .. PATHSEP .. "lpm" .. binary_extension,
}
local path, s = os.getenv("PATH"), 1
while true do
local _, e = path:find(":", s)
table.insert(paths, path:sub(s, e and (e-1) or #path) .. PATHSEP .. config.plugins.plugin_manager.lpm_binary_name)
table.insert(paths, path:sub(s, e and (e-1) or #path) .. PATHSEP .. "lpm" .. binary_extension)
if not e then break end
s = e + 1
end
for i, path in ipairs(paths) do
if system.get_file_info(path) then
config.plugins.plugin_manager.lpm_binary_path = path
break
end
end
end
if not config.plugins.plugin_manager.lpm_binary_path then error("can't find lpm binary, please supply one with config.plugins.plugin_manager.lpm_binary_path") end
local Promise = { }
function Promise:__index(idx) return rawget(self, idx) or Promise[idx] end
function Promise.new(result) return setmetatable({ result = result, success = nil, _done = { }, _fail = { } }, Promise) end
function Promise:done(done) if self.success == true then done(self.result) else table.insert(self._done, done) end return self end
function Promise:fail(fail) if self.success == false then fail(self.result) else table.insert(self._fail, fail) end return self end
function Promise:resolve(result) self.result = result self.success = true for i,v in ipairs(self._done) do v(result) end return self end
function Promise:reject(result) self.result = result self.success = false for i,v in ipairs(self._fail) do v(result) end return self end
function Promise:forward(promise) self:done(function(data) promise:resolve(data) end) self:fail(function(data) promise:reject(data) end) return self end
local function join(joiner, t) local s = "" for i,v in ipairs(t) do if i > 1 then s = s .. joiner end s = s .. v end return s end
local running_processes = {}
local default_arguments = {
"--mod-version=" .. (rawget(_G, "MOD_VERSION") or MOD_VERSION_STRING), -- #workaround hack for new system.
"--datadir=" .. DATADIR,
"--binary=" .. EXEFILE,
"--assume-yes"
}
if config.plugins.plugin_manager.ssl_certs then table.insert(default_arguments, "--ssl_certs") table.insert(cmd, config.plugins.plugin_manager.ssl_certs) end
if config.plugins.plugin_manager.force then table.insert(default_arguments, "--force") end
local function extract_progress(chunk)
local newline = chunk:find("\n")
if not newline then return nil, chunk end
if #chunk == newline then
if chunk:find("^{\"progress\"") then return chunk, "" end
return nil, chunk
end
return chunk:sub(1, newline - 1), chunk:sub(newline + 1)
end
local function run(cmd, options)
options = options or {}
table.insert(cmd, 1, config.plugins.plugin_manager.lpm_binary_path)
table.insert(cmd, "--json")
table.insert(cmd, "--quiet")
table.insert(cmd, "--progress")
if options.cachedir then table.insert(cmd, "--cachedir=" .. options.cachedir) end
table.insert(cmd, "--userdir=" .. (options.userdir or USERDIR))
for i,v in ipairs(default_arguments) do table.insert(cmd, v) end
local proc = process.start(cmd)
if config.plugins.plugin_manager.debug then for i, v in ipairs(cmd) do io.stdout:write((i > 1 and " " or "") .. v) end io.stdout:write("\n") io.stdout:flush() end
local promise = Promise.new()
table.insert(running_processes, { proc, promise, "" })
if #running_processes == 1 then
core.add_thread(function()
while #running_processes > 0 do
local still_running_processes = {}
local has_chunk = false
local i = 1
while i < #running_processes + 1 do
local v = running_processes[i]
local still_running = true
local progress_line
while true do
local chunk = v[1]:read_stdout(2048)
if config.plugins.plugin_manager.debug and chunk ~= nil then io.stdout:write(chunk) io.stdout:flush() end
if chunk and v[1]:running() and #chunk == 0 then break end
if chunk ~= nil and #chunk > 0 then
v[3] = v[3] .. chunk
progress_line, v[3] = extract_progress(v[3])
if options.progress and progress_line then
progress_line = json.decode(progress_line)
options.progress(progress_line.progress)
end
has_chunk = true
else
still_running = false
if v[1]:returncode() == 0 then
progress_line, v[3] = extract_progress(v[3])
v[2]:resolve(v[3])
else
local err = v[1]:read_stderr(2048)
core.error("error running " .. join(" ", cmd) .. ": " .. (err or "?"))
progress_line, v[3] = extract_progress(v[3])
if err then
v[2]:reject(json.decode(err).error)
else
v[2]:reject(err)
end
end
break
end
end
if still_running then
table.insert(still_running_processes, v)
end
i = i + 1
end
running_processes = still_running_processes
coroutine.yield(has_chunk and 0.001 or 0.05)
end
end)
end
return promise
end
function PluginManager:refresh(options)
local prom = Promise.new()
run({ "list" }, options):done(function(addons)
self.addons = json.decode(addons)["addons"]
table.sort(self.addons, function(a,b) return a.id < b.id end)
self.valid_addons = {}
for i, addon in ipairs(self.addons) do
if addon.status ~= "incompatible" then
table.insert(self.valid_addons, addon)
if (addon.id == "plugin_manager" or addon.id == "json") and (addon.status == "installed" or addon.status == "orphan") then
addon.status = "special"
end
end
end
self.last_refresh = os.time()
core.redraw = true
prom:resolve(addons)
run({ "repo", "list" }, options):done(function(repositories)
self.repositories = json.decode(repositories)["repositories"]
end)
end)
return prom
end
function PluginManager:upgrade(options)
local prom = Promise.new()
run({ "update" }, options):done(function()
run({ "upgrade" }, options):done(function()
prom:resolve()
end)
end)
return prom
end
function PluginManager:purge(options)
return run({ "purge" }, options)
end
function PluginManager:get_addons(options)
local prom = Promise.new()
if self.addons then
prom:resolve(self.addons)
else
self:refresh(options):done(function()
prom:resolve(self.addons)
end):fail(function(arg) promise:reject(arg) end)
end
return prom
end
local function run_stateful_plugin_command(plugin_manager, cmd, args, options)
local promise = Promise.new()
run({ cmd, table.unpack(args) }, options):done(function(result)
if (options.restart == nil and config.plugins.plugin_manager.restart_on_change) or options.restart then
command.perform("core:restart")
else
plugin_manager:refresh(options):forward(promise)
end
end):fail(function(arg)
promise:reject(arg)
end)
return promise
end
function PluginManager:install(addon, options) return run_stateful_plugin_command(self, "install", { addon.id .. (addon.version and (":" .. addon.version) or "") }, options) end
function PluginManager:reinstall(addon, options) return run_stateful_plugin_command(self, "install", { addon.id .. (addon.version and (":" .. addon.version) or ""), "--reinstall" }, options) end
function PluginManager:uninstall(addon, options) return run_stateful_plugin_command(self, "uninstall", { addon.id }, options) end
function PluginManager:unstub(addon, options)
local promise = Promise.new()
if addon.path and system.get_file_info(addon.path) then
promise:resolve(addon)
else
run({ "unstub", addon.id }, options):done(function(result)
local unstubbed_addon = json.decode(result).addons[1]
for k,v in pairs(unstubbed_addon) do addon[k] = v end
promise:resolve(addon)
end):fail(function(arg) promise:reject(arg) end)
end
return promise
end
function PluginManager:get_addon(name_and_version, options)
local promise = Promise.new()
PluginManager:get_addons(options):done(function()
local s = name_and_version:find(":")
local name, version = name_and_version, nil
if s then
name = name_and_version:sub(1, s-1)
version = name_and_version:sub(s+1)
end
local match = false
for i, addon in ipairs(PluginManager.addons) do
if not addon.mod_version or tostring(addon.mod_version) == tostring(rawget(_G, "MOD_VERSION_MAJOR") or rawget(_G, "MOD_VERSION")) and (addon.version == version or version == nil) then
promise:resolve(addon)
match = true
break
end
end
if not match then promise:reject() end
end):fail(function(arg) promise:reject(arg) end)
return promise
end
PluginManager.promise = Promise
PluginManager.view = require "plugins.plugin_manager.plugin_view"
-- This will be significantly simplified when the plugin loading monolith is broken up a bit.
if config.plugins.plugin_manager.addons then
local target_plugin_directory = config.plugins.plugin_manger.adddon_directory or (USERDIR .. PATHSEP .. "projects" .. PATHSEP .. common.basename(system.absolute_path(".")))
local mod_version_regex =
regex.compile([[--.*mod-version:(\d+)(?:\.(\d+))?(?:\.(\d+))?(?:$|\s)]])
local function get_plugin_details(filename)
local info = system.get_file_info(filename)
if info ~= nil and info.type == "dir" then
filename = filename .. PATHSEP .. "init.lua"
info = system.get_file_info(filename)
end
if not info or not filename:match("%.lua$") then return false end
local f = io.open(filename, "r")
if not f then return false end
local priority = false
local version_match = false
local major, minor, patch
for line in f:lines() do
if not version_match then
local _major, _minor, _patch = mod_version_regex:match(line)
if _major then
_major = tonumber(_major) or 0
_minor = tonumber(_minor) or 0
_patch = tonumber(_patch) or 0
major, minor, patch = _major, _minor, _patch
version_match = major == MOD_VERSION_MAJOR
if version_match then
version_match = minor <= MOD_VERSION_MINOR
end
if version_match then
version_match = patch <= MOD_VERSION_PATCH
end
end
end
if not priority then
priority = line:match('%-%-.*%f[%a]priority%s*:%s*(%d+)')
if priority then priority = tonumber(priority) end
end
if version_match then
break
end
end
f:close()
return true, {
version_match = version_match,
version = major and {major, minor, patch} or {},
priority = priority or 100
}
end
local function replace_string(str, text, replace)
local offset = 1
local result = ""
while true do
local s,e = str:find(text, offset, true)
if s then
result = result .. str:sub(offset, s - 1) .. replace
offset = e + 1
else
result = result .. str:sub(offset)
break
end
end
return result
end
local function lpm_load_plugins()
package.cpath = replace_string(package.cpath, USERDIR, target_plugin_directory)
package.path = replace_string(package.path, USERDIR, target_plugin_directory)
local no_errors = true
local refused_list = {
userdir = {dir = target_plugin_directory, plugins = {}}
}
local files, ordered = {}, {}
for _, root_dir in ipairs {target_plugin_directory} do
local plugin_dir = root_dir .. PATHSEP .. "plugins"
for _, filename in ipairs(system.list_dir(plugin_dir) or {}) do
if not files[filename] then
table.insert(
ordered, {file = filename}
)
end
-- user plugins will always replace system plugins
files[filename] = plugin_dir
end
end
for _, plugin in ipairs(ordered) do
local dir = files[plugin.file]
local name = plugin.file:match("(.-)%.lua$") or plugin.file
local is_lua_file, details = get_plugin_details(dir .. PATHSEP .. plugin.file)
plugin.valid = is_lua_file
plugin.name = name
plugin.dir = dir
plugin.priority = details and details.priority or 100
plugin.version_match = details and details.version_match or false
plugin.version = details and details.version or {}
plugin.version_string = #plugin.version > 0 and table.concat(plugin.version, ".") or "unknown"
end
-- sort by priority or name for plugins that have same priority
table.sort(ordered, function(a, b)
if a.priority ~= b.priority then
return a.priority < b.priority
end
return a.name < b.name
end)
local load_start = system.get_time()
for _, plugin in ipairs(ordered) do
if plugin.valid then
if not config.skip_plugins_version and not plugin.version_match then
core.log_quiet(
"Version mismatch for plugin %q[%s] from %s",
plugin.name,
plugin.version_string,
plugin.dir
)
local rlist = plugin.dir:find(USERDIR, 1, true) == 1
and 'userdir' or 'datadir'
local list = refused_list[rlist].plugins
table.insert(list, plugin)
elseif config.plugins[plugin.name] ~= false then
local start = system.get_time()
local ok, loaded_plugin = core.try(require, "plugins." .. plugin.name)
if ok then
local plugin_version = ""
if plugin.version_string ~= MOD_VERSION_STRING then
plugin_version = "["..plugin.version_string.."]"
end
core.log_quiet(
"Loaded plugin %q%s from %s in %.1fms",
plugin.name,
plugin_version,
plugin.dir,
(system.get_time() - start) * 1000
)
end
if not ok then
no_errors = false
elseif config.plugins[plugin.name].onload then
core.try(config.plugins[plugin.name].onload, loaded_plugin)
end
end
end
end
core.log_quiet(
"Loaded all managed plugins in %.1fms",
(system.get_time() - load_start) * 1000
)
return no_errors, refused_list
end
local addons = {}
local added_addons = {}
for i,v in ipairs(config.plugins.plugin_manager.addons) do
if type(v) == 'table' then
local string = ""
if v.remote then
string = v.remote
if v.commit or v.branch then
string = string .. ":" .. (v.commit or v.branch)
end
string = string .. "@"
end
if not v.id then error("requires config.plugin_manager.addons entries to have an id") end
string = string .. v.id
if v.version then string = string .. ":" .. v.version end
table.insert(addons, string)
added_addons[v.id] = true
else
table.insert(addons, v)
added_addons[v] = true
end
end
local plugins = system.list_dir(USERDIR .. PATHSEP .. "plugins")
run({ "apply", table.unpack(addons), }, { userdir = target_plugin_directory, cachedir = USERDIR .. PATHSEP .. "lpm" }):done(function(status)
if json.decode(status)["changed"] then command.perform("core:restart") end
end)
lpm_load_plugins()
local old_configs = {}
for i,v in ipairs(plugins or {}) do
local id = v:gsub("%.lua$", "")
if config.plugins[id] ~= false and id ~= "plugin_manager" and not added_addons[id] then
old_configs[id] = config.plugins[id]
config.plugins[id] = false
end
end
end
command.add(nil, {
["plugin-manager:install"] = function()
PluginManager:get_addons({ progress = PluginManager.view.progress_callback })
core.command_view:enter("Enter plugin name",
function(name)
PluginManager:get_addon(name, { progress = PluginManager.view.progress_callback }):done(function(addon)
core.log("Attempting to install plugin " .. name .. "...")
PluginManager:install(addon, { progress = PluginManager.view.progress_callback }):done(function()
core.log("Successfully installed plugin " .. addon.id .. ".")
end)
end):fail(function()
core.error("Unknown plugin " .. name .. ".")
end)
end,
function(text)
local items = {}
if not PluginManager.addons then return end
for i, addon in ipairs(PluginManager.addons) do
if not addon.mod_version or tostring(addon.mod_version) == tostring(MOD_VERSION) and addon.status == "available" then
table.insert(items, addon.id .. ":" .. addon.version)
end
end
return common.fuzzy_match(items, text)
end
)
end,
["plugin-manager:uninstall"] = function()
PluginManager:get_addons({ progress = PluginManager.view.progress_callback })
core.command_view:enter("Enter plugin name",
function(name)
PluginManager:get_addon(name, { progress = PluginManager.view.progress_callback }):done(function(addon)
core.log("Attempting to uninstall plugin " .. addon.id .. "...")
PluginManager:uninstall(addon, { progress = PluginManager.view.progress_callback }):done(function()
core.log("Successfully uninstalled plugin " .. addon.id .. ".")
end)
end):fail(function()
core.error("Unknown plugin " .. name .. ".")
end)
end,
function(text)
local items = {}
if not PluginManager.addons then return end
for i, addon in ipairs(PluginManager.addons) do
if addon.status == "installed" then
table.insert(items, addon.id .. ":" .. addon.version)
end
end
return common.fuzzy_match(items, text)
end
)
end,
["plugin-manager:add-repository"] = function()
core.command_view:enter("Enter repository url",
function(url)
PluginManager:add(url):done(function()
core.log("Successfully added repository " .. url .. ".")
end)
end
)
end,
["plugin-manager:remove-repository"] = function()
PluginManager:get_addons({ progress = PluginManager.view.progress_callback })
core.command_view:enter("Enter repository url",
function(url)
PluginManager:remove(url):done(function()
core.log("Successfully removed repository " .. url .. ".")
end)
end,
function(text)
local items = {}
if PluginManager.repositories then
for i,v in ipairs(PluginManager.repositories) do
table.insert(items, v.remote .. ":" .. (v.commit or v.branch))
end
end
return common.fuzzy_match(items, text)
end
)
end,
["plugin-manager:refresh"] = function() PluginManager:refresh({ progress = PluginManager.view.progress_callback }):done(function() core.log("Successfully refreshed plugin listing.") end) end,
["plugin-manager:upgrade"] = function() PluginManager:upgrade({ progress = PluginManager.view.progress_callback }):done(function() core.log("Successfully upgraded installed plugins.") end) end,
["plugin-manager:purge"] = function() PluginManager:purge({ progress = PluginManager.view.progress_callback }):done(function() core.log("Successfully purged lpm directory.") end) end,
["plugin-manager:show"] = function()
local node = core.root_view:get_active_node_default()
node:add_view(PluginManager.view(PluginManager))
end,
})
if pcall(require, "plugins.terminal") then
local terminal = require "plugins.terminal"
command.add(nil, {
["plugin-manager:open-session"] = function()
local arguments = { "-", "--userdir=" .. USERDIR }
for i,v in ipairs(default_arguments) do table.insert(arguments, v) end
local tv = terminal.class(common.merge(config.plugins.terminal, {
shell = config.plugins.plugin_manager.lpm_binary_path,
arguments = arguments
}))
core.root_view:get_active_node_default():add_view(tv)
end
})
end
return PluginManager
|