#include #include #include "cmd_line_parser/parser.hpp" #include "tinyformat/tinyformat.h" cmd_line_parser::parser make_parser(int argc, char** argv) { cmd_line_parser::parser p(argc, argv); p.add("input_keys", "Input filepath of data keys"); p.add("output_idx", "Output filepath of trie index"); p.add("trie_type", "Trie type: [7|8] (default=7)", "-t", false); p.add("binary_mode", "Is binary mode? (default=0)", "-b", false); return p; } template int build(const cmd_line_parser::parser& p) { const auto input_keys = p.get("input_keys"); const auto output_idx = p.get("output_idx"); const auto binary_mode = p.get("binary_mode", false); auto keys = xcdat::load_strings(input_keys); if (keys.empty()) { tfm::errorfln("Error: The input dataset is empty."); } std::sort(keys.begin(), keys.end()); keys.erase(std::unique(keys.begin(), keys.end()), keys.end()); const Trie trie(keys, binary_mode); const double memory_in_bytes = xcdat::memory_in_bytes(trie); tfm::printfln("Number of keys: %d", trie.num_keys()); tfm::printfln("Number of trie nodes: %d", trie.num_nodes()); tfm::printfln("Number of DA units: %d", trie.num_units()); tfm::printfln("Memory usage in bytes: %d", memory_in_bytes); tfm::printfln("Memory usage in MiB: %g", memory_in_bytes / (1024.0 * 1024.0)); xcdat::save(trie, output_idx); return 0; } int main(int argc, char** argv) { #ifndef NDEBUG tfm::warnfln("The code is running in debug mode."); #endif std::ios::sync_with_stdio(false); auto p = make_parser(argc, argv); if (!p.parse()) { return 1; } const auto trie_type = p.get("trie_type", 7); switch (trie_type) { case 7: return build(p); case 8: return build(p); default: break; } p.help(); return 1; }