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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
local m = require 'lpeglabel'
local Slash = m.S('/\\')^1
local Symbol = m.S',{}[]*?/\\'
local Char = 1 - Symbol
local Path = Char^1 * Slash
local NoWord = #(m.P(-1) + Symbol)
local function whatHappened()
return m.Cmt(m.P(1)^1, function (...)
print(...)
end)
end
local mt = {}
mt.__index = mt
mt.__name = 'matcher'
function mt:exp(state, index)
local exp = state[index]
if not exp then
return
end
if exp.type == 'word' then
return self:word(exp, state, index + 1)
elseif exp.type == 'char' then
return self:char(exp, state, index + 1)
elseif exp.type == '**' then
return self:anyPath(exp, state, index + 1)
elseif exp.type == '*' then
return self:anyChar(exp, state, index + 1)
elseif exp.type == '?' then
return self:oneChar(exp, state, index + 1)
elseif exp.type == '[]' then
return self:range(exp, state, index + 1)
elseif exp.type == '/' then
return self:slash(exp, state, index + 1)
end
end
function mt:word(exp, state, index)
local current = self:exp(exp.value, 1)
local after = self:exp(state, index)
if after then
return current * Slash * after
else
return current
end
end
function mt:char(exp, state, index)
local current = m.P(exp.value)
local after = self:exp(state, index)
if after then
return current * after * NoWord
else
return current * NoWord
end
end
function mt:anyPath(_, state, index)
local after = self:exp(state, index)
if after then
return m.P {
'Main',
Main = after
+ Path * m.V'Main'
}
else
return Path^0
end
end
function mt:anyChar(_, state, index)
local after = self:exp(state, index)
if after then
return m.P {
'Main',
Main = after
+ Char * m.V'Main'
}
else
return Char^0
end
end
function mt:oneChar(_, state, index)
local after = self:exp(state, index)
if after then
return Char * after
else
return Char
end
end
function mt:range(exp, state, index)
local after = self:exp(state, index)
local ranges = {}
local selects = {}
for _, range in ipairs(exp.value) do
if #range == 1 then
selects[#selects+1] = range[1]
elseif #range == 2 then
ranges[#ranges+1] = range[1] .. range[2]
end
end
local current = m.S(table.concat(selects)) + m.R(table.unpack(ranges))
if after then
return current * after
else
return current
end
end
function mt:slash(_, state, index)
local after = self:exp(state, index)
if after then
return after
else
self.needDirectory = true
return nil
end
end
function mt:pattern(state)
if state.root then
return m.C(self:exp(state, 1))
else
return m.C(self:anyPath(nil, state, 1))
end
end
function mt:isNeedDirectory()
return self.needDirectory == true
end
function mt:isNegative()
return self.state.neg == true
end
function mt:__call(path)
return self.matcher:match(path)
end
return function (state, options)
local self = setmetatable({
options = options,
state = state,
}, mt)
self.matcher = self:pattern(state)
return self
end
|