This commit is contained in:
committed by
GitHub
parent
82ec79aac5
commit
f85af83f13
@@ -2,8 +2,39 @@ local uv = vim.loop
|
|||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
local function get_dir_git_status(parent_ignored, status, absolute_path)
|
||||||
|
if parent_ignored then
|
||||||
|
return "!!"
|
||||||
|
end
|
||||||
|
local dir_status = status.dirs and status.dirs[absolute_path]
|
||||||
|
local file_status = status.files and status.files[absolute_path]
|
||||||
|
return dir_status or file_status
|
||||||
|
end
|
||||||
|
|
||||||
|
local function get_git_status(parent_ignored, status, absolute_path)
|
||||||
|
return parent_ignored and "!!" or status.files and status.files[absolute_path]
|
||||||
|
end
|
||||||
|
|
||||||
function M.has_one_child_folder(node)
|
function M.has_one_child_folder(node)
|
||||||
return #node.nodes == 1 and node.nodes[1].nodes and uv.fs_access(node.nodes[1].absolute_path, "R")
|
return #node.nodes == 1 and node.nodes[1].nodes and uv.fs_access(node.nodes[1].absolute_path, "R")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function M.update_git_status(node, parent_ignored, status)
|
||||||
|
-- status of the node's absolute path
|
||||||
|
if node.nodes then
|
||||||
|
node.git_status = get_dir_git_status(parent_ignored, status, node.absolute_path)
|
||||||
|
else
|
||||||
|
node.git_status = get_git_status(parent_ignored, status, node.absolute_path)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- status of the link target, if the link itself is not dirty
|
||||||
|
if node.link_to and not node.git_status then
|
||||||
|
if node.nodes then
|
||||||
|
node.git_status = get_dir_git_status(parent_ignored, status, node.link_to)
|
||||||
|
else
|
||||||
|
node.git_status = get_git_status(parent_ignored, status, node.link_to)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|||||||
@@ -29,16 +29,21 @@ local function populate_children(handle, cwd, node, status)
|
|||||||
and not filters.should_ignore_git(abs, status.files)
|
and not filters.should_ignore_git(abs, status.files)
|
||||||
and not nodes_by_path[abs]
|
and not nodes_by_path[abs]
|
||||||
then
|
then
|
||||||
|
local child = nil
|
||||||
if t == "directory" and uv.fs_access(abs, "R") then
|
if t == "directory" and uv.fs_access(abs, "R") then
|
||||||
table.insert(node.nodes, builders.folder(node, abs, name, status, node_ignored))
|
child = builders.folder(node, abs, name, status, node_ignored)
|
||||||
elseif t == "file" then
|
elseif t == "file" then
|
||||||
table.insert(node.nodes, builders.file(node, abs, name, status, node_ignored))
|
child = builders.file(node, abs, name, status, node_ignored)
|
||||||
elseif t == "link" then
|
elseif t == "link" then
|
||||||
local link = builders.link(node, abs, name, status, node_ignored)
|
local link = builders.link(node, abs, name, status, node_ignored)
|
||||||
if link.link_to ~= nil then
|
if link.link_to ~= nil then
|
||||||
table.insert(node.nodes, link)
|
child = link
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if child then
|
||||||
|
table.insert(node.nodes, child)
|
||||||
|
common.update_git_status(child, node_ignored, status)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -5,27 +5,13 @@ local M = {
|
|||||||
is_windows = vim.fn.has "win32" == 1,
|
is_windows = vim.fn.has "win32" == 1,
|
||||||
}
|
}
|
||||||
|
|
||||||
function M.get_dir_git_status(parent_ignored, status, absolute_path)
|
function M.folder(parent, absolute_path, name)
|
||||||
if parent_ignored then
|
|
||||||
return "!!"
|
|
||||||
end
|
|
||||||
local dir_status = status.dirs and status.dirs[absolute_path]
|
|
||||||
local file_status = status.files and status.files[absolute_path]
|
|
||||||
return dir_status or file_status
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.get_git_status(parent_ignored, status, absolute_path)
|
|
||||||
return parent_ignored and "!!" or status.files and status.files[absolute_path]
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.folder(parent, absolute_path, name, status, parent_ignored)
|
|
||||||
local handle = uv.fs_scandir(absolute_path)
|
local handle = uv.fs_scandir(absolute_path)
|
||||||
local has_children = handle and uv.fs_scandir_next(handle) ~= nil
|
local has_children = handle and uv.fs_scandir_next(handle) ~= nil
|
||||||
|
|
||||||
return {
|
return {
|
||||||
absolute_path = absolute_path,
|
absolute_path = absolute_path,
|
||||||
fs_stat = uv.fs_stat(absolute_path),
|
fs_stat = uv.fs_stat(absolute_path),
|
||||||
git_status = M.get_dir_git_status(parent_ignored, status, absolute_path),
|
|
||||||
group_next = nil, -- If node is grouped, this points to the next child dir/link node
|
group_next = nil, -- If node is grouped, this points to the next child dir/link node
|
||||||
has_children = has_children,
|
has_children = has_children,
|
||||||
name = name,
|
name = name,
|
||||||
@@ -42,7 +28,7 @@ local function is_executable(absolute_path, ext)
|
|||||||
return uv.fs_access(absolute_path, "X")
|
return uv.fs_access(absolute_path, "X")
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.file(parent, absolute_path, name, status, parent_ignored)
|
function M.file(parent, absolute_path, name)
|
||||||
local ext = string.match(name, ".?[^.]+%.(.*)") or ""
|
local ext = string.match(name, ".?[^.]+%.(.*)") or ""
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -50,7 +36,6 @@ function M.file(parent, absolute_path, name, status, parent_ignored)
|
|||||||
executable = is_executable(absolute_path, ext),
|
executable = is_executable(absolute_path, ext),
|
||||||
extension = ext,
|
extension = ext,
|
||||||
fs_stat = uv.fs_stat(absolute_path),
|
fs_stat = uv.fs_stat(absolute_path),
|
||||||
git_status = M.get_git_status(parent_ignored, status, absolute_path),
|
|
||||||
name = name,
|
name = name,
|
||||||
parent = parent,
|
parent = parent,
|
||||||
}
|
}
|
||||||
@@ -61,7 +46,7 @@ end
|
|||||||
-- links (for instance libr2.so in /usr/lib) and thus even with a C program realpath fails
|
-- links (for instance libr2.so in /usr/lib) and thus even with a C program realpath fails
|
||||||
-- when it has no real reason to. Maybe there is a reason, but errno is definitely wrong.
|
-- when it has no real reason to. Maybe there is a reason, but errno is definitely wrong.
|
||||||
-- So we need to check for link_to ~= nil when adding new links to the main tree
|
-- So we need to check for link_to ~= nil when adding new links to the main tree
|
||||||
function M.link(parent, absolute_path, name, status, parent_ignored)
|
function M.link(parent, absolute_path, name)
|
||||||
--- I dont know if this is needed, because in my understanding, there isnt hard links in windows, but just to be sure i changed it.
|
--- I dont know if this is needed, because in my understanding, there isnt hard links in windows, but just to be sure i changed it.
|
||||||
local link_to = uv.fs_realpath(absolute_path)
|
local link_to = uv.fs_realpath(absolute_path)
|
||||||
local open, nodes, has_children
|
local open, nodes, has_children
|
||||||
@@ -75,7 +60,6 @@ function M.link(parent, absolute_path, name, status, parent_ignored)
|
|||||||
return {
|
return {
|
||||||
absolute_path = absolute_path,
|
absolute_path = absolute_path,
|
||||||
fs_stat = uv.fs_stat(absolute_path),
|
fs_stat = uv.fs_stat(absolute_path),
|
||||||
git_status = M.get_git_status(parent_ignored, status, absolute_path),
|
|
||||||
group_next = nil, -- If node is grouped, this points to the next child dir/link node
|
group_next = nil, -- If node is grouped, this points to the next child dir/link node
|
||||||
has_children = has_children,
|
has_children = has_children,
|
||||||
link_to = link_to,
|
link_to = link_to,
|
||||||
|
|||||||
@@ -12,11 +12,7 @@ local M = {}
|
|||||||
local function update_status(nodes_by_path, node_ignored, status)
|
local function update_status(nodes_by_path, node_ignored, status)
|
||||||
return function(node)
|
return function(node)
|
||||||
if nodes_by_path[node.absolute_path] then
|
if nodes_by_path[node.absolute_path] then
|
||||||
if node.nodes then
|
common.update_git_status(node, node_ignored, status)
|
||||||
node.git_status = builders.get_dir_git_status(node_ignored, status, node.absolute_path)
|
|
||||||
else
|
|
||||||
node.git_status = builders.get_git_status(node_ignored, status, node.absolute_path)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
return node
|
return node
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user