File size: 5,997 Bytes
d7c5875 | 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 | local _tl_compat; if (tonumber((_VERSION or ''):match('[%d.]*$')) or 0) < 5.3 then local p, m = pcall(require, 'compat53.module'); if p then _tl_compat = m end end; local debug = _tl_compat and _tl_compat.debug or debug; local io = _tl_compat and _tl_compat.io or io; local ipairs = _tl_compat and _tl_compat.ipairs or ipairs; local package = _tl_compat and _tl_compat.package or package; local pairs = _tl_compat and _tl_compat.pairs or pairs; local pcall = _tl_compat and _tl_compat.pcall or pcall; local string = _tl_compat and _tl_compat.string or string; local table = _tl_compat and _tl_compat.table or table; local type = type
local loaders = package.loaders or package.searchers
local require, ipairs, table, type, next, tostring, error =
require, ipairs, table, type, next, tostring, error
local loader = {}
local is_clean = not package.loaded["luarocks.core.cfg"]
local cfg = require("luarocks.core.cfg")
local cfg_ok, _err = cfg.init()
if cfg_ok then
cfg.init_package_paths()
end
local path = require("luarocks.core.path")
local manif = require("luarocks.core.manif")
local vers = require("luarocks.core.vers")
local temporary_global = false
local status, luarocks_value = pcall(function()
return luarocks
end)
if status and luarocks_value then
luarocks.loader = loader
else
local info = debug and debug.getinfo(2, "nS")
if info and info.what == "C" and not info.name then
luarocks = { loader = loader }
temporary_global = true
end
end
loader.context = {}
function loader.add_context(name, version)
if temporary_global then
luarocks = nil
temporary_global = false
end
local tree_manifests = manif.load_rocks_tree_manifests()
if not tree_manifests then
return
end
manif.scan_dependencies(name, version, tree_manifests, loader.context)
end
local function sort_versions(a, b)
return a.version > b.version
end
local function call_other_loaders(module, name, version, module_name)
for _, a_loader in ipairs(loaders) do
if a_loader ~= loader.luarocks_loader then
local results = { a_loader(module_name) }
local f = results[1]
if type(f) == "function" then
if #results == 2 then
return f, results[2]
else
return f
end
end
end
end
return "Failed loading module " .. module .. " in LuaRocks rock " .. name .. " " .. version
end
local function add_providers(providers, entries, tree, module, filter_name)
for i, entry in ipairs(entries) do
local name, version = entry:match("^([^/]*)/(.*)$")
local file_name = tree.manifest.repository[name][version][1].modules[module]
if type(file_name) ~= "string" then
error("Invalid data in manifest file for module " .. tostring(module) .. " (invalid data for " .. tostring(name) .. " " .. tostring(version) .. ")")
end
file_name = filter_name(file_name, name, version, tree.tree, i)
if loader.context[name] == version then
return name, version, file_name
end
table.insert(providers, {
name = name,
version = vers.parse_version(version),
module_name = file_name,
tree = tree,
})
end
end
local function select_module(module, filter_name)
local tree_manifests = manif.load_rocks_tree_manifests()
if not tree_manifests then
return nil
end
local providers = {}
local initmodule
for _, tree in ipairs(tree_manifests) do
local entries = tree.manifest.modules[module]
if entries then
local n, v, f = add_providers(providers, entries, tree, module, filter_name)
if n then
return n, v, f
end
else
initmodule = initmodule or module .. ".init"
entries = tree.manifest.modules[initmodule]
if entries then
local n, v, f = add_providers(providers, entries, tree, initmodule, filter_name)
if n then
return n, v, f
end
end
end
end
if next(providers) then
table.sort(providers, sort_versions)
local first = providers[1]
return first.name, first.version.string, first.module_name
end
end
local function filter_module_name(file_name, name, version, _tree, i)
if i > 1 then
file_name = path.versioned_name(file_name, "", name, version)
end
return path.path_to_module(file_name)
end
local function pick_module(module)
return select_module(module, filter_module_name)
end
function loader.which(module, where)
where = where or "l"
if where:match("l") then
local rock_name, rock_version, file_name = select_module(module, path.which_i)
if rock_name then
local fd = io.open(file_name)
if fd then
fd:close()
return file_name, rock_name, rock_version, "l"
end
end
end
if where:match("p") then
local modpath = module:gsub("%.", "/")
for _, v in ipairs({ package.path, package.cpath }) do
for p in v:gmatch("([^;]+)") do
local file_name = p:gsub("%?", modpath)
local fd = io.open(file_name)
if fd then
fd:close()
return file_name, v, nil, "p"
end
end
end
end
end
function loader.luarocks_loader(module)
local name, version, module_name = pick_module(module)
if not name then
return "No LuaRocks module found for " .. module
else
loader.add_context(name, version)
return call_other_loaders(module, name, version, module_name)
end
end
table.insert(loaders, 1, loader.luarocks_loader)
if is_clean then
for modname, _ in pairs(package.loaded) do
if modname:match("^luarocks%.") then
package.loaded[modname] = nil
end
end
end
return loader
|