File size: 11,438 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 335 336 337 338 339 340 341 342 343 344 345 346 347 | 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 ipairs = _tl_compat and _tl_compat.ipairs or ipairs; local math = _tl_compat and _tl_compat.math or math; local os = _tl_compat and _tl_compat.os or os; local string = _tl_compat and _tl_compat.string or string; local table = _tl_compat and _tl_compat.table or table; local type = type
local show = { Return = {} }
local queries = require("luarocks.queries")
local search = require("luarocks.search")
local dir = require("luarocks.core.dir")
local fs = require("luarocks.fs")
local cfg = require("luarocks.core.cfg")
local util = require("luarocks.util")
local path = require("luarocks.path")
local fetch = require("luarocks.fetch")
local manif = require("luarocks.manif")
local repos = require("luarocks.repos")
function show.add_to_parser(parser)
local cmd = parser:command("show", [[
Show information about an installed rock.
Without any flags, show all module information.
With flags, return only the desired information.]], util.see_also()):
summary("Show information about an installed rock.")
cmd:argument("rock", "Name of an installed rock."):
action(util.namespaced_name_action)
cmd:argument("version", "Rock version."):
args("?")
cmd:flag("--home", "Show home page of project.")
cmd:flag("--modules", "Show all modules provided by the package as used by require().")
cmd:flag("--deps", "Show packages the package depends on.")
cmd:flag("--build-deps", "Show build-only dependencies for the package.")
cmd:flag("--test-deps", "Show dependencies for testing the package.")
cmd:flag("--rockspec", "Show the full path of the rockspec file.")
cmd:flag("--mversion", "Show the package version.")
cmd:flag("--rock-tree", "Show local tree where rock is installed.")
cmd:flag("--rock-namespace", "Show rock namespace.")
cmd:flag("--rock-dir", "Show data directory of the installed rock.")
cmd:flag("--rock-license", "Show rock license.")
cmd:flag("--issues", "Show URL for project's issue tracker.")
cmd:flag("--labels", "List the labels of the rock.")
cmd:flag("--porcelain", "Produce machine-friendly output.")
end
local friendly_template = [[
:
?namespace:${namespace}/${package} ${version} - ${summary}
!namespace:${package} ${version} - ${summary}
:
*detailed :${detailed}
?detailed :
?license :License: \t${license}
?homepage :Homepage: \t${homepage}
?issues :Issues: \t${issues}
?labels :Labels: \t${labels}
?location :Installed in: \t${location}
?commands :
?commands :Commands:
*commands :\t${name} (${file})
?modules :
?modules :Modules:
*modules :\t${name} (${file})
?bdeps :
?bdeps :Has build dependency on:
*bdeps :\t${name} (${label})
?tdeps :
?tdeps :Tests depend on:
*tdeps :\t${name} (${label})
?deps :
?deps :Depends on:
*deps :\t${name} (${label})
?ideps :
?ideps :Indirectly pulling:
*ideps :\t${name} (${label})
:
]]
local porcelain_template = [[
?namespace:namespace\t${namespace}
?package :package\t${package}
?version :version\t${version}
?summary :summary\t${summary}
*detailed :detailed\t${detailed}
?license :license\t${license}
?homepage :homepage\t${homepage}
?issues :issues\t${issues}
?labels :labels\t${labels}
?location :location\t${location}
*commands :command\t${name}\t${file}
*modules :module\t${name}\t${file}
*bdeps :build_dependency\t${name}\t${label}
*tdeps :test_dependency\t${name}\t${label}
*deps :dependency\t${name}\t${label}
*ideps :indirect_dependency\t${name}\t${label}
]]
local function keys_as_string(t, sep)
local keys = util.keys(t)
table.sort(keys)
return table.concat(keys, sep or " ")
end
local function word_wrap(line)
local width = math.tointeger(os.getenv("COLUMNS")) or 80
if width > 80 then width = 80 end
if #line > width then
local brk = width
while brk > 0 and line:sub(brk, brk) ~= " " do
brk = brk - 1
end
if brk > 0 then
return line:sub(1, brk - 1) .. "\n" .. word_wrap(line:sub(brk + 1))
end
end
return line
end
local function format_text(text)
text = text:gsub("^%s*", ""):gsub("%s$", ""):gsub("\n[ \t]+", "\n"):gsub("([^\n])\n([^\n])", "%1 %2")
local paragraphs = util.split_string(text, "\n\n")
for n, line in ipairs(paragraphs) do
paragraphs[n] = word_wrap(line)
end
return (table.concat(paragraphs, "\n\n"):gsub("%s$", ""))
end
local function installed_rock_label(dep, tree)
local installed, version
local rocks_provided = util.get_rocks_provided()
if rocks_provided[dep.name] then
installed, version = true, rocks_provided[dep.name]
else
local name
name, version = search.pick_installed_rock(dep, tree)
installed = name ~= nil
end
return installed and "using " .. version or "missing"
end
local function render(template, data)
local out = {}
for cmd, var, line in template:gmatch("(.)([a-z]*)%s*:([^\n]*)\n") do
line = line:gsub("\\t", "\t")
local d = data[var]
if cmd == " " then
table.insert(out, line)
elseif cmd == "?" or cmd == "*" or cmd == "!" then
if (cmd == "!" and d == nil) or
(cmd ~= "!" and (type(d) == "string" or
(type(d) == "table" and next(d)))) then
local n = type(d) == "table" and #d or 1
if cmd ~= "*" then
n = 1
end
for i = 1, n do
local tbl = cmd == "*" and type(d) == "table" and d[i] or data
if type(tbl) == "string" then
tbl = tbl:gsub("%%", "%%%%")
end
table.insert(out, (line:gsub("${([a-z]+)}", tbl)))
end
end
end
end
return table.concat(out, "\n")
end
local function adjust_path(name, version, basedir, pathname, suffix)
pathname = dir.path(basedir, pathname)
local vpathname = path.versioned_name(pathname, basedir, name, version)
return (fs.exists(vpathname) and
vpathname or
pathname) .. (suffix or "")
end
local function modules_to_list(name, version, repo)
local ret = {}
local rock_manifest = manif.load_rock_manifest(name, version, repo)
local lua_dir = path.deploy_lua_dir(repo)
local lib_dir = path.deploy_lib_dir(repo)
repos.recurse_rock_manifest_entry(rock_manifest.lua, function(pathname)
table.insert(ret, {
name = path.path_to_module(pathname),
file = adjust_path(name, version, lua_dir, pathname),
})
return true
end)
repos.recurse_rock_manifest_entry(rock_manifest.lib, function(pathname)
table.insert(ret, {
name = path.path_to_module(pathname),
file = adjust_path(name, version, lib_dir, pathname),
})
return true
end)
table.sort(ret, function(a, b)
if a.name == b.name then
return a.file < b.file
end
return a.name < b.name
end)
return ret
end
local function commands_to_list(name, version, repo)
local ret = {}
local rock_manifest = manif.load_rock_manifest(name, version, repo)
local bin_dir = path.deploy_bin_dir(repo)
repos.recurse_rock_manifest_entry(rock_manifest.bin, function(pathname)
table.insert(ret, {
name = name,
file = adjust_path(name, version, bin_dir, pathname, cfg.wrapper_suffix),
})
return true
end)
table.sort(ret, function(a, b)
if a.name == b.name then
return a.file < b.file
end
return a.name < b.name
end)
return ret
end
local function deps_to_list(dependencies, tree)
local ret = {}
for _, dep in ipairs(dependencies.queries or {}) do
table.insert(ret, { name = tostring(dep), label = installed_rock_label(dep, tree) })
end
return ret
end
local function indirect_deps(mdeps, rdeps, tree)
local ret = {}
local direct_deps = {}
for _, dep in ipairs(rdeps) do
direct_deps[dep] = true
end
for dep_name in util.sortedpairs(mdeps or {}) do
if not direct_deps[dep_name] then
table.insert(ret, { name = tostring(dep_name), label = installed_rock_label(queries.new(dep_name), tree) })
end
end
return ret
end
local function show_rock(template, namespace, name, version, rockspec, repo, minfo, tree)
local desc = rockspec.description or {}
local data = {
namespace = namespace,
package = rockspec.package,
version = rockspec.version,
summary = desc.summary or "",
detailed = desc.detailed and util.split_string(format_text(desc.detailed), "\n"),
license = desc.license,
homepage = desc.homepage,
issues = desc.issues_url,
labels = desc.labels and table.concat(desc.labels, ", "),
location = path.rocks_tree_to_string(repo),
commands = commands_to_list(name, version, repo),
modules = modules_to_list(name, version, repo),
bdeps = deps_to_list(rockspec.build_dependencies, tree),
tdeps = deps_to_list(rockspec.test_dependencies, tree),
deps = deps_to_list(rockspec.dependencies, tree),
ideps = indirect_deps(minfo.dependencies, rockspec.dependencies, tree),
}
util.printout(render(template, data))
end
function show.command(args)
local query = queries.new(args.rock, args.namespace, args.version, true)
local name, version, repo, repo_url = search.pick_installed_rock(query, args.tree)
if not name then
return nil, version
end
local tree = path.rocks_tree_to_string(repo)
local directory = path.install_dir(name, version, repo)
local namespace = path.read_namespace(name, version, tree)
local rockspec_file = path.rockspec_file(name, version, repo)
local rockspec, err = fetch.load_local_rockspec(rockspec_file)
if not rockspec then return nil, err end
local descript = rockspec.description or {}
local manifest, manifest_err = manif.load_manifest(repo_url)
if not manifest then return nil, manifest_err end
local minfo = manifest.repository[name][version][1]
if args.rock_tree then util.printout(tree)
elseif args.rock_namespace then util.printout(namespace)
elseif args.rock_dir then util.printout(directory)
elseif args.home then util.printout(descript.homepage)
elseif args.rock_license then util.printout(descript.license)
elseif args.issues then util.printout(descript.issues_url)
elseif args.labels then util.printout(descript.labels and table.concat(descript.labels, "\n"))
elseif args.modules then util.printout(keys_as_string(minfo.modules, "\n"))
elseif args.deps then
for _, dep in ipairs(rockspec.dependencies) do
util.printout(tostring(dep))
end
elseif args.build_deps then
for _, dep in ipairs(rockspec.build_dependencies) do
util.printout(tostring(dep))
end
elseif args.test_deps then
for _, dep in ipairs(rockspec.test_dependencies) do
util.printout(tostring(dep))
end
elseif args.rockspec then util.printout(rockspec_file)
elseif args.mversion then util.printout(version)
elseif args.porcelain then
show_rock(porcelain_template, namespace, name, version, rockspec, repo, minfo, args.tree)
else
show_rock(friendly_template, namespace, name, version, rockspec, repo, minfo, args.tree)
end
return true
end
return show
|