vicious/contrib/countfiles.lua

51 lines
1.5 KiB
Lua
Raw Normal View History

2010-12-19 04:03:48 +01:00
---------------------------------------------------
-- Licensed under the GNU General Public License v2
---------------------------------------------------
-- * (c) 2010, Jörg. T <jthalheim@mail.com>
-- {{{ Grab environment
local io = { popen = io.popen }
local setmetatable = setmetatable
local pairs = pairs
-- }}}
2011-10-25 20:47:01 +02:00
-- countfiles: provides a number of files in several directories
2010-12-19 04:03:48 +01:00
-- @warg.paths a table with the paths which should be checked
-- @warg.pattern a global regex to match files (Default: match all)
2011-10-25 20:47:01 +02:00
-- use posix-egrep style instead of the default (less familiar) emacs regex
2010-12-19 04:03:48 +01:00
-- Be carefull with directories, who contains a mass of files.
-- "find" is usally fast, but will also produce delays, if the inodes get to big.
-- So if you want to count your music library, you may want to use locate/updatedb instead.
2011-10-25 20:47:01 +02:00
module("vicious.contrib.countfiles")
2010-12-19 04:03:48 +01:00
-- {{{ Sum up widget type
local function worker(format, warg)
if not warg then return end
-- Initialise counter table
local store = {}
-- Match by default all files
warg.pattern = warg.pattern or ".*"
for key, value in pairs(warg.paths) do
local f = io.popen("find '"..value.."'"..
" -type f -regextype posix-egrep"..
" -regex '"..warg.pattern.."'")
local lines = 0
for line in f:lines() do
lines = lines + 1
end
2011-10-25 20:47:01 +02:00
store[key] = (store[key] or 0) + lines
2010-12-19 04:03:48 +01:00
f:close()
end
return store
end
-- }}}
setmetatable(_M, { __call = function(_, ...) return worker(...) end })