summaryrefslogtreecommitdiffstats
path: root/utils/sentencepiece/sorted_strings_table.h
blob: 61a2239091b453449878b63f3312bc201e116464 (plain)
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
/*
 * Copyright (C) 2018 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef LIBTEXTCLASSIFIER_UTILS_SENTENCEPIECE_SORTED_STRINGS_TABLE_H_
#define LIBTEXTCLASSIFIER_UTILS_SENTENCEPIECE_SORTED_STRINGS_TABLE_H_

#include <functional>
#include <vector>

#include "utils/sentencepiece/matcher.h"
#include "utils/strings/stringpiece.h"

namespace libtextclassifier3 {

// A matcher to find string pieces matching prefixes of an input string.
// The list of reference strings are kept in sorted order in a zero separated
// string.
// binary search is used to find all prefix matches.
// num_pieces: Number of sentence pieces.
// offsets: Offsets into `pieces` where a string starts.
// pieces: String pieces, concatenated in sorted order and zero byte separated.
// use_linear_scan_threshold: Minimum size of binary search range before
//     switching to a linear sweep for prefix match testing.
class SortedStringsTable : public SentencePieceMatcher {
 public:
  SortedStringsTable(const int num_pieces, const int* offsets,
                     StringPiece pieces,
                     const int use_linear_scan_threshold = 10)
      : num_pieces_(num_pieces),
        offsets_(offsets),
        pieces_(pieces),
        use_linear_scan_threshold_(use_linear_scan_threshold) {}

  // Find matches that are prefixes of a string.
  bool FindAllPrefixMatches(StringPiece input,
                            std::vector<TrieMatch>* matches) const override;
  // Find the longest prefix match of a string.
  bool LongestPrefixMatch(StringPiece input,
                          TrieMatch* longest_match) const override;

 private:
  void GatherPrefixMatches(
      StringPiece input, const std::function<void(TrieMatch)>& update_fn) const;

  const int num_pieces_;
  const int* offsets_;
  const StringPiece pieces_;
  const int use_linear_scan_threshold_;
};

}  // namespace libtextclassifier3

#endif  // LIBTEXTCLASSIFIER_UTILS_SENTENCEPIECE_SORTED_STRINGS_TABLE_H_