File size: 5,181 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 | 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 assert = _tl_compat and _tl_compat.assert or assert; local io = _tl_compat and _tl_compat.io or io; local package = _tl_compat and _tl_compat.package or package; local string = _tl_compat and _tl_compat.string or string; local table = _tl_compat and _tl_compat.table or table; local type = type
local cfg = require("luarocks.core.cfg")
local core = require("luarocks.core.path")
local dir = require("luarocks.dir")
local util = require("luarocks.core.util")
local path = {}
path.rocks_dir = core.rocks_dir
path.versioned_name = core.versioned_name
path.path_to_module = core.path_to_module
path.deploy_lua_dir = core.deploy_lua_dir
path.deploy_lib_dir = core.deploy_lib_dir
path.map_trees = core.map_trees
path.rocks_tree_to_string = core.rocks_tree_to_string
function path.root_dir(tree)
if type(tree) == "string" then
return tree
else
return tree.root
end
end
function path.rockspec_name_from_rock(rock_name)
local base_name = dir.base_name(rock_name)
return base_name:match("(.*)%.[^.]*.rock") .. ".rockspec"
end
function path.root_from_rocks_dir(rocks_dir)
return rocks_dir:match("(.*)" .. util.matchquote(cfg.rocks_subdir) .. ".*$")
end
function path.deploy_bin_dir(tree)
return dir.path(path.root_dir(tree), "bin")
end
function path.manifest_file(tree)
return dir.path(path.rocks_dir(tree), "manifest")
end
function path.versions_dir(name, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name)
end
function path.install_dir(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version)
end
function path.rockspec_file(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version, name .. "-" .. version .. ".rockspec")
end
function path.rock_manifest_file(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version, "rock_manifest")
end
function path.rock_namespace_file(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version, "rock_namespace")
end
function path.lib_dir(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version, "lib")
end
function path.lua_dir(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version, "lua")
end
function path.doc_dir(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version, "doc")
end
function path.conf_dir(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version, "conf")
end
function path.bin_dir(name, version, tree)
assert(not name:match("/"))
return dir.path(path.rocks_dir(tree), name, version, "bin")
end
function path.parse_name(file_name)
if file_name:match("%.rock$") then
return dir.base_name(file_name):match("(.*)-([^-]+-%d+)%.([^.]+)%.rock$")
else
return dir.base_name(file_name):match("(.*)-([^-]+-%d+)%.(rockspec)")
end
end
function path.make_url(pathname, name, version, arch)
assert(not name:match("/"))
local filename = name .. "-" .. version
if arch == "installed" then
filename = dir.path(name, version, filename .. ".rockspec")
elseif arch == "rockspec" then
filename = filename .. ".rockspec"
else
filename = filename .. "." .. arch .. ".rock"
end
return dir.path(pathname, filename)
end
function path.module_to_path(mod)
return (mod:gsub("[^.]*$", ""):gsub("%.", "/"))
end
function path.use_tree(tree)
cfg.root_dir = tree
cfg.rocks_dir = path.rocks_dir(tree)
cfg.deploy_bin_dir = path.deploy_bin_dir(tree)
cfg.deploy_lua_dir = path.deploy_lua_dir(tree)
cfg.deploy_lib_dir = path.deploy_lib_dir(tree)
end
function path.add_to_package_paths(tree)
package.path = dir.path(path.deploy_lua_dir(tree), "?.lua") .. ";" ..
dir.path(path.deploy_lua_dir(tree), "?/init.lua") .. ";" ..
package.path
package.cpath = dir.path(path.deploy_lib_dir(tree), "?." .. cfg.lib_extension) .. ";" ..
package.cpath
end
function path.read_namespace(name, version, tree)
assert(not name:match("/"))
local namespace
local fd = io.open(path.rock_namespace_file(name, version, tree), "r")
if fd then
namespace = fd:read("*a")
fd:close()
end
return namespace
end
function path.package_paths(deps_mode)
local lpaths = {}
local lcpaths = {}
path.map_trees(deps_mode, function(tree)
local root = path.root_dir(tree)
table.insert(lpaths, dir.path(root, cfg.lua_modules_path, "?.lua"))
table.insert(lpaths, dir.path(root, cfg.lua_modules_path, "?/init.lua"))
table.insert(lcpaths, dir.path(root, cfg.lib_modules_path, "?." .. cfg.lib_extension))
end)
return table.concat(lpaths, ";"), table.concat(lcpaths, ";")
end
return path
|