Coverage Report

Created: 2025-08-26 06:29

/src/harfbuzz/src/OT/Layout/GSUB/LigatureSet.hh
Line
Count
Source (jump to first uncovered line)
1
#ifndef OT_LAYOUT_GSUB_LIGATURESET_HH
2
#define OT_LAYOUT_GSUB_LIGATURESET_HH
3
4
#include "Common.hh"
5
#include "Ligature.hh"
6
7
namespace OT {
8
namespace Layout {
9
namespace GSUB_impl {
10
11
template <typename Types>
12
struct LigatureSet
13
{
14
  public:
15
  Array16OfOffset16To<Ligature<Types>>
16
                ligature;               /* Array LigatureSet tables
17
                                         * ordered by preference */
18
  
19
  DEFINE_SIZE_ARRAY (2, ligature);
20
21
  bool sanitize (hb_sanitize_context_t *c) const
22
255
  {
23
255
    TRACE_SANITIZE (this);
24
255
    return_trace (ligature.sanitize (c, this));
25
255
  }
26
27
  bool intersects (const hb_set_t *glyphs) const
28
0
  {
29
0
    return
30
0
    + hb_iter (ligature)
31
0
    | hb_map (hb_add (this))
32
0
    | hb_map ([glyphs] (const Ligature<Types> &_) { return _.intersects (glyphs); })
33
0
    | hb_any
34
0
    ;
35
0
  }
36
37
  bool intersects_lig_glyph (const hb_set_t *glyphs) const
38
0
  {
39
0
    return
40
0
    + hb_iter (ligature)
41
0
    | hb_map (hb_add (this))
42
0
    | hb_map ([glyphs] (const Ligature<Types> &_) { 
43
0
      return _.intersects_lig_glyph (glyphs) && _.intersects (glyphs);
44
0
    })
45
0
    | hb_any
46
0
    ;
47
0
  }
48
49
  void closure (hb_closure_context_t *c) const
50
0
  {
51
0
    + hb_iter (ligature)
52
0
    | hb_map (hb_add (this))
53
0
    | hb_apply ([c] (const Ligature<Types> &_) { _.closure (c); })
54
0
    ;
55
0
  }
56
57
  void collect_glyphs (hb_collect_glyphs_context_t *c) const
58
0
  {
59
0
    + hb_iter (ligature)
60
0
    | hb_map (hb_add (this))
61
0
    | hb_apply ([c] (const Ligature<Types> &_) { _.collect_glyphs (c); })
62
0
    ;
63
0
  }
64
65
  template <typename set_t>
66
  void collect_seconds (set_t &s) const
67
11
  {
68
11
    + hb_iter (ligature)
69
11
    | hb_map (hb_add (this))
70
55
    | hb_apply ([&s] (const Ligature<Types> &_) { _.collect_second (s); })
71
11
    ;
72
11
  }
73
74
  bool would_apply (hb_would_apply_context_t *c) const
75
0
  {
76
0
    return
77
0
    + hb_iter (ligature)
78
0
    | hb_map (hb_add (this))
79
0
    | hb_map ([c] (const Ligature<Types> &_) { return _.would_apply (c); })
80
0
    | hb_any
81
0
    ;
82
0
  }
83
84
  bool apply (hb_ot_apply_context_t *c, const hb_set_digest_t *seconds = nullptr) const
85
0
  {
86
0
    TRACE_APPLY (this);
87
88
0
    unsigned int num_ligs = ligature.len;
89
90
0
#ifndef HB_NO_OT_RULESETS_FAST_PATH
91
0
    if (HB_OPTIMIZE_SIZE_VAL || num_ligs <= 1)
92
0
#endif
93
0
    {
94
0
    slow:
95
0
      for (unsigned int i = 0; i < num_ligs; i++)
96
0
      {
97
0
  const auto &lig = this+ligature.arrayZ[i];
98
0
  if (lig.apply (c)) return_trace (true);
99
0
      }
100
0
      return_trace (false);
101
0
    }
102
103
    /* This version is optimized for speed by matching the second component
104
     * of the ligature here, instead of calling into the ligation code.
105
     *
106
     * This is replicated in ChainRuleSet and RuleSet. */
107
108
0
    auto &skippy_iter = c->iter_input;
109
0
    skippy_iter.reset (c->buffer->idx);
110
0
    skippy_iter.set_match_func (match_always, nullptr);
111
0
    skippy_iter.set_glyph_data ((HBUINT16 *) nullptr);
112
0
    unsigned unsafe_to;
113
0
    hb_codepoint_t second = (unsigned) -1;
114
0
    bool matched = skippy_iter.next (&unsafe_to);
115
0
    if (likely (matched))
116
0
    {
117
0
      second = c->buffer->info[skippy_iter.idx].codepoint;
118
0
      unsafe_to = skippy_iter.idx + 1;
119
120
0
      if (skippy_iter.may_skip (c->buffer->info[skippy_iter.idx]))
121
0
      {
122
  /* Can't use the fast path if eg. the next char is a default-ignorable
123
   * or other skippable. */
124
0
        goto slow;
125
0
      }
126
0
    }
127
0
    else
128
0
      goto slow;
129
130
0
    if (seconds && !seconds->may_have (second))
131
0
      return_trace (false);
132
0
    bool unsafe_to_concat = false;
133
0
    for (unsigned int i = 0; i < num_ligs; i++)
134
0
    {
135
0
      const auto &lig = this+ligature.arrayZ[i];
136
0
      if (unlikely (lig.component.lenP1 <= 1) ||
137
0
    lig.component.arrayZ[0] == second)
138
0
      {
139
0
  if (lig.apply (c))
140
0
  {
141
0
    if (unsafe_to_concat)
142
0
      c->buffer->unsafe_to_concat (c->buffer->idx, unsafe_to);
143
0
    return_trace (true);
144
0
  }
145
0
      }
146
0
      else if (likely (lig.component.lenP1 > 1))
147
0
        unsafe_to_concat = true;
148
0
    }
149
0
    if (likely (unsafe_to_concat))
150
0
      c->buffer->unsafe_to_concat (c->buffer->idx, unsafe_to);
151
152
0
    return_trace (false);
153
0
  }
154
155
  bool serialize (hb_serialize_context_t *c,
156
                  hb_array_t<const HBGlyphID16> ligatures,
157
                  hb_array_t<const unsigned int> component_count_list,
158
                  hb_array_t<const HBGlyphID16> &component_list /* Starting from second for each ligature */)
159
0
  {
160
0
    TRACE_SERIALIZE (this);
161
0
    if (unlikely (!c->extend_min (this))) return_trace (false);
162
0
    if (unlikely (!ligature.serialize (c, ligatures.length))) return_trace (false);
163
0
    for (unsigned int i = 0; i < ligatures.length; i++)
164
0
    {
165
0
      unsigned int component_count = (unsigned) hb_max ((int) component_count_list[i] - 1, 0);
166
0
      if (unlikely (!ligature[i].serialize_serialize (c,
167
0
                                                      ligatures[i],
168
0
                                                      component_list.sub_array (0, component_count))))
169
0
        return_trace (false);
170
0
      component_list += component_count;
171
0
    }
172
0
    return_trace (true);
173
0
  }
174
175
  bool subset (hb_subset_context_t *c, unsigned coverage_idx) const
176
0
  {
177
0
    TRACE_SUBSET (this);
178
0
    auto *out = c->serializer->start_embed (*this);
179
0
    if (unlikely (!c->serializer->extend_min (out))) return_trace (false);
180
0
181
0
    + hb_iter (ligature)
182
0
    | hb_filter (subset_offset_array (c, out->ligature, this, coverage_idx))
183
0
    | hb_drain
184
0
    ;
185
0
186
0
    if (bool (out->ligature))
187
0
      // Ensure Coverage table is always packed after this.
188
0
      c->serializer->add_virtual_link (coverage_idx);
189
0
190
0
    return_trace (bool (out->ligature));
191
0
  }
192
};
193
194
}
195
}
196
}
197
198
#endif  /* OT_LAYOUT_GSUB_LIGATURESET_HH */