mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
fafecb3c25
* Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development): removed very old tests #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447
65 lines
1.4 KiB
C++
65 lines
1.4 KiB
C++
#include <Formats/verbosePrintString.h>
|
|
#include <Common/hex.h>
|
|
#include <IO/Operators.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void verbosePrintString(const char * begin, const char * end, WriteBuffer & out)
|
|
{
|
|
if (end == begin)
|
|
{
|
|
out << "<EMPTY>";
|
|
return;
|
|
}
|
|
|
|
out << "\"";
|
|
|
|
for (auto pos = begin; pos < end; ++pos)
|
|
{
|
|
switch (*pos)
|
|
{
|
|
case '\0':
|
|
out << "<ASCII NUL>";
|
|
break;
|
|
case '\b':
|
|
out << "<BACKSPACE>";
|
|
break;
|
|
case '\f':
|
|
out << "<FORM FEED>";
|
|
break;
|
|
case '\n':
|
|
out << "<LINE FEED>";
|
|
break;
|
|
case '\r':
|
|
out << "<CARRIAGE RETURN>";
|
|
break;
|
|
case '\t':
|
|
out << "<TAB>";
|
|
break;
|
|
case '\\':
|
|
out << "<BACKSLASH>";
|
|
break;
|
|
case '"':
|
|
out << "<DOUBLE QUOTE>";
|
|
break;
|
|
case '\'':
|
|
out << "<SINGLE QUOTE>";
|
|
break;
|
|
|
|
default:
|
|
{
|
|
if (static_cast<unsigned char>(*pos) < 32) /// ASCII control characters
|
|
out << "<0x" << hexDigitUppercase(*pos / 16) << hexDigitUppercase(*pos % 16) << ">";
|
|
else
|
|
out << *pos;
|
|
}
|
|
}
|
|
}
|
|
|
|
out << "\"";
|
|
}
|
|
|
|
}
|