hakurei is now usable!
This commit is contained in:
parent
50c02a1324
commit
f7bddc62bf
66
src/main.cc
66
src/main.cc
|
@ -6,14 +6,34 @@
|
|||
#include <cctype>
|
||||
#include <xcdat.hpp>
|
||||
|
||||
|
||||
|
||||
struct Entry {
|
||||
std::string_view decoded_view;
|
||||
uint64_t id;
|
||||
Entry(std::string_view decoded_view, uint64_t id) : decoded_view(decoded_view), id(id) {}
|
||||
};
|
||||
|
||||
std::string remove_one_utf8_char(const std::string& str) {
|
||||
if (str.empty()) {
|
||||
return str;
|
||||
}
|
||||
size_t len = str.size();
|
||||
size_t i = 0;
|
||||
while (i < len) {
|
||||
unsigned char c = str[i];
|
||||
if (c < 0x80) { // 1-byte character
|
||||
return str.substr(i + 1);
|
||||
} else if ((c >> 5) == 0x6) { // 2-byte character
|
||||
return str.substr(i + 2);
|
||||
} else if ((c >> 4) == 0xe) { // 3-byte character
|
||||
return str.substr(i + 3);
|
||||
} else if ((c >> 3) == 0x1e) { // 4-byte character
|
||||
return str.substr(i + 4);
|
||||
}
|
||||
i++;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
if (argc < 2) {
|
||||
std::cerr << "Usage: " << argv[0] << " <search_string> [--debug] [--dict <path_to_dictionary>]" << std::endl;
|
||||
|
@ -46,6 +66,7 @@ int main(int argc, char* argv[]) {
|
|||
|
||||
std::vector<std::string> substrings;
|
||||
std::vector<Entry> results;
|
||||
|
||||
while (!search_string.empty()) {
|
||||
auto itr = trie.make_prefix_iterator(search_string);
|
||||
|
||||
|
@ -53,54 +74,41 @@ int main(int argc, char* argv[]) {
|
|||
results.emplace_back(itr.decoded_view(), itr.id());
|
||||
}
|
||||
|
||||
size_t min_length = std::numeric_limits<size_t>::max();
|
||||
std::string_view smallest_prefix;
|
||||
|
||||
// Add all substrings to the results
|
||||
if (!results.empty()) {
|
||||
for (const auto& entry : results) {
|
||||
if (entry.decoded_view.size() < min_length) {
|
||||
min_length = entry.decoded_view.size();
|
||||
smallest_prefix = entry.decoded_view;
|
||||
substrings.push_back(std::string(entry.decoded_view));
|
||||
}
|
||||
}
|
||||
|
||||
if (min_length > 0) {
|
||||
std::string substring = search_string.substr(0, search_string.find(smallest_prefix));
|
||||
if (!substring.empty()) {
|
||||
substrings.push_back(substring);
|
||||
}
|
||||
std::cout << search_string << " - " << smallest_prefix << " = ";
|
||||
|
||||
// Print debug information if in debug mode
|
||||
if (debug_mode) {
|
||||
raw_output += search_string + " - " + std::string(smallest_prefix) + " = ";
|
||||
std::cout << "Original search string: " << search_string << std::endl;
|
||||
}
|
||||
|
||||
size_t pos = search_string.find(smallest_prefix);
|
||||
if (pos != std::string::npos) {
|
||||
search_string.erase(0, pos + smallest_prefix.length());
|
||||
}
|
||||
else break;
|
||||
|
||||
std::cout << search_string << std::endl;
|
||||
|
||||
if (smallest_prefix.length() == 0)
|
||||
break;
|
||||
// Remove one UTF-8 character from the search string
|
||||
search_string = remove_one_utf8_char(search_string);
|
||||
|
||||
// Print debug information if in debug mode
|
||||
if (debug_mode) {
|
||||
std::cout << "After removing one character: " << search_string << std::endl;
|
||||
raw_output += search_string + '\n';
|
||||
}
|
||||
|
||||
results.clear();
|
||||
|
||||
// Remove leading whitespace
|
||||
while (!search_string.empty() && std::isspace(search_string.front())) {
|
||||
search_string.erase(0, 1);
|
||||
}
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Print debug information if in debug mode
|
||||
if (debug_mode) {
|
||||
std::cout << "Stored raw output:" << std::endl << raw_output << std::endl;
|
||||
}
|
||||
|
||||
// Print the substrings
|
||||
for (const auto& sub : substrings) {
|
||||
std::cout << sub << std::endl;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue