-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbinfs.cpp
187 lines (162 loc) · 5.11 KB
/
binfs.cpp
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#include "binfs.h"
namespace BinFS
{
BinFS::BinFS(std::string dirpath_) : dirpath(dirpath_){};
BinFS::~BinFS(){};
bool BinFS::file_exists(const std::string &filename)
{
std::ifstream file(filename.c_str());
return file.good();
}
std::string BinFS::read_file(const std::string &filename)
{
dirpath = dirpath == "" ? "./" : dirpath + "/";
std::string filepath(dirpath + filename);
if (!file_exists(filepath))
{
throw std::runtime_error(filepath + " does not exists!");
}
std::ifstream file(filepath, std::ios::in | std::ios::binary | std::ios::ate);
std::ifstream::pos_type size;
char *buffer = nullptr;
if (file.is_open())
{
size = file.tellg();
buffer = new char[size];
file.seekg(0, std::ios::beg);
file.read(buffer, size);
file.close();
}
std::string str(buffer, size);
return str;
}
std::string BinFS::string_to_hex(const std::string &in)
{
std::stringstream ss;
ss << std::hex << std::setfill('0');
for (size_t i = 0; in.length() > i; ++i)
{
ss << std::setw(2) << static_cast<unsigned int>(static_cast<unsigned char>(in[i]));
}
return ss.str();
}
std::string BinFS::hex_to_string(const std::string &in)
{
std::string output;
if ((in.length() % 2) != 0)
{
throw std::runtime_error("string is not valid length!");
}
size_t cnt = in.length() / 2;
for (size_t i = 0; cnt > i; ++i)
{
uint32_t s = 0;
std::stringstream ss;
ss << std::hex << in.substr(i * 2, 2);
ss >> s;
output.push_back(static_cast<unsigned char>(s));
}
return output;
}
void BinFS::add_file(const std::string &filename)
{
std::string data = read_file(filename);
std::string hexdata = string_to_hex(data);
files.emplace_back(filename, hexdata);
}
void BinFS::remove_file(const std::string &filename)
{
auto it = files.begin();
for (const std::pair<std::string, std::string> &file : files)
{
if (file.first == filename)
{
files.erase(it);
return;
}
it++;
}
}
std::string BinFS::get_file(const std::string &filename)
{
auto it = files.begin();
for (const std::pair<std::string, std::string> &file : files)
{
if (file.first == filename)
{
return hex_to_string(file.second);
}
it++;
}
throw std::runtime_error(filename + " not found!");
}
void BinFS::output_hpp_file(const std::string &filename)
{
std::ofstream out;
out.open(filename);
out << "#ifndef _BINFS_OUTPUT_HPP_" << std::endl;
out << "#define _BINFS_OUTPUT_HPP_" << std::endl;
out << std::endl;
out << "#include <string>" << std::endl;
out << "#include <vector>" << std::endl;
out << "#include <iostream>" << std::endl;
out << "#include <fstream>" << std::endl;
out << "#include <sstream>" << std::endl;
out << "#include <iomanip>" << std::endl;
out << std::endl;
out << "namespace BinFS" << std::endl;
out << "{" << std::endl;
out << std::endl;
out << "class BinFS" << std::endl;
out << "{" << std::endl;
out << "private:" << std::endl;
out << " std::vector<std::pair<std::string, std::string>> files;" << std::endl;
out << " std::string hex_to_string(const std::string &in)" << std::endl;
out << " {" << std::endl;
out << " std::string output;" << std::endl;
out << " if ((in.length() % 2) != 0)" << std::endl;
out << " {" << std::endl;
out << " throw std::runtime_error(\"string is not valid length!\");" << std::endl;
out << " }" << std::endl;
out << " size_t cnt = in.length() / 2;" << std::endl;
out << " for (size_t i = 0; cnt > i; ++i)" << std::endl;
out << " {" << std::endl;
out << " uint32_t s = 0;" << std::endl;
out << " std::stringstream ss;" << std::endl;
out << " ss << std::hex << in.substr(i * 2, 2);" << std::endl;
out << " ss >> s;" << std::endl;
out << " output.push_back(static_cast<unsigned char>(s));" << std::endl;
out << " }" << std::endl;
out << " return output;" << std::endl;
out << " }" << std::endl;
out << "public:" << std::endl;
out << " BinFS() {};" << std::endl;
out << " ~BinFS() {};" << std::endl;
out << " std::string get_file(const std::string &filename)" << std::endl;
out << " {" << std::endl;
out << " auto it = files.begin();" << std::endl;
out << " for (const std::pair<std::string, std::string> &file : files)" << std::endl;
out << " {" << std::endl;
out << " if (file.first == filename)" << std::endl;
out << " {" << std::endl;
out << " return hex_to_string(file.second);" << std::endl;
out << " }" << std::endl;
out << " it++;" << std::endl;
out << " }" << std::endl;
out << " throw std::runtime_error(filename + \" not found!\");" << std::endl;
out << " }" << std::endl;
out << " void init()" << std::endl;
out << " {" << std::endl;
for (const std::pair<std::string, std::string> &file : files)
{
out << " files.emplace_back(\"" << file.first << "\",\"" << file.second << "\");" << std::endl;
}
out << " }" << std::endl;
out << "};" << std::endl;
out << std::endl;
out << "} // BinFS" << std::endl;
out << std::endl;
out << "#endif // _BINFS_OUTPUT_HPP_" << std::endl;
out << std::endl;
}
} // BinFS