-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQPDFSystemError.cc
42 lines (37 loc) · 1.01 KB
/
QPDFSystemError.cc
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
#include <qpdf/QPDFSystemError.hh>
#include <cstring>
QPDFSystemError::QPDFSystemError(std::string const& description, int system_errno) :
std::runtime_error(createWhat(description, system_errno)),
description(description),
system_errno(system_errno)
{
}
std::string
QPDFSystemError::createWhat(std::string const& description, int system_errno)
{
std::string message;
#ifdef _MSC_VER
// "94" is mentioned in the MSVC docs, but it's still safe if the
// message is longer. strerror_s is a templated function that
// knows the size of buf and truncates.
char buf[94];
if (strerror_s(buf, system_errno) != 0) {
message = description + ": failed with an unknown error";
} else {
message = description + ": " + buf;
}
#else
message = description + ": " + strerror(system_errno);
#endif
return message;
}
std::string const&
QPDFSystemError::getDescription() const
{
return this->description;
}
int
QPDFSystemError::getErrno() const
{
return this->system_errno;
}