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
|
local EventEmitter = require "mason-core.EventEmitter"
local InstallLocation = require "mason-core.installer.InstallLocation"
local Optional = require "mason-core.optional"
local _ = require "mason-core.functional"
local fs = require "mason-core.fs"
local log = require "mason-core.log"
local path = require "mason-core.path"
local sources = require "mason-registry.sources"
---@class RegistrySource
---@field id string
---@field get_package fun(self: RegistrySource, pkg_name: string): Package?
---@field get_all_package_names fun(self: RegistrySource): string[]
---@field get_all_package_specs fun(self: RegistrySource): PackageSpec[] | RegistryPackageSpec[]
---@field get_display_name fun(self: RegistrySource): string
---@field is_installed fun(self: RegistrySource): boolean
---@field get_installer fun(self: RegistrySource): Optional # Optional<async fun (): Result>
---@class MasonRegistry : EventEmitter
---@diagnostic disable-next-line: assign-type-mismatch
local M = setmetatable({}, { __index = EventEmitter })
EventEmitter.init(M)
---@type fun(location: InstallLocation): table<string, true>
local scan_install_root
do
---@type table<string, true>?
local cached_dirs
local get_directories = _.compose(
_.set_of,
_.filter_map(function(entry)
if entry.type == "directory" then
return Optional.of(entry.name)
else
return Optional.empty()
end
end)
)
---@param location InstallLocation
---@return table<string, true>
scan_install_root = function(location)
if cached_dirs then
return cached_dirs
end
log.trace "Scanning installation root dir"
local ok, entries = pcall(fs.sync.readdir, location:package())
if not ok then
log.debug("Failed to scan installation root dir", entries)
-- presume installation root dir has not been created yet (i.e., no packages installed)
return {}
end
cached_dirs = get_directories(entries)
vim.schedule(function()
cached_dirs = nil
end)
log.trace("Resolved installation root dirs", cached_dirs)
return cached_dirs
end
end
---Checks whether the provided package name is installed.
---In many situations, this is a more efficient option than the Package:is_installed() method due to a smaller amount of
---modules required to load.
---@param package_name string
function M.is_installed(package_name)
return scan_install_root(InstallLocation.global())[package_name] == true
end
---Returns an instance of the Package class if the provided package name exists. This function errors if a package cannot be found.
---@param package_name string
---@return Package
function M.get_package(package_name)
for source in sources.iter() do
local pkg = source:get_package(package_name)
if pkg then
return pkg
end
end
log.fmt_error("Cannot find package %q.", package_name)
error(("Cannot find package %q."):format(package_name))
end
---Returns true if the provided package_name can be found in the registry.
---@param package_name string
---@return boolean
function M.has_package(package_name)
local ok = pcall(M.get_package, package_name)
return ok
end
local get_packages = _.map(M.get_package)
---Returns all installed package names. This is a fast function that doesn't load any extra modules.
---@return string[]
function M.get_installed_package_names()
return _.keys(scan_install_root(InstallLocation.global()))
end
---Returns all installed package instances. This is a slower function that loads more modules.
---@return Package[]
function M.get_installed_packages()
return get_packages(M.get_installed_package_names())
end
---Returns all package names. This is a fast function that doesn't load any extra modules.
---@return string[]
function M.get_all_package_names()
local pkgs = {}
for source in sources.iter() do
for _, name in ipairs(source:get_all_package_names()) do
pkgs[name] = true
end
end
return _.keys(pkgs)
end
---Returns all package instances. This is a slower function that loads more modules.
---@return Package[]
function M.get_all_packages()
return get_packages(M.get_all_package_names())
end
---@return RegistryPackageSpec[]
function M.get_all_package_specs()
local specs = {}
for source in sources.iter() do
vim.list_extend(specs, source:get_all_package_specs())
end
return _.uniq_by(_.prop "name", specs)
end
local STATE_FILE = path.concat {
vim.fn.stdpath((vim.fn.has "nvim-0.8.0" == 1) and "state" or "cache"),
"mason-registry-update",
}
---@param time integer
local function get_store_age(time)
local checksum = sources.checksum()
if fs.sync.file_exists(STATE_FILE) then
local parse_state_file =
_.compose(_.evolve { timestamp = tonumber }, _.zip_table { "checksum", "timestamp" }, _.split "\n")
local state = parse_state_file(fs.sync.read_file(STATE_FILE))
if checksum == state.checksum then
return math.abs(time - state.timestamp)
end
end
return time
end
---@param time integer
local function update_store_timestamp(time)
local dir = vim.fn.fnamemodify(STATE_FILE, ":h")
if not fs.sync.dir_exists(dir) then
fs.sync.mkdirp(dir)
end
fs.sync.write_file(STATE_FILE, _.join("\n", { sources.checksum(), tostring(time) }))
end
---@param callback? fun(success: boolean, updated_registries: RegistrySource[])
function M.update(callback)
local a = require "mason-core.async"
return a.run(require("mason-registry.installer").run, function(success, result)
if not callback then
return
end
if not success then
return callback(false, result)
end
result
:on_success(function(value)
callback(true, value)
end)
:on_failure(function(err)
callback(false, err)
end)
end)
end
local REGISTRY_STORE_TTL = 86400 -- 24 hrs
---@param cb? fun()
function M.refresh(cb)
local a = require "mason-core.async"
---@async
local function refresh()
a.scheduler()
local is_outdated = get_store_age(os.time()) > REGISTRY_STORE_TTL
if is_outdated or not sources.is_installed() then
if a.wait(M.update) then
a.scheduler()
update_store_timestamp(os.time())
end
end
end
if not cb then
a.run_blocking(refresh)
else
a.run(refresh, cb)
end
end
---@type table<string, string[]>
local aliases = {}
---Register aliases for the specified packages
---@param new_aliases table<string, string[]>
function M.register_package_aliases(new_aliases)
for pkg_name, pkg_aliases in pairs(new_aliases) do
aliases[pkg_name] = aliases[pkg_name] or {}
for _, alias in pairs(pkg_aliases) do
if alias ~= pkg_name then
table.insert(aliases[pkg_name], alias)
end
end
end
end
---@param name string
function M.get_package_aliases(name)
return aliases[name] or {}
end
return M
|