-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathException.h
84 lines (68 loc) · 2 KB
/
Exception.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
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
#ifndef _MY_OPENGLAPP_1_EXCEPTIONS_HPP_
#define _MY_OPENGLAPP_1_EXCEPTIONS_HPP_
// ============================================================================
// ============================================================================
inline std::string TrimPath(std::string path) // inline - ÷òîáû ëèíêîâùèê íå ðóãàëñÿ.
{
size_t pos = path.find_last_of('\\', path.length());
size_t n = path.length() - pos;
path = path.substr(pos + 1, n - 1);
return path;
}
// ------------------------------------------------------------------
class TException
{
public:
std::string File;
int Line;
std::string Caption;
std::string Text;
TException(const std::string& file, int line,
const std::string& text, const std::string& caption)
: Line(line), Caption(caption)
{
size_t pos = file.find_last_of('\\', file.length());
// Ïðîâåðêó pos == max size_t
if (pos > 100000)
{
File = file; // std::move
}
else
{
size_t n = file.length() - pos;
File = file.substr(pos + 1, n - 1);
}
Text = "In \"" + File + "\" at line " + std::to_string(Line) + "\n\r\n\r" + text;
}
};
// ------------------------------------------------------------------
class TException2
{
public:
std::string File;
int Line;
std::string Caption;
std::string Text;
TException2(const std::string& file, int line,
const std::string& text, const std::string& caption)
: Line(line), Caption(caption)
{
size_t pos = file.find_last_of('\\', file.length());
// Ïðîâåðêó pos == max size_t
if (pos > 100000)
{
File = file; // std::move
}
else
{
size_t n = file.length() - pos;
File = file.substr(pos + 1, n - 1);
}
Text = "In \"" + File + "\" at line " + std::to_string(Line) + "\n\r\n\r" + text;
}
};
// ------------------------------------------------------------------
#define MY_ASSERT(condition, text, caption) \
if (!(condition)) throw TException(__FILE__, __LINE__, text, caption);
// ----------------------------------------------------------------------------
#endif // _MY_OPENGLAPP_1_EXCEPTIONS_HPP_