forked from privacore/open-source-search-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCountryCode.h
35 lines (27 loc) · 809 Bytes
/
CountryCode.h
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
#ifndef GB_COUNTRYCODE_H
#define GB_COUNTRYCODE_H
#include "HashTableT.h"
#include "types.h"
// . used by Events.cpp to keep things small
// . get a single byte country id from a 2 character country code
uint8_t getCountryId ( const char *cc ) ;
// map a country id to the two letter country abbr
const char *getCountryCode ( uint16_t crid );
uint8_t guessCountryTLD(const char *url);
class CountryCode {
public:
CountryCode();
~CountryCode();
void init(void);
const char *getAbbr(int index);
const char *getName(int index);
int getIndexOfAbbr(const char *abbr);
bool loadHashTable(void);
void reset();
private:
bool m_init;
HashTableT<uint16_t, int>m_abbrToIndex;
HashTableT<uint16_t, const char *>m_abbrToName;
};
extern CountryCode g_countryCode;
#endif // GB_COUNTRYCODE_H