--- A module which installs a Lua package loader that is LuaRocks-aware. -- This loader uses dependency information from the LuaRocks tree to load -- correct versions of modules. It does this by constructing a "context" -- table in the environment, which records which versions of packages were -- used to load previous modules, so that the loader chooses versions -- that are declared to be compatible with the ones loaded earlier. local loaders = package.loaders or package.searchers local package, require, ipairs, table, type, next, tostring, error = package, require, ipairs, table, type, next, tostring, error local unpack = unpack or table.unpack --module("luarocks.loader") local loader = {} package.loaded["luarocks.loader"] = loader local cfg = require("luarocks.cfg") cfg.init_package_paths() local path = require("luarocks.path") local manif_core = require("luarocks.manif_core") local deps = require("luarocks.deps") local util = require("luarocks.util") -- Workaround for wrappers produced by older versions of LuaRocks local temporary_global = false if luarocks then -- The site_config.lua file generated by old versions uses module(), -- so it produces a global `luarocks` table. Since we have the table, -- add the `loader` field to make the old wrappers happy. luarocks.loader = loader else -- When a new version is installed on top of an old version, -- site_config.lua may be replaced, and then it no longer creates -- a global. -- Detect when being called via -lluarocks.loader; this is -- most likely a wrapper. local info = debug.getinfo(2, "nS") if info.what == "C" and not info.name then luarocks = { loader = loader } temporary_global = true -- For the other half of this hack, -- see the next use of `temporary_global` below. end end loader.context = {} -- Contains a table when rocks trees are loaded, -- or 'false' to indicate rocks trees failed to load. -- 'nil' indicates rocks trees were not attempted to be loaded yet. loader.rocks_trees = nil local function load_rocks_trees() local any_ok = false local trees = {} for _, tree in ipairs(cfg.rocks_trees) do local manifest, err = manif_core.load_local_manifest(path.rocks_dir(tree)) if manifest then any_ok = true table.insert(trees, {tree=tree, manifest=manifest}) end end if not any_ok then loader.rocks_trees = false return false end loader.rocks_trees = trees return true end --- Process the dependencies of a package to determine its dependency -- chain for loading modules. -- @param name string: The name of an installed rock. -- @param version string: The version of the rock, in string format function loader.add_context(name, version) -- assert(type(name) == "string") -- assert(type(version) == "string") if temporary_global then -- The first thing a wrapper does is to call add_context. -- From here on, it's safe to clean the global environment. luarocks = nil temporary_global = false end if loader.context[name] then return end loader.context[name] = version if not loader.rocks_trees and not load_rocks_trees() then return nil end for _, tree in ipairs(loader.rocks_trees) do local manifest = tree.manifest local pkgdeps if manifest.dependencies and manifest.dependencies[name] then pkgdeps = manifest.dependencies[name][version] end if not pkgdeps then return nil end for _, dep in ipairs(pkgdeps) do local pkg, constraints = dep.name, dep.constraints for _, tree in ipairs(loader.rocks_trees) do local entries = tree.manifest.repository[pkg] if entries then for version, pkgs in util.sortedpairs(entries, deps.compare_versions) do if (not constraints) or deps.match_constraints(deps.parse_version(version), constraints) then loader.add_context(pkg, version) end end end end end end end --- Internal sorting function. -- @param a table: A provider table. -- @param b table: Another provider table. -- @return boolean: True if the version of a is greater than that of b. local function sort_versions(a,b) return a.version > b.version end --- Request module to be loaded through other loaders, -- once the proper name of the module has been determined. -- For example, in case the module "socket.core" has been requested -- to the LuaRocks loader and it determined based on context that -- the version 2.0.2 needs to be loaded and it is not the current -- version, the module requested for the other loaders will be -- "socket.core_2_0_2". -- @param module The module name requested by the user, such as "socket.core" -- @param name The rock name, such as "luasocket" -- @param version The rock version, such as "2.0.2-1" -- @param module_name The actual module name, such as "socket.core" or "socket.core_2_0_2". -- @return table or (nil, string): The module table as returned by some other loader, -- or nil followed by an error message if no other loader managed to load the module. local function call_other_loaders(module, name, version, module_name) for i, a_loader in ipairs(loaders) do if a_loader ~= loader.luarocks_loader then local results = { a_loader(module_name) } if type(results[1]) == "function" then return unpack(results) end end end return "Failed loading module "..module.." in LuaRocks rock "..name.." "..version end --- Search for a module in the rocks trees -- @param module string: module name (eg. "socket.core") -- @param filter_file_name function(string, string, string, string, number): -- a function that takes the module file name (eg "socket/core.so"), the rock name -- (eg "luasocket"), the version (eg "2.0.2-1"), the path of the rocks tree -- (eg "/usr/local"), and the numeric index of the matching entry, so the -- filter function can know if the matching module was the first entry or not. -- @return string, string, string, (string or table): -- * name of the rock containing the module (eg. "luasocket") -- * version of the rock (eg. "2.0.2-1") -- * return value of filter_file_name -- * tree of the module (string or table in `rocks_trees` format) local function select_module(module, filter_file_name) --assert(type(module) == "string") --assert(type(filter_module_name) == "function") if not loader.rocks_trees and not load_rocks_trees() then return nil end local providers = {} for _, tree in ipairs(loader.rocks_trees) do local entries = tree.manifest.modules[module] if entries then 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_file_name(file_name, name, version, tree.tree, i) if loader.context[name] == version then return name, version, file_name end version = deps.parse_version(version) table.insert(providers, {name = name, version = version, module_name = file_name, tree = tree}) 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, first.tree end end --- Search for a module -- @param module string: module name (eg. "socket.core") -- @return string, string, string, (string or table): -- * name of the rock containing the module (eg. "luasocket") -- * version of the rock (eg. "2.0.2-1") -- * name of the module (eg. "socket.core", or "socket.core_2_0_2" if file is stored versioned). -- * tree of the module (string or table in `rocks_trees` format) local function pick_module(module) return select_module(module, function(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) end --- Return the pathname of the file that would be loaded for a module. -- @param module string: module name (eg. "socket.core") -- @return string: filename of the module (eg. "/usr/local/lib/lua/5.1/socket/core.so") function loader.which(module) local _, _, file_name = select_module(module, path.which_i) return file_name end --- Package loader for LuaRocks support. -- A module is searched in installed rocks that match the -- current LuaRocks context. If module is not part of the -- context, or if a context has not yet been set, the module -- in the package with the highest version is used. -- @param module string: The module name, like in plain require(). -- @return table: The module table (typically), like in plain -- require(). See require() -- in the Lua reference manual for details. 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) return loader