Coverage Report

Created: 2023-05-18 19:04

/src/harfbuzz/src/hb-number-parser.hh
Line
Count
Source (jump to first uncovered line)
1
2
#line 1 "hb-number-parser.rl"
3
/*
4
 * Copyright © 2019  Ebrahim Byagowi
5
 *
6
 *  This is part of HarfBuzz, a text shaping library.
7
 *
8
 * Permission is hereby granted, without written agreement and without
9
 * license or royalty fees, to use, copy, modify, and distribute this
10
 * software and its documentation for any purpose, provided that the
11
 * above copyright notice and the following two paragraphs appear in
12
 * all copies of this software.
13
 *
14
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
15
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
17
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
18
 * DAMAGE.
19
 *
20
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
21
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
22
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
23
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
24
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
25
 *
26
 */
27
28
#ifndef HB_NUMBER_PARSER_HH
29
#define HB_NUMBER_PARSER_HH
30
31
#include "hb.hh"
32
33
34
#line 32 "hb-number-parser.hh"
35
static const unsigned char _double_parser_trans_keys[] = {
36
  0u, 0u, 43u, 57u, 46u, 57u, 48u, 57u, 43u, 57u, 48u, 57u, 48u, 101u, 48u, 57u, 
37
  46u, 101u, 0
38
};
39
40
static const char _double_parser_key_spans[] = {
41
  0, 15, 12, 10, 15, 10, 54, 10, 
42
  56
43
};
44
45
static const unsigned char _double_parser_index_offsets[] = {
46
  0, 0, 16, 29, 40, 56, 67, 122, 
47
  133
48
};
49
50
static const char _double_parser_indicies[] = {
51
  0, 1, 2, 3, 1, 4, 4, 
52
  4, 4, 4, 4, 4, 4, 4, 4, 
53
  1, 3, 1, 4, 4, 4, 4, 4, 
54
  4, 4, 4, 4, 4, 1, 5, 5, 
55
  5, 5, 5, 5, 5, 5, 5, 5, 
56
  1, 6, 1, 7, 1, 1, 8, 8, 
57
  8, 8, 8, 8, 8, 8, 8, 8, 
58
  1, 8, 8, 8, 8, 8, 8, 8, 
59
  8, 8, 8, 1, 5, 5, 5, 5, 
60
  5, 5, 5, 5, 5, 5, 1, 1, 
61
  1, 1, 1, 1, 1, 1, 1, 1, 
62
  1, 9, 1, 1, 1, 1, 1, 1, 
63
  1, 1, 1, 1, 1, 1, 1, 1, 
64
  1, 1, 1, 1, 1, 1, 1, 1, 
65
  1, 1, 1, 1, 1, 1, 1, 1, 
66
  1, 9, 1, 8, 8, 8, 8, 8, 
67
  8, 8, 8, 8, 8, 1, 3, 1, 
68
  4, 4, 4, 4, 4, 4, 4, 4, 
69
  4, 4, 1, 1, 1, 1, 1, 1, 
70
  1, 1, 1, 1, 1, 9, 1, 1, 
71
  1, 1, 1, 1, 1, 1, 1, 1, 
72
  1, 1, 1, 1, 1, 1, 1, 1, 
73
  1, 1, 1, 1, 1, 1, 1, 1, 
74
  1, 1, 1, 1, 1, 9, 1, 0
75
};
76
77
static const char _double_parser_trans_targs[] = {
78
  2, 0, 2, 3, 8, 6, 5, 5, 
79
  7, 4
80
};
81
82
static const char _double_parser_trans_actions[] = {
83
  0, 0, 1, 0, 2, 3, 0, 4, 
84
  5, 0
85
};
86
87
static const int double_parser_start = 1;
88
static const int double_parser_first_final = 6;
89
static const int double_parser_error = 0;
90
91
static const int double_parser_en_main = 1;
92
93
94
#line 68 "hb-number-parser.rl"
95
96
97
/* Works only for n < 512 */
98
static inline double
99
_pow10 (unsigned exponent)
100
54.2k
{
101
54.2k
  static const double _powers_of_10[] =
102
54.2k
  {
103
54.2k
    1.0e+256,
104
54.2k
    1.0e+128,
105
54.2k
    1.0e+64,
106
54.2k
    1.0e+32,
107
54.2k
    1.0e+16,
108
54.2k
    1.0e+8,
109
54.2k
    10000.,
110
54.2k
    100.,
111
54.2k
    10.
112
54.2k
  };
113
54.2k
  unsigned mask = 1 << (ARRAY_LENGTH (_powers_of_10) - 1);
114
54.2k
  double result = 1;
115
542k
  for (const double *power = _powers_of_10; mask; ++power, mask >>= 1)
116
488k
    if (exponent & mask) result *= *power;
117
54.2k
  return result;
118
54.2k
}
119
120
/* a variant of strtod that also gets end of buffer in its second argument */
121
static inline double
122
strtod_rl (const char *p, const char **end_ptr /* IN/OUT */)
123
54.5k
{
124
54.5k
  double value = 0;
125
54.5k
  double frac = 0;
126
54.5k
  double frac_count = 0;
127
54.5k
  unsigned exp = 0;
128
54.5k
  bool neg = false, exp_neg = false, exp_overflow = false;
129
54.5k
  const unsigned long long MAX_FRACT = 0xFFFFFFFFFFFFFull; /* 2^52-1 */
130
54.5k
  const unsigned MAX_EXP = 0x7FFu; /* 2^11-1 */
131
132
54.5k
  const char *pe = *end_ptr;
133
54.5k
  while (p < pe && ISSPACE (*p))
134
0
    p++;
135
136
54.5k
  int cs;
137
  
138
54.5k
#line 132 "hb-number-parser.hh"
139
54.5k
  {
140
54.5k
  cs = double_parser_start;
141
54.5k
  }
142
143
54.5k
#line 135 "hb-number-parser.hh"
144
54.5k
  {
145
54.5k
  int _slen;
146
54.5k
  int _trans;
147
54.5k
  const unsigned char *_keys;
148
54.5k
  const char *_inds;
149
54.5k
  if ( p == pe )
150
29
    goto _test_eof;
151
54.5k
  if ( cs == 0 )
152
0
    goto _out;
153
364k
_resume:
154
364k
  _keys = _double_parser_trans_keys + (cs<<1);
155
364k
  _inds = _double_parser_indicies + _double_parser_index_offsets[cs];
156
157
364k
  _slen = _double_parser_key_spans[cs];
158
364k
  _trans = _inds[ _slen > 0 && _keys[0] <=(*p) &&
159
364k
    (*p) <= _keys[1] ?
160
364k
    (*p) - _keys[0] : _slen ];
161
162
364k
  cs = _double_parser_trans_targs[_trans];
163
164
364k
  if ( _double_parser_trans_actions[_trans] == 0 )
165
54.6k
    goto _again;
166
167
310k
  switch ( _double_parser_trans_actions[_trans] ) {
168
71
  case 1:
169
71
#line 37 "hb-number-parser.rl"
170
71
  { neg = true; }
171
71
  break;
172
339
  case 4:
173
339
#line 38 "hb-number-parser.rl"
174
339
  { exp_neg = true; }
175
339
  break;
176
28.8k
  case 2:
177
28.8k
#line 40 "hb-number-parser.rl"
178
28.8k
  {
179
28.8k
  value = value * 10. + ((*p) - '0');
180
28.8k
}
181
28.8k
  break;
182
278k
  case 3:
183
278k
#line 43 "hb-number-parser.rl"
184
278k
  {
185
278k
  if (likely (frac <= MAX_FRACT / 10))
186
277k
  {
187
277k
    frac = frac * 10. + ((*p) - '0');
188
277k
    ++frac_count;
189
277k
  }
190
278k
}
191
278k
  break;
192
2.68k
  case 5:
193
2.68k
#line 50 "hb-number-parser.rl"
194
2.68k
  {
195
2.68k
  if (likely (exp * 10 + ((*p) - '0') <= MAX_EXP))
196
1.81k
    exp = exp * 10 + ((*p) - '0');
197
872
  else
198
872
    exp_overflow = true;
199
2.68k
}
200
2.68k
  break;
201
310k
#line 187 "hb-number-parser.hh"
202
310k
  }
203
204
364k
_again:
205
364k
  if ( cs == 0 )
206
168
    goto _out;
207
364k
  if ( ++p != pe )
208
310k
    goto _resume;
209
54.4k
  _test_eof: {}
210
54.5k
  _out: {}
211
54.5k
  }
212
213
0
#line 113 "hb-number-parser.rl"
214
215
216
0
  *end_ptr = p;
217
218
54.5k
  if (frac_count) value += frac / _pow10 (frac_count);
219
54.5k
  if (neg) value *= -1.;
220
221
54.5k
  if (unlikely (exp_overflow))
222
176
  {
223
176
    if (value == 0) return value;
224
145
    if (exp_neg)    return neg ? -DBL_MIN : DBL_MIN;
225
48
    else            return neg ? -DBL_MAX : DBL_MAX;
226
145
  }
227
228
54.4k
  if (exp)
229
250
  {
230
250
    if (exp_neg) value /= _pow10 (exp);
231
51
    else         value *= _pow10 (exp);
232
250
  }
233
234
54.4k
  return value;
235
54.5k
}
236
237
#endif /* HB_NUMBER_PARSER_HH */