Browse Source

[Project] Lua_magic: Some tweaks

tags/2.0
Vsevolod Stakhov 4 years ago
parent
commit
c9af91f7ec
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      lualib/lua_magic/init.lua

+ 4
- 2
lualib/lua_magic/init.lua View File

@@ -72,7 +72,7 @@ local function process_patterns(log_obj)

if not compiled_patterns then
for ext,pattern in pairs(patterns) do
assert(types[ext])
assert(types[ext], 'not found type: ' .. ext)
pattern.ext = ext
for _,match in ipairs(pattern.matches) do
if match.string then
@@ -250,6 +250,7 @@ exports.detect = function(input, log_obj)
return extensions[1],types[extensions[1]]
end

-- No way, let's check data in chunks or just the whole input if it is small enough
if #input > exports.chunk_size * 3 then
-- Chunked version as input is too long
local chunk1, chunk2, chunk3 =
@@ -270,7 +271,8 @@ exports.detect = function(input, log_obj)
compiled_patterns, processed_patterns, log_obj, res)
end
else
assert(0)
-- Table input is NYI
assert(0, 'table input for match')
end

local extensions = process_detected(res)

Loading…
Cancel
Save