2022-01-02 11:38:39 +00:00
|
|
|
local lualine_require = require('lualine_require')
|
2022-02-01 08:04:03 +00:00
|
|
|
local modules = lualine_require.lazy_require {
|
2021-10-11 12:37:09 +00:00
|
|
|
utils = 'lualine.utils.utils',
|
|
|
|
Job = 'lualine.utils.job',
|
2022-02-01 08:04:03 +00:00
|
|
|
}
|
2021-10-11 12:37:09 +00:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
-- Vars
|
|
|
|
-- variable to store git diff stats
|
|
|
|
local git_diff = nil
|
|
|
|
-- accumulates output from diff process
|
|
|
|
local diff_output_cache = {}
|
|
|
|
-- variable to store git_diff job
|
|
|
|
local diff_job = nil
|
|
|
|
|
|
|
|
local active_bufnr = '0'
|
|
|
|
local diff_cache = {} -- Stores last known value of diff of a buffer
|
|
|
|
|
2021-10-12 14:04:47 +00:00
|
|
|
---initialize the module
|
|
|
|
---param opts table
|
2021-10-11 12:37:09 +00:00
|
|
|
function M.init(opts)
|
|
|
|
if type(opts.source) == 'function' then
|
|
|
|
M.src = opts.source
|
|
|
|
else
|
|
|
|
modules.utils.define_autocmd('BufEnter', "lua require'lualine.components.diff.git_diff'.update_diff_args()")
|
|
|
|
modules.utils.define_autocmd('BufWritePost', "lua require'lualine.components.diff.git_diff'.update_git_diff()")
|
|
|
|
M.update_diff_args()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-12 14:04:47 +00:00
|
|
|
---Api to get git sign count
|
|
|
|
---scheme :
|
|
|
|
---{
|
|
|
|
--- added = added_count,
|
|
|
|
--- modified = modified_count,
|
|
|
|
--- removed = removed_count,
|
|
|
|
---}
|
|
|
|
---error_code = { added = -1, modified = -1, removed = -1 }
|
|
|
|
---@param bufnr number|nil
|
2021-10-11 12:37:09 +00:00
|
|
|
function M.get_sign_count(bufnr)
|
|
|
|
if bufnr then
|
|
|
|
return diff_cache[bufnr]
|
|
|
|
end
|
|
|
|
if M.src then
|
|
|
|
git_diff = M.src()
|
2022-01-04 13:17:16 +00:00
|
|
|
diff_cache[vim.api.nvim_get_current_buf()] = git_diff
|
2021-10-11 12:37:09 +00:00
|
|
|
elseif vim.g.actual_curbuf ~= nil and active_bufnr ~= vim.g.actual_curbuf then
|
2021-10-22 13:10:33 +00:00
|
|
|
-- Workaround for https://github.com/nvim-lualine/lualine.nvim/issues/286
|
2021-10-11 12:37:09 +00:00
|
|
|
-- See upstream issue https://github.com/neovim/neovim/issues/15300
|
|
|
|
-- Diff is out of sync re sync it.
|
|
|
|
M.update_diff_args()
|
|
|
|
end
|
|
|
|
return git_diff
|
|
|
|
end
|
|
|
|
|
2021-10-12 14:04:47 +00:00
|
|
|
---process diff data and update git_diff{ added, removed, modified }
|
|
|
|
---@param data string output on stdout od git diff job
|
2021-10-11 12:37:09 +00:00
|
|
|
local function process_diff(data)
|
|
|
|
-- Adapted from https://github.com/wbthomason/nvim-vcs.lua
|
|
|
|
local added, removed, modified = 0, 0, 0
|
|
|
|
for _, line in ipairs(data) do
|
|
|
|
if string.find(line, [[^@@ ]]) then
|
|
|
|
local tokens = vim.fn.matchlist(line, [[^@@ -\v(\d+),?(\d*) \+(\d+),?(\d*)]])
|
|
|
|
local line_stats = {
|
|
|
|
mod_count = tokens[3] == nil and 0 or tokens[3] == '' and 1 or tonumber(tokens[3]),
|
|
|
|
new_count = tokens[5] == nil and 0 or tokens[5] == '' and 1 or tonumber(tokens[5]),
|
|
|
|
}
|
|
|
|
|
|
|
|
if line_stats.mod_count == 0 and line_stats.new_count > 0 then
|
|
|
|
added = added + line_stats.new_count
|
|
|
|
elseif line_stats.mod_count > 0 and line_stats.new_count == 0 then
|
|
|
|
removed = removed + line_stats.mod_count
|
|
|
|
else
|
|
|
|
local min = math.min(line_stats.mod_count, line_stats.new_count)
|
|
|
|
modified = modified + min
|
|
|
|
added = added + line_stats.new_count - min
|
|
|
|
removed = removed + line_stats.mod_count - min
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
git_diff = { added = added, modified = modified, removed = removed }
|
|
|
|
end
|
|
|
|
|
2021-10-12 14:04:47 +00:00
|
|
|
---updates the job args
|
2021-10-11 12:37:09 +00:00
|
|
|
function M.update_diff_args()
|
|
|
|
-- Donn't show git diff when current buffer doesn't have a filename
|
2022-01-04 13:17:16 +00:00
|
|
|
active_bufnr = tostring(vim.api.nvim_get_current_buf())
|
2022-01-02 11:38:39 +00:00
|
|
|
if #vim.fn.expand('%') == 0 then
|
2021-10-11 12:37:09 +00:00
|
|
|
M.diff_args = nil
|
|
|
|
git_diff = nil
|
|
|
|
return
|
|
|
|
end
|
|
|
|
M.diff_args = {
|
|
|
|
cmd = string.format(
|
|
|
|
[[git -C %s --no-pager diff --no-color --no-ext-diff -U0 -- %s]],
|
2022-01-02 11:38:39 +00:00
|
|
|
vim.fn.expand('%:h'),
|
|
|
|
vim.fn.expand('%:t')
|
2021-10-11 12:37:09 +00:00
|
|
|
),
|
|
|
|
on_stdout = function(_, data)
|
|
|
|
if next(data) then
|
|
|
|
diff_output_cache = vim.list_extend(diff_output_cache, data)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_stderr = function(_, data)
|
|
|
|
data = table.concat(data, '\n')
|
2021-11-28 10:46:21 +00:00
|
|
|
if #data > 0 then
|
2021-10-11 12:37:09 +00:00
|
|
|
git_diff = nil
|
|
|
|
diff_output_cache = {}
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_exit = function()
|
|
|
|
if #diff_output_cache > 0 then
|
|
|
|
process_diff(diff_output_cache)
|
|
|
|
else
|
|
|
|
git_diff = { added = 0, modified = 0, removed = 0 }
|
|
|
|
end
|
2022-01-04 13:17:16 +00:00
|
|
|
diff_cache[vim.api.nvim_get_current_buf()] = git_diff
|
2021-10-11 12:37:09 +00:00
|
|
|
end,
|
|
|
|
}
|
|
|
|
M.update_git_diff()
|
|
|
|
end
|
|
|
|
|
2021-10-12 14:04:47 +00:00
|
|
|
---update git_diff veriable
|
2021-10-11 12:37:09 +00:00
|
|
|
function M.update_git_diff()
|
|
|
|
if M.diff_args then
|
|
|
|
diff_output_cache = {}
|
|
|
|
if diff_job then
|
|
|
|
diff_job:stop()
|
|
|
|
end
|
|
|
|
diff_job = modules.Job(M.diff_args)
|
|
|
|
if diff_job then
|
|
|
|
diff_job:start()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|