-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringTable.cpp
More file actions
46 lines (37 loc) · 1.01 KB
/
stringTable.cpp
File metadata and controls
46 lines (37 loc) · 1.01 KB
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
#include "stringTable.hpp"
#include <set>
#include <string>
#include <cstring>
namespace {
class SymbolTable {
public:
const char* add(const std::string symbol) {
return _symbols.insert(symbol).first->c_str();
}
private:
typedef std::set<std::string> Symbols;
Symbols _symbols;
};
SymbolTable SYMBOL_TABLE;
std::string replaced(std::string s, const std::string& from, const std::string& to) {
size_t startIndex = s.find(from);
while (startIndex != std::string::npos) {
s = s.replace(startIndex, from.length(), to);
startIndex = s.find(from);
}
return s;
}
std::string replacedEscapes(std::string s) {
s = replaced(s, "\\n", "\n");
s = replaced(s, "\\t", "\t");
return s;
}
} // anonymous namespace
const char* addSymbol(const char* symbol) {
return SYMBOL_TABLE.add(symbol);
}
const char* addString(const char* s) {
const std::string strippedQuotes(s + 1, strlen(s) - 2);
const std::string processedString(replacedEscapes(strippedQuotes));
return SYMBOL_TABLE.add(processedString);
}