1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_READER_H_
6 #define THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_READER_H_
11 #include "base/macros.h"
12 #include "third_party/hunspell/google/bdict.h"
19 // Iterators -------------------------------------------------------------------
21 // Iterates through all words in the dictionary. It will fill the word into
22 // a caller-specified buffer.
25 WordIterator(const WordIterator
& other
);
28 // This must be explicitly declared and implemneted in the .cc file so it will
29 // compile without knowing the size of NodeInfo.
30 WordIterator
& operator=(const WordIterator
&);
32 // Fills the buffer with the next word and the affixes for it into the given
33 // array. Returns the number of affixes. A return value of 0 means there are
35 int Advance(char* output_buffer
, size_t output_len
,
36 int affix_ids
[BDict::MAX_AFFIXES_PER_WORD
]);
39 friend class BDictReader
;
42 WordIterator(const NodeReader
& reader
);
44 // Called by Advance when a leaf is found to generate the word, affix list,
46 int FoundLeaf(const NodeReader
& node
, char cur_char
,
47 char* output_buffer
, size_t output_len
,
48 int affix_ids
[BDict::MAX_AFFIXES_PER_WORD
]);
50 std::vector
<NodeInfo
> stack_
;
53 // Will iterate over a list of lines separated by NULLs.
56 // Returns the next word in the sequence or NULL if there are no mode.
57 const char* Advance();
59 // Advances to the next word in the sequence and copies it into the given
60 // buffer, of the given length. If it doesn't fit, it will be truncated.
61 // Returns true on success.
62 bool AdvanceAndCopy(char* buf
, size_t buf_len
);
64 // Returns true when all data has been read. We're done when we reach a
65 // double-NULL or a the end of the input (shouldn't happen).
69 friend class BDictReader
;
71 LineIterator(const unsigned char* bdict_data
, size_t bdict_length
,
74 const unsigned char* bdict_data_
;
77 // Current offset within bdict_data of the next string to read.
81 // Created by GetReplacementIterator to iterate over all replacement pairs.
82 class ReplacementIterator
: public LineIterator
{
84 // Fills pointers to NULL terminated strings into the given output params.
85 // Returns false if there are no more pairs and nothing was filled in.
86 bool GetNext(const char** first
, const char** second
);
89 friend class BDictReader
;
91 ReplacementIterator(const unsigned char* bdict_data
, size_t bdict_length
,
93 : LineIterator(bdict_data
, bdict_length
, first_offset
) {
97 // Reads a BDict file mapped into memory.
100 // You must call Init and it must succeed before calling any other functions.
103 // Initializes the reader with the given data. The data does not transfer
104 // ownership, and the caller must keep it valid until the reader is destroyed.
105 // Returns true on success.
106 bool Init(const unsigned char* bdic_data
, size_t bdic_length
);
108 // Returns true if Init() succeeded and other functions can be called.
109 bool IsValid() const { return !!bdict_data_
; }
111 // Locates the given word in the dictionary. There may be multiple matches if
112 // the word is listed multiple times in the dictionary with different affix
115 // The number of matches is returned, and that number of corresponding affix
116 // group IDs are filled into |*affix_indices|. These IDs may be 0 to indicate
117 // there is no affix for that particular match. A return valuf of 0 means that
118 // there are no matches.
119 int FindWord(const char* word
,
120 int affix_indices
[BDict::MAX_AFFIXES_PER_WORD
]) const;
122 // Returns an iterator that will go over all AF lines ("affix groups").
123 LineIterator
GetAfLineIterator() const;
125 // Returns an iterator that will go over all SFX/PFX lines ("affix rules").
126 LineIterator
GetAffixLineIterator() const;
128 // Returns an iterator that will go over all "other" lines.
129 LineIterator
GetOtherLineIterator() const;
131 // Returns an iterator that can be used to iterate all replacements.
132 ReplacementIterator
GetReplacementIterator() const;
134 // Used for testing, returns an iterator for all words in the dictionary.
135 WordIterator
GetAllWordIterator() const;
138 // Non-NULL indicates Init succeeded.
139 const unsigned char* bdict_data_
;
140 size_t bdict_length_
;
142 // Pointer not owned by this class. It will point into the data. It will be
143 // NULL if the data is invalid.
144 const BDict::Header
* header_
;
146 const BDict::AffHeader
* aff_header_
;
148 DISALLOW_COPY_AND_ASSIGN(BDictReader
);
151 } // namespace hunspell
153 #endif // THIRD_PARTY_HUNSPELL_GOOGLE_BDICT_READER_H_