aboutsummaryrefslogtreecommitdiff
path: root/src/mnemonics/language_base.h
blob: 1d08095d7a34baf9d125a3516daccc45bdccaaf9 (plain) (blame)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*!
 * \file language_base.h
 * 
 * \brief Language Base class for Polymorphism.
 */

#ifndef LANGUAGE_BASE_H
#define LANGUAGE_BASE_H

#include <vector>
#include <unordered_map>
#include <string>

/*!
 * \namespace Language
 * \brief Mnemonic language related namespace.
 */
namespace Language
{
	const int unique_prefix_length = 4; /*!< Length of the prefix of all words guaranteed to be unique */
	/*!
	 * \class Base
	 * \brief A base language class which all languages have to inherit from for
	 * Polymorphism.
	 */
	class Base
	{
	protected:
		std::vector<std::string> *word_list; /*!< A pointer to the array of words */
		std::unordered_map<std::string, uint32_t> *word_map; /*!< hash table to find word's index */
		std::unordered_map<std::string, uint32_t> *trimmed_word_map; /*!< hash table to find word's trimmed index */
		std::string language_name; /*!< Name of language */
		/*!
		 * \brief Populates the word maps after the list is ready.
		 */
		void populate_maps()
		{
			int ii;
			std::vector<std::string>::iterator it;
			for (it = word_list->begin(), ii = 0; it != word_list->end(); it++, ii++)
			{
				(*word_map)[*it] = ii;
				if (it->length() > unique_prefix_length)
				{
					(*trimmed_word_map)[it->substr(0, unique_prefix_length)] = ii;
				}
				else
				{
					(*trimmed_word_map)[*it] = ii;
				}
			}
		}
	public:
		Base()
		{
			word_list = new std::vector<std::string>;
			word_map = new std::unordered_map<std::string, uint32_t>;
			trimmed_word_map = new std::unordered_map<std::string, uint32_t>;
		}
		/*!
		 * \brief Returns a pointer to the word list.
		 * \return A pointer to the word list.
		 */
		const std::vector<std::string>& get_word_list() const
		{
			return *word_list;
		}
		/*!
		 * \brief Returns a pointer to the word map.
		 * \return A pointer to the word map.
		 */
		const std::unordered_map<std::string, uint32_t>& get_word_map() const
		{
			return *word_map;
		}
		/*!
		 * \brief Returns a pointer to the trimmed word map.
		 * \return A pointer to the trimmed word map.
		 */
		const std::unordered_map<std::string, uint32_t>& get_trimmed_word_map() const
		{
			return *trimmed_word_map;
		}
		/*!
		 * \brief Returns the name of the language.
		 * \return Name of the language.
		 */
		std::string get_language_name() const
		{
			return language_name;
		}
	};
}

#endif