mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
1a0b5f33b3
cmake/target.cmake defines macros for the supported platforms, this commit changes predefined system macros to our own macros. __linux__ --> OS_LINUX __APPLE__ --> OS_DARWIN __FreeBSD__ --> OS_FREEBSD
85 lines
1.4 KiB
C++
85 lines
1.4 KiB
C++
#include "getMappedArea.h"
|
|
#include <Common/Exception.h>
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
#include <Common/StringUtils/StringUtils.h>
|
|
#include <Common/hex.h>
|
|
#include <IO/ReadBufferFromFile.h>
|
|
#include <IO/ReadHelpers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
}
|
|
|
|
|
|
namespace
|
|
{
|
|
|
|
uintptr_t readAddressHex(DB::ReadBuffer & in)
|
|
{
|
|
uintptr_t res = 0;
|
|
while (!in.eof())
|
|
{
|
|
if (isHexDigit(*in.position()))
|
|
{
|
|
res *= 16;
|
|
res += unhex(*in.position());
|
|
++in.position();
|
|
}
|
|
else
|
|
break;
|
|
}
|
|
return res;
|
|
}
|
|
|
|
}
|
|
|
|
std::pair<void *, size_t> getMappedArea(void * ptr)
|
|
{
|
|
using namespace DB;
|
|
|
|
uintptr_t uintptr = reinterpret_cast<uintptr_t>(ptr);
|
|
ReadBufferFromFile in("/proc/self/maps");
|
|
|
|
while (!in.eof())
|
|
{
|
|
uintptr_t begin = readAddressHex(in);
|
|
assertChar('-', in);
|
|
uintptr_t end = readAddressHex(in);
|
|
skipToNextLineOrEOF(in);
|
|
|
|
if (begin <= uintptr && uintptr < end)
|
|
return {reinterpret_cast<void *>(begin), end - begin};
|
|
}
|
|
|
|
throw Exception("Cannot find mapped area for pointer", ErrorCodes::LOGICAL_ERROR);
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int NOT_IMPLEMENTED;
|
|
}
|
|
|
|
std::pair<void *, size_t> getMappedArea(void *)
|
|
{
|
|
throw Exception("The function getMappedArea is implemented only for Linux", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|