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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qbytearraymatcher.h"
#include <limits.h>
QT_BEGIN_NAMESPACE
static inline void bm_init_skiptable(const uchar *cc, qsizetype len, uchar *skiptable)
{
int l = int(qMin(len, qsizetype(255)));
memset(skiptable, l, 256*sizeof(uchar));
cc += len - l;
while (l--)
skiptable[*cc++] = l;
}
static inline qsizetype bm_find(const uchar *cc, qsizetype l, qsizetype index, const uchar *puc,
qsizetype pl, const uchar *skiptable)
{
if (pl == 0)
return index > l ? -1 : index;
const qsizetype pl_minus_one = pl - 1;
const uchar *current = cc + index + pl_minus_one;
const uchar *end = cc + l;
while (current < end) {
qsizetype skip = skiptable[*current];
if (!skip) {
// possible match
while (skip < pl) {
if (*(current - skip) != puc[pl_minus_one - skip])
break;
skip++;
}
if (skip > pl_minus_one) // we have a match
return (current - cc) - skip + 1;
// in case we don't have a match we are a bit inefficient as we only skip by one
// when we have the non matching char in the string.
if (skiptable[*(current - skip)] == pl)
skip = pl - skip;
else
skip = 1;
}
if (current > end - skip)
break;
current += skip;
}
return -1; // not found
}
/*! \class QByteArrayMatcher
\inmodule QtCore
\brief The QByteArrayMatcher class holds a sequence of bytes that
can be quickly matched in a byte array.
\ingroup tools
\ingroup string-processing
This class is useful when you have a sequence of bytes that you
want to repeatedly match against some byte arrays (perhaps in a
loop), or when you want to search for the same sequence of bytes
multiple times in the same byte array. Using a matcher object and
indexIn() is faster than matching a plain QByteArray with
QByteArray::indexOf() if repeated matching takes place. This
class offers no benefit if you are doing one-off byte array
matches.
Create the QByteArrayMatcher with the QByteArray you want to
search for. Then call indexIn() on the QByteArray that you want to
search.
\sa QByteArray, QStringMatcher
*/
/*!
Constructs an empty byte array matcher that won't match anything.
Call setPattern() to give it a pattern to match.
*/
QByteArrayMatcher::QByteArrayMatcher()
: d(nullptr)
{
p.p = nullptr;
p.l = 0;
memset(p.q_skiptable, 0, sizeof(p.q_skiptable));
}
/*!
Constructs a byte array matcher from \a pattern. \a pattern
has the given \a length. Call indexIn() to perform a search.
\note the data that \a pattern is referencing must remain valid while this
object is used.
*/
QByteArrayMatcher::QByteArrayMatcher(const char *pattern, qsizetype length) : d(nullptr)
{
p.p = reinterpret_cast<const uchar *>(pattern);
if (length < 0)
p.l = qstrlen(pattern);
else
p.l = length;
bm_init_skiptable(p.p, p.l, p.q_skiptable);
}
/*!
Constructs a byte array matcher that will search for \a pattern.
Call indexIn() to perform a search.
*/
QByteArrayMatcher::QByteArrayMatcher(const QByteArray &pattern)
: d(nullptr), q_pattern(pattern)
{
p.p = reinterpret_cast<const uchar *>(pattern.constData());
p.l = pattern.size();
bm_init_skiptable(p.p, p.l, p.q_skiptable);
}
/*!
\fn QByteArrayMatcher::QByteArrayMatcher(QByteArrayView pattern)
\since 6.3
\overload
Constructs a byte array matcher that will search for \a pattern.
Call indexIn() to perform a search.
\note the data that \a pattern is referencing must remain valid while this
object is used.
*/
/*!
Copies the \a other byte array matcher to this byte array matcher.
*/
QByteArrayMatcher::QByteArrayMatcher(const QByteArrayMatcher &other)
: d(nullptr)
{
operator=(other);
}
/*!
Destroys the byte array matcher.
*/
QByteArrayMatcher::~QByteArrayMatcher()
{
Q_UNUSED(d);
}
/*!
Assigns the \a other byte array matcher to this byte array matcher.
*/
QByteArrayMatcher &QByteArrayMatcher::operator=(const QByteArrayMatcher &other)
{
q_pattern = other.q_pattern;
memcpy(&p, &other.p, sizeof(p));
return *this;
}
/*!
Sets the byte array that this byte array matcher will search for
to \a pattern.
\sa pattern(), indexIn()
*/
void QByteArrayMatcher::setPattern(const QByteArray &pattern)
{
q_pattern = pattern;
p.p = reinterpret_cast<const uchar *>(pattern.constData());
p.l = pattern.size();
bm_init_skiptable(p.p, p.l, p.q_skiptable);
}
/*!
Searches the byte array \a ba, from byte position \a from (default
0, i.e. from the first byte), for the byte array pattern() that
was set in the constructor or in the most recent call to
setPattern(). Returns the position where the pattern() matched in
\a ba, or -1 if no match was found.
*/
qsizetype QByteArrayMatcher::indexIn(const QByteArray &ba, qsizetype from) const
{
if (from < 0)
from = 0;
return bm_find(reinterpret_cast<const uchar *>(ba.constData()), ba.size(), from,
p.p, p.l, p.q_skiptable);
}
/*!
Searches the char string \a str, which has length \a len, from
byte position \a from (default 0, i.e. from the first byte), for
the byte array pattern() that was set in the constructor or in the
most recent call to setPattern(). Returns the position where the
pattern() matched in \a str, or -1 if no match was found.
*/
qsizetype QByteArrayMatcher::indexIn(const char *str, qsizetype len, qsizetype from) const
{
if (from < 0)
from = 0;
return bm_find(reinterpret_cast<const uchar *>(str), len, from,
p.p, p.l, p.q_skiptable);
}
/*!
\fn qsizetype QByteArrayMatcher::indexIn(QByteArrayView data, qsizetype from) const
\since 6.3
\overload
Searches the byte array \a data, from byte position \a from (default
0, i.e. from the first byte), for the byte array pattern() that
was set in the constructor or in the most recent call to
setPattern(). Returns the position where the pattern() matched in
\a data, or -1 if no match was found.
*/
/*!
\fn QByteArray QByteArrayMatcher::pattern() const
Returns the byte array pattern that this byte array matcher will
search for.
\sa setPattern()
*/
static qsizetype findChar(const char *str, qsizetype len, char ch, qsizetype from)
{
const uchar *s = (const uchar *)str;
uchar c = (uchar)ch;
if (from < 0)
from = qMax(from + len, qsizetype(0));
if (from < len) {
const uchar *n = s + from - 1;
const uchar *e = s + len;
while (++n != e)
if (*n == c)
return n - s;
}
return -1;
}
/*!
\internal
*/
static qsizetype qFindByteArrayBoyerMoore(
const char *haystack, qsizetype haystackLen, qsizetype haystackOffset,
const char *needle, qsizetype needleLen)
{
uchar skiptable[256];
bm_init_skiptable((const uchar *)needle, needleLen, skiptable);
if (haystackOffset < 0)
haystackOffset = 0;
return bm_find((const uchar *)haystack, haystackLen, haystackOffset,
(const uchar *)needle, needleLen, skiptable);
}
#define REHASH(a) \
if (sl_minus_1 < sizeof(std::size_t) * CHAR_BIT) \
hashHaystack -= std::size_t(a) << sl_minus_1; \
hashHaystack <<= 1
/*!
\internal
*/
qsizetype qFindByteArray(
const char *haystack0, qsizetype haystackLen, qsizetype from,
const char *needle, qsizetype needleLen)
{
const auto l = haystackLen;
const auto sl = needleLen;
if (from < 0)
from += l;
if (std::size_t(sl + from) > std::size_t(l))
return -1;
if (!sl)
return from;
if (!l)
return -1;
if (sl == 1)
return findChar(haystack0, haystackLen, needle[0], from);
/*
We use the Boyer-Moore algorithm in cases where the overhead
for the skip table should pay off, otherwise we use a simple
hash function.
*/
if (l > 500 && sl > 5)
return qFindByteArrayBoyerMoore(haystack0, haystackLen, from,
needle, needleLen);
/*
We use some hashing for efficiency's sake. Instead of
comparing strings, we compare the hash value of str with that
of a part of this QString. Only if that matches, we call memcmp().
*/
const char *haystack = haystack0 + from;
const char *end = haystack0 + (l - sl);
const auto sl_minus_1 = std::size_t(sl - 1);
std::size_t hashNeedle = 0, hashHaystack = 0;
qsizetype idx;
for (idx = 0; idx < sl; ++idx) {
hashNeedle = ((hashNeedle<<1) + needle[idx]);
hashHaystack = ((hashHaystack<<1) + haystack[idx]);
}
hashHaystack -= *(haystack + sl_minus_1);
while (haystack <= end) {
hashHaystack += *(haystack + sl_minus_1);
if (hashHaystack == hashNeedle && *needle == *haystack
&& memcmp(needle, haystack, sl) == 0)
return haystack - haystack0;
REHASH(*haystack);
++haystack;
}
return -1;
}
/*!
\class QStaticByteArrayMatcherBase
\since 5.9
\internal
\brief Non-template base class of QStaticByteArrayMatcher.
*/
/*!
\class QStaticByteArrayMatcher
\since 5.9
\inmodule QtCore
\brief The QStaticByteArrayMatcher class is a compile-time version of QByteArrayMatcher.
\ingroup tools
\ingroup string-processing
This class is useful when you have a sequence of bytes that you
want to repeatedly match against some byte arrays (perhaps in a
loop), or when you want to search for the same sequence of bytes
multiple times in the same byte array. Using a matcher object and
indexIn() is faster than matching a plain QByteArray with
QByteArray::indexOf(), in particular if repeated matching takes place.
Unlike QByteArrayMatcher, this class calculates the internal
representation at \e{compile-time}, so it can
even benefit if you are doing one-off byte array matches.
Create the QStaticByteArrayMatcher by calling qMakeStaticByteArrayMatcher(),
passing it the C string literal you want to search for. Store the return
value of that function in a \c{static const auto} variable, so you don't need
to pass the \c{N} template parameter explicitly:
\snippet code/src_corelib_text_qbytearraymatcher.cpp 0
Then call indexIn() on the QByteArray in which you want to search, just like
with QByteArrayMatcher.
Since this class is designed to do all the up-front calculations at compile-time,
it does not offer a setPattern() method.
\sa QByteArrayMatcher, QStringMatcher
*/
/*!
\fn template <uint N> int QStaticByteArrayMatcher<N>::indexIn(const char *haystack, int hlen, int from = 0) const
Searches the char string \a haystack, which has length \a hlen, from
byte position \a from (default 0, i.e. from the first byte), for
the byte array pattern() that was set in the constructor.
Returns the position where the pattern() matched in \a haystack, or -1 if no match was found.
*/
/*!
\fn template <uint N> int QStaticByteArrayMatcher<N>::indexIn(const QByteArray &haystack, int from = 0) const
Searches the char string \a haystack, from byte position \a from
(default 0, i.e. from the first byte), for the byte array pattern()
that was set in the constructor.
Returns the position where the pattern() matched in \a haystack, or -1 if no match was found.
*/
/*!
\fn template <uint N> QByteArray QStaticByteArrayMatcher<N>::pattern() const
Returns the byte array pattern that this byte array matcher will
search for.
\sa QByteArrayMatcher::setPattern()
*/
/*!
\internal
*/
int QStaticByteArrayMatcherBase::indexOfIn(const char *needle, uint nlen, const char *haystack, int hlen, int from) const noexcept
{
if (from < 0)
from = 0;
return bm_find(reinterpret_cast<const uchar *>(haystack), hlen, from,
reinterpret_cast<const uchar *>(needle), nlen, m_skiptable.data);
}
/*!
\fn template <uint N> QStaticByteArrayMatcher<N>::QStaticByteArrayMatcher(const char (&pattern)[N])
\internal
*/
/*!
\fn template <uint N> QStaticByteArrayMatcher qMakeStaticByteArrayMatcher(const char (&pattern)[N])
\since 5.9
\relates QStaticByteArrayMatcher
Return a QStaticByteArrayMatcher with the correct \c{N} determined
automatically from the \a pattern passed.
To take full advantage of this function, assign the result to an
\c{auto} variable:
\snippet code/src_corelib_text_qbytearraymatcher.cpp 1
*/
QT_END_NAMESPACE
|