mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 03:12:56 +00:00
replace generated code from unknown source with string comparison
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
a08fa9c619
commit
5f95f1bcb3
1 changed files with 24 additions and 139 deletions
|
@ -114,153 +114,38 @@ QSvgNode::Type QSvgDefs::type() const
|
||||||
return DEFS;
|
return DEFS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
Below is a lookup function based on the gperf output using the following set:
|
|
||||||
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#SVG
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-static
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#CoreAttribute
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Structure
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessing
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessingAttribute
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Image
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Prefetch
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Shape
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Text
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#PaintAttribute
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#OpacityAttribute
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#GraphicsAttribute
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Gradient
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#SolidColor
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#XlinkAttribute
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#ExternalResourcesRequiredAttribute
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Font
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Hyperlinking
|
|
||||||
http://www.w3.org/Graphics/SVG/feature/1.2/#Extensibility
|
|
||||||
*/
|
|
||||||
|
|
||||||
// ----- begin of generated code -----
|
|
||||||
|
|
||||||
/* C code produced by gperf version 3.0.2 */
|
|
||||||
/* Command-line: gperf -c -L c svg */
|
|
||||||
/* Computed positions: -k'45-46' */
|
|
||||||
|
|
||||||
#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \
|
|
||||||
&& ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \
|
|
||||||
&& (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \
|
|
||||||
&& ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \
|
|
||||||
&& ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \
|
|
||||||
&& ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \
|
|
||||||
&& ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \
|
|
||||||
&& ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \
|
|
||||||
&& ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \
|
|
||||||
&& ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \
|
|
||||||
&& ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \
|
|
||||||
&& ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \
|
|
||||||
&& ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \
|
|
||||||
&& ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \
|
|
||||||
&& ('Z' == 90) && ('[' == 91) && ('\\' == 92) && (']' == 93) \
|
|
||||||
&& ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \
|
|
||||||
&& ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \
|
|
||||||
&& ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \
|
|
||||||
&& ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \
|
|
||||||
&& ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \
|
|
||||||
&& ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \
|
|
||||||
&& ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \
|
|
||||||
&& ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126))
|
|
||||||
/* The character set is not based on ISO-646. */
|
|
||||||
#error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
enum {
|
|
||||||
TOTAL_KEYWORDS = 20,
|
|
||||||
MIN_WORD_LENGTH = 47,
|
|
||||||
MAX_WORD_LENGTH = 78,
|
|
||||||
MIN_HASH_VALUE = 48,
|
|
||||||
MAX_HASH_VALUE = 88
|
|
||||||
};
|
|
||||||
/* maximum key range = 41, duplicates = 0 */
|
|
||||||
|
|
||||||
inline static bool isSupportedSvgFeature(const QString &str)
|
inline static bool isSupportedSvgFeature(const QString &str)
|
||||||
{
|
{
|
||||||
static const unsigned char asso_values[] = {
|
static const QLatin1String svgFeatureTbl[] = {
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Text"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Shape"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#SVG"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Structure"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#SolidColor"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Hyperlinking"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 0, 89, 5,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#CoreAttribute"),
|
||||||
15, 5, 0, 10, 89, 89, 89, 89, 89, 0,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#XlinkAttribute"),
|
||||||
15, 89, 89, 0, 0, 89, 5, 89, 0, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-static"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 0, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#OpacityAttribute"),
|
||||||
89, 0, 89, 89, 0, 89, 89, 89, 0, 5,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Gradient"),
|
||||||
89, 0, 0, 89, 5, 89, 0, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Font"),
|
||||||
5, 0, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Image"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessing"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Extensibility"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#GraphicsAttribute"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#Prefetch"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#PaintAttribute"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessingAttribute"),
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
QLatin1String("http://www.w3.org/Graphics/SVG/feature/1.2/#ExternalResourcesRequiredAttribute")
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
|
||||||
89, 89, 89, 89, 89, 89, 89, 89, 89, 89,
|
|
||||||
89, 89, 89, 89, 89, 89
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char * wordlist[] = {
|
for (qint16 i = 0; i < 20; i++) {
|
||||||
"", "", "", "", "", "", "", "", "",
|
if (str == svgFeatureTbl[i])
|
||||||
"", "", "", "", "", "", "", "", "",
|
return true;
|
||||||
"", "", "", "", "", "", "", "", "",
|
|
||||||
"", "", "", "", "", "", "", "", "",
|
|
||||||
"", "", "", "", "", "", "", "", "",
|
|
||||||
"", "", "",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Text",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Shape",
|
|
||||||
"", "",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#SVG",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Structure",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#SolidColor",
|
|
||||||
"",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Hyperlinking",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#CoreAttribute",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#XlinkAttribute",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#SVG-static",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#OpacityAttribute",
|
|
||||||
"",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Gradient",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Font",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Image",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessing",
|
|
||||||
"",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Extensibility",
|
|
||||||
"", "", "",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#GraphicsAttribute",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#Prefetch",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#PaintAttribute",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#ConditionalProcessingAttribute",
|
|
||||||
"", "", "", "", "", "", "", "", "",
|
|
||||||
"", "", "", "",
|
|
||||||
"http://www.w3.org/Graphics/SVG/feature/1.2/#ExternalResourcesRequiredAttribute"
|
|
||||||
};
|
|
||||||
|
|
||||||
if (str.length() <= MAX_WORD_LENGTH && str.length() >= MIN_WORD_LENGTH) {
|
|
||||||
const int key = str.length()
|
|
||||||
+ asso_values[str.at(45).unicode()]
|
|
||||||
+ asso_values[str.at(44).unicode()];
|
|
||||||
if (key <= MAX_HASH_VALUE && key >= 0)
|
|
||||||
return str == QLatin1String(wordlist[key]);
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ----- end of generated code -----
|
|
||||||
|
|
||||||
|
|
||||||
QSvgSwitch::QSvgSwitch(QSvgNode *parent)
|
QSvgSwitch::QSvgSwitch(QSvgNode *parent)
|
||||||
: QSvgStructureNode(parent)
|
: QSvgStructureNode(parent)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue