-- Trie is rspamd module designed to define and operate with suffix trie local tries = {} local function split(str, delim, maxNb) -- Eliminate bad cases... if string.find(str, delim) == nil then return { str } end if maxNb == nil or maxNb < 1 then maxNb = 0 -- No limit end local result = {} local pat = "(.-)" .. delim .. "()" local nb = 0 local lastPos for part, pos in string.gmatch(str, pat) do nb = nb + 1 result[nb] = part lastPos = pos if nb == maxNb then break end end -- Handle the last field if nb ~= maxNb then result[nb + 1] = string.sub(str, lastPos) end return result end local function add_trie(params) local symbol = params[1] file = io.open(params[2]) if file then local trie = {} trie['trie'] = rspamd_trie:create(true) num = 0 for line in file:lines() do trie['trie']:add_pattern(line, num) num = num + 1 end if type(rspamd_config.get_api_version) ~= 'nil' then rspamd_config:register_virtual_symbol(symbol, 1.0) end file:close() trie['symbol'] = symbol table.insert(tries, trie) else local patterns = split(params[2], ',') local trie = {} trie['trie'] = rspamd_trie:create(true) for num,pattern in ipairs(patterns) do trie['trie']:add_pattern(pattern, num) end if type(rspamd_config.get_api_version) ~= 'nil' then rspamd_config:register_virtual_symbol(symbol, 1.0) end trie['symbol'] = symbol table.insert(tries, trie) end end function check_trie(task) for _,trie in ipairs(tries) do if trie['trie']:search_task(task) then task:insert_result(trie['symbol'], 1) return end -- Search inside urls urls = task:get_urls() if urls then for _,url in ipairs(urls) do if trie['trie']:search_text(url:get_text()) then task:insert_result(trie['symbol'], 1) return end end end end end -- Registration if type(rspamd_config.get_api_version) ~= 'nil' then if rspamd_config:get_api_version() >= 1 then rspamd_config:register_module_option('trie', 'rule', 'string') end end local opts = rspamd_config:get_all_opt('trie') if opts then local strrules = opts['rule'] if strrules then if type(strrules) == 'table' then for _,value in ipairs(strrules) do local params = split(value, ':') add_trie(params) end elseif type(strrules) == 'string' then local params = split(strrules, ':') add_trie (params) end end if table.maxn(tries) then if type(rspamd_config.get_api_version) ~= 'nil' then rspamd_config:register_callback_symbol('TRIE', 1.0, 'check_trie') else rspamd_config:register_symbol('TRIE', 1.0, 'check_trie') end end end p_PDFLinearization'>Temp_PDFLinearization Apache XML Graphics FOP: https://github.com/apache/xmlgraphics-fopwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/pdf/PDFState.java
blob: d9500c1b273b2422d2c16d346e2d4aac0f58ee66 (plain)
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255