Coverage Report

Created: 2026-07-16 06:06

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aspell/modules/tokenizer/basic.cpp
Line
Count
Source
1
2
// This file is part of The New Aspell
3
// Copyright (C) 2001 by Kevin Atkinson under the GNU LGPL license
4
// version 2.0 or 2.1.  You should have received a copy of the LGPL
5
// license along with this library if you did not you can find
6
// it at http://www.gnu.org/.
7
8
#include "tokenizer.hpp"
9
#include "convert.hpp"
10
#include "speller.hpp"
11
12
13
namespace acommon {
14
15
  class TokenizerBasic : public Tokenizer
16
  {
17
  public:
18
    bool advance();
19
  };
20
21
40.6k
  bool TokenizerBasic::advance() {
22
40.6k
    word_begin = word_end;
23
40.6k
    begin_pos = end_pos;
24
40.6k
    FilterChar * cur = word_begin;
25
40.6k
    unsigned int cur_pos = begin_pos;
26
40.6k
    word.clear();
27
28
    // skip spaces (non-word characters)
29
2.51M
    while (*cur != 0 &&
30
2.51M
     !(is_word(*cur)
31
2.47M
       || (is_begin(*cur) && is_word(cur[1])))) 
32
2.47M
    {
33
2.47M
      cur_pos += cur->width;
34
2.47M
      ++cur;
35
2.47M
    }
36
37
40.6k
    if (*cur == 0) return false;
38
39
39.7k
    word_begin = cur;
40
39.7k
    begin_pos = cur_pos;
41
42
39.7k
    if (is_begin(*cur) && is_word(cur[1]))
43
69
    {
44
69
      cur_pos += cur->width;
45
69
      ++cur;
46
69
    }
47
48
12.1M
    while (is_word(*cur) || 
49
531k
     (is_middle(*cur) && 
50
491k
      cur > word_begin && is_word(cur[-1]) &&
51
491k
      is_word(cur[1]) )) 
52
12.1M
    {
53
12.1M
      word.append(*cur);
54
12.1M
      cur_pos += cur->width;
55
12.1M
      ++cur;
56
12.1M
    }
57
58
39.7k
    if (is_end(*cur))
59
623
    {
60
623
      word.append(*cur);
61
623
      cur_pos += cur->width;
62
623
      ++cur;
63
623
    }
64
65
39.7k
    word.append('\0');
66
39.7k
    word_end = cur;
67
39.7k
    end_pos = cur_pos;
68
69
39.7k
    return true;
70
40.6k
  }
71
#undef increment__
72
73
  PosibErr<Tokenizer *> new_tokenizer(Speller * speller)
74
931
  {
75
931
    Tokenizer * tok = new TokenizerBasic();
76
931
    speller->setup_tokenizer(tok);
77
931
    return tok;
78
931
  }
79
80
}