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
|
local platform = require 'bee.platform'
local files = require 'files'
local furi = require 'file-uri'
local m = {}
m.cache = {}
--- `aaa/bbb/ccc.lua` 与 `?.lua` 将返回 `aaa.bbb.cccc`
local function getOnePath(path, searcher)
local stemPath = path
: gsub('%.[^%.]+$', '')
: gsub('[/\\]+', '.')
local stemSearcher = searcher
: gsub('%.[^%.]+$', '')
: gsub('[/\\]+', '.')
local start = stemSearcher:match '()%?' or 1
for pos = start, #stemPath do
local word = stemPath:sub(start, pos)
local newSearcher = stemSearcher:gsub('%?', word)
if newSearcher == stemPath then
return word
end
end
return nil
end
function m.getVisiblePath(path, searchers)
path = path:gsub('^[/\\]+', '')
local uri = furi.encode(path)
local libraryPath = files.getLibraryPath(uri)
if not m.cache[path] then
local result = {}
m.cache[path] = result
local pos = 1
if libraryPath then
pos = #libraryPath + 2
end
repeat
local cutedPath = path:sub(pos)
local head
if pos > 1 then
head = path:sub(1, pos - 1)
end
pos = path:match('[/\\]+()', pos)
for _, searcher in ipairs(searchers) do
if platform.OS == 'Windows' then
searcher = searcher:gsub('[/\\]+', '\\')
else
searcher = searcher:gsub('[/\\]+', '/')
end
local expect = getOnePath(cutedPath, searcher)
if expect then
if head then
searcher = head .. searcher
end
result[#result+1] = {
searcher = searcher,
expect = expect,
}
end
end
if not pos then
break
end
until not pos
end
return m.cache[path]
end
function m.flush()
m.cache = {}
end
return m
|