-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathIDFromer.cpp
63 lines (54 loc) · 1.02 KB
/
IDFromer.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
#include "IDFromer.h"
IDFromer::IDFromer()
{
int flag = bFile();
if(flag == 1)
throw "file not found";
else if(flag == 2)
throw "file is empty";
else
LoadIDLoc();
}
int IDFromer::bFile()
{
std::ifstream in_file;
in_file.open("./id");
if(!in_file)
{
in_file.close();
return 1;
}
char ch = in_file.get();
if(in_file.eof())
{
in_file.close();
return 2;
}
return 0;
}
void IDFromer::LoadIDLoc()
{
std::ifstream in_file;
in_file.open("./id");
std::uint32_t id;
std::string loc;
while (!in_file.eof())
{
in_file>>id;
in_file>>loc;
data[id] = loc;
}
in_file.close();
}
std::string IDFromer::get(std::uint32_t number)
{
if(number < size_s || number > size_b)
return "number erro";
if(data.find(number) == data.end())
return "not found";
return data[number];
}
std::string IDFromer::operator[] (std::uint32_t number)
{
return get(number);
}