2017-04-01 09:19:00 +00:00
|
|
|
#include <Core/Defines.h>
|
2017-06-01 13:41:58 +00:00
|
|
|
#include <Common/hex.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/PODArray.h>
|
|
|
|
#include <Common/StringUtils.h>
|
2017-04-16 05:40:17 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <IO/WriteBufferFromString.h>
|
|
|
|
#include <IO/Operators.h>
|
2016-02-16 16:42:00 +00:00
|
|
|
#include <common/find_first_symbols.h>
|
2017-06-30 20:30:13 +00:00
|
|
|
#include <stdlib.h>
|
2017-04-16 05:40:17 +00:00
|
|
|
|
2010-06-04 18:25:25 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int CANNOT_PARSE_INPUT_ASSERTION_FAILED;
|
|
|
|
extern const int CANNOT_PARSE_ESCAPE_SEQUENCE;
|
|
|
|
extern const int CANNOT_PARSE_QUOTED_STRING;
|
|
|
|
extern const int INCORRECT_DATA;
|
2016-01-11 21:46:36 +00:00
|
|
|
}
|
|
|
|
|
2017-07-14 15:08:01 +00:00
|
|
|
template <class IteratorSrc, class IteratorDst>
|
2017-07-21 06:46:50 +00:00
|
|
|
void parseHex(IteratorSrc src, IteratorDst dst, const size_t num_bytes)
|
2017-06-15 09:12:32 +00:00
|
|
|
{
|
|
|
|
size_t src_pos = 0;
|
|
|
|
size_t dst_pos = 0;
|
|
|
|
for (; dst_pos < num_bytes; ++dst_pos)
|
|
|
|
{
|
|
|
|
dst[dst_pos] = unhex(src[src_pos]) * 16 + unhex(src[src_pos + 1]);
|
|
|
|
src_pos += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void parseUUID(const UInt8 * src36, UInt8 * dst16)
|
|
|
|
{
|
|
|
|
/// If string is not like UUID - implementation specific behaviour.
|
|
|
|
|
|
|
|
parseHex(&src36[0], &dst16[0], 4);
|
|
|
|
parseHex(&src36[9], &dst16[4], 2);
|
|
|
|
parseHex(&src36[14], &dst16[6], 2);
|
|
|
|
parseHex(&src36[19], &dst16[8], 2);
|
|
|
|
parseHex(&src36[24], &dst16[10], 6);
|
|
|
|
}
|
2012-09-24 05:40:45 +00:00
|
|
|
|
2017-07-14 15:08:01 +00:00
|
|
|
/** Function used when byte ordering is important when parsing uuid
|
|
|
|
* ex: When we create an UUID type
|
|
|
|
*/
|
|
|
|
void parseUUID(const UInt8 * src36, std::reverse_iterator<UInt8 *> dst16)
|
2017-06-30 20:30:13 +00:00
|
|
|
{
|
2017-07-14 15:08:01 +00:00
|
|
|
/// If string is not like UUID - implementation specific behaviour.
|
2017-06-30 20:30:13 +00:00
|
|
|
|
2017-07-14 15:08:01 +00:00
|
|
|
parseHex(&src36[0], dst16 + 8, 4);
|
|
|
|
parseHex(&src36[9], dst16 + 12, 2);
|
|
|
|
parseHex(&src36[14], dst16 + 14, 2);
|
|
|
|
parseHex(&src36[19], dst16, 2);
|
|
|
|
parseHex(&src36[24], dst16 + 2, 6);
|
2017-06-30 20:30:13 +00:00
|
|
|
}
|
|
|
|
|
2012-09-24 05:40:45 +00:00
|
|
|
static void __attribute__((__noinline__)) throwAtAssertionFailed(const char * s, ReadBuffer & buf)
|
|
|
|
{
|
2017-07-31 21:39:24 +00:00
|
|
|
WriteBufferFromOwnString out;
|
|
|
|
out << "Cannot parse input: expected " << escape << s;
|
2012-09-24 05:40:45 +00:00
|
|
|
|
2017-07-31 21:39:24 +00:00
|
|
|
if (buf.eof())
|
|
|
|
out << " at end of stream.";
|
|
|
|
else
|
|
|
|
out << " before: " << escape << String(buf.position(), std::min(SHOW_CHARS_ON_SYNTAX_ERROR, buf.buffer().end() - buf.position()));
|
2012-09-24 05:40:45 +00:00
|
|
|
|
2017-07-31 21:39:24 +00:00
|
|
|
throw Exception(out.str(), ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED);
|
2012-09-24 05:40:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-05 14:20:56 +00:00
|
|
|
bool checkString(const char * s, ReadBuffer & buf)
|
2010-06-04 18:25:25 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
for (; *s; ++s)
|
|
|
|
{
|
|
|
|
if (buf.eof() || *buf.position() != *s)
|
|
|
|
return false;
|
|
|
|
++buf.position();
|
|
|
|
}
|
|
|
|
return true;
|
2015-10-05 14:20:56 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 21:23:53 +00:00
|
|
|
|
2016-12-30 05:13:14 +00:00
|
|
|
bool checkStringCaseInsensitive(const char * s, ReadBuffer & buf)
|
2016-08-16 21:23:53 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
for (; *s; ++s)
|
|
|
|
{
|
|
|
|
if (buf.eof())
|
|
|
|
return false;
|
2016-08-16 21:23:53 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
char c = *buf.position();
|
|
|
|
if (!equalsCaseInsensitive(*s, c))
|
|
|
|
return false;
|
2016-08-16 21:23:53 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
++buf.position();
|
|
|
|
}
|
|
|
|
return true;
|
2016-08-16 21:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-05 14:20:56 +00:00
|
|
|
void assertString(const char * s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!checkString(s, buf))
|
|
|
|
throwAtAssertionFailed(s, buf);
|
2010-06-04 18:25:25 +00:00
|
|
|
}
|
|
|
|
|
2015-06-03 15:32:06 +00:00
|
|
|
void assertChar(char symbol, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.eof() || *buf.position() != symbol)
|
|
|
|
{
|
|
|
|
char err[2] = {symbol, '\0'};
|
|
|
|
throwAtAssertionFailed(err, buf);
|
|
|
|
}
|
|
|
|
++buf.position();
|
2015-06-03 15:32:06 +00:00
|
|
|
}
|
|
|
|
|
2014-03-27 11:29:40 +00:00
|
|
|
void assertEOF(ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!buf.eof())
|
|
|
|
throwAtAssertionFailed("eof", buf);
|
2014-03-27 11:29:40 +00:00
|
|
|
}
|
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
|
2016-12-30 05:13:14 +00:00
|
|
|
void assertStringCaseInsensitive(const char * s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!checkStringCaseInsensitive(s, buf))
|
|
|
|
throwAtAssertionFailed(s, buf);
|
2016-12-30 05:13:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool checkStringByFirstCharacterAndAssertTheRest(const char * s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.eof() || *buf.position() != *s)
|
|
|
|
return false;
|
2016-12-30 05:13:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
assertString(s, buf);
|
|
|
|
return true;
|
2016-12-30 05:13:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool checkStringByFirstCharacterAndAssertTheRestCaseInsensitive(const char * s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.eof())
|
|
|
|
return false;
|
2016-12-30 05:13:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
char c = *buf.position();
|
|
|
|
if (!equalsCaseInsensitive(*s, c))
|
|
|
|
return false;
|
2016-12-30 05:13:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
assertStringCaseInsensitive(s, buf);
|
|
|
|
return true;
|
2016-12-30 05:13:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
template <typename T>
|
2016-02-19 16:59:31 +00:00
|
|
|
static void appendToStringOrVector(T & s, const char * begin, const char * end)
|
2016-02-16 16:39:39 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.append(begin, end - begin);
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2016-04-15 00:33:21 +00:00
|
|
|
inline void appendToStringOrVector(PaddedPODArray<UInt8> & s, const char * begin, const char * end)
|
2016-02-16 16:39:39 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.insert(begin, end); /// TODO memcpySmall
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename Vector>
|
|
|
|
void readStringInto(Vector & s, ReadBuffer & buf)
|
2010-06-04 18:25:25 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
size_t bytes = 0;
|
|
|
|
for (; buf.position() + bytes != buf.buffer().end(); ++bytes)
|
|
|
|
if (buf.position()[bytes] == '\t' || buf.position()[bytes] == '\n')
|
|
|
|
break;
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
appendToStringOrVector(s, buf.position(), buf.position() + bytes);
|
|
|
|
buf.position() += bytes;
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.hasPendingData())
|
|
|
|
return;
|
|
|
|
}
|
2010-06-04 18:25:25 +00:00
|
|
|
}
|
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
void readString(String & s, ReadBuffer & buf)
|
2015-09-08 14:24:25 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.clear();
|
|
|
|
readStringInto(s, buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
template void readStringInto<PaddedPODArray<UInt8>>(PaddedPODArray<UInt8> & s, ReadBuffer & buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
template <typename Vector>
|
|
|
|
void readStringUntilEOFInto(Vector & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
size_t bytes = buf.buffer().end() - buf.position();
|
2015-09-08 14:24:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
appendToStringOrVector(s, buf.position(), buf.position() + bytes);
|
|
|
|
buf.position() += bytes;
|
2015-09-08 14:24:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.hasPendingData())
|
|
|
|
return;
|
|
|
|
}
|
2015-09-08 14:24:25 +00:00
|
|
|
}
|
2013-01-05 10:07:01 +00:00
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
void readStringUntilEOF(String & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.clear();
|
|
|
|
readStringUntilEOFInto(s, buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
template void readStringUntilEOFInto<PaddedPODArray<UInt8>>(PaddedPODArray<UInt8> & s, ReadBuffer & buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
|
|
|
|
|
2017-03-25 20:12:56 +00:00
|
|
|
/** Parse the escape sequence, which can be simple (one character after backslash) or more complex (multiple characters).
|
|
|
|
* It is assumed that the cursor is located on the `\` symbol
|
2015-11-25 03:11:17 +00:00
|
|
|
*/
|
2016-02-16 16:39:39 +00:00
|
|
|
template <typename Vector>
|
|
|
|
static void parseComplexEscapeSequence(Vector & s, ReadBuffer & buf)
|
2015-11-25 03:11:17 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
++buf.position();
|
|
|
|
if (buf.eof())
|
|
|
|
throw Exception("Cannot parse escape sequence", ErrorCodes::CANNOT_PARSE_ESCAPE_SEQUENCE);
|
|
|
|
|
|
|
|
if (*buf.position() == 'x')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
/// escape sequence of the form \ xAA
|
|
|
|
UInt8 c1;
|
|
|
|
UInt8 c2;
|
|
|
|
readPODBinary(c1, buf);
|
|
|
|
readPODBinary(c2, buf);
|
|
|
|
s.push_back(static_cast<char>(unhex(c1) * 16 + unhex(c2)));
|
|
|
|
}
|
|
|
|
else if (*buf.position() == 'N')
|
|
|
|
{
|
|
|
|
/// Support for NULLs: \N sequence must be parsed as empty string.
|
|
|
|
++buf.position();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/// The usual escape sequence of a single character.
|
|
|
|
s.push_back(parseEscapeSequence(*buf.position()));
|
|
|
|
++buf.position();
|
|
|
|
}
|
2015-11-25 03:11:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-08 21:07:14 +00:00
|
|
|
/// TODO Unify with the code in FunctionsVisitParam.h and JSON.h
|
2016-02-18 11:44:50 +00:00
|
|
|
template <typename Vector>
|
|
|
|
static void parseJSONEscapeSequence(Vector & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
++buf.position();
|
|
|
|
if (buf.eof())
|
|
|
|
throw Exception("Cannot parse escape sequence", ErrorCodes::CANNOT_PARSE_ESCAPE_SEQUENCE);
|
|
|
|
|
|
|
|
switch(*buf.position())
|
|
|
|
{
|
|
|
|
case '"':
|
|
|
|
s.push_back('"');
|
|
|
|
break;
|
|
|
|
case '\\':
|
|
|
|
s.push_back('\\');
|
|
|
|
break;
|
|
|
|
case '/':
|
|
|
|
s.push_back('/');
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
s.push_back('\b');
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
s.push_back('\f');
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
s.push_back('\n');
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
s.push_back('\r');
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
s.push_back('\t');
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
|
|
|
|
char hex_code[4];
|
|
|
|
readPODBinary(hex_code, buf);
|
|
|
|
|
|
|
|
/// \u0000 - special case
|
|
|
|
if (0 == memcmp(hex_code, "0000", 4))
|
|
|
|
{
|
|
|
|
s.push_back(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
UInt16 code_point =
|
|
|
|
unhex(hex_code[0]) * 4096
|
|
|
|
+ unhex(hex_code[1]) * 256
|
|
|
|
+ unhex(hex_code[2]) * 16
|
|
|
|
+ unhex(hex_code[3]);
|
|
|
|
|
|
|
|
if (code_point <= 0x7F)
|
|
|
|
{
|
|
|
|
s.push_back(code_point);
|
|
|
|
}
|
|
|
|
else if (code_point <= 0x7FF)
|
|
|
|
{
|
|
|
|
s.push_back(((code_point >> 6) & 0x1F) | 0xC0);
|
|
|
|
s.push_back((code_point & 0x3F) | 0x80);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/// Surrogate pair.
|
|
|
|
if (code_point >= 0xD800 && code_point <= 0xDBFF)
|
|
|
|
{
|
|
|
|
assertString("\\u", buf);
|
|
|
|
char second_hex_code[4];
|
|
|
|
readPODBinary(second_hex_code, buf);
|
|
|
|
|
|
|
|
UInt16 second_code_point =
|
|
|
|
unhex(second_hex_code[0]) * 4096
|
|
|
|
+ unhex(second_hex_code[1]) * 256
|
|
|
|
+ unhex(second_hex_code[2]) * 16
|
|
|
|
+ unhex(second_hex_code[3]);
|
|
|
|
|
|
|
|
if (second_code_point >= 0xDC00 && second_code_point <= 0xDFFF)
|
|
|
|
{
|
|
|
|
UInt32 full_code_point = 0x10000 + (code_point - 0xD800) * 1024 + (second_code_point - 0xDC00);
|
|
|
|
|
|
|
|
s.push_back(((full_code_point >> 18) & 0x07) | 0xF0);
|
|
|
|
s.push_back(((full_code_point >> 12) & 0x3F) | 0x80);
|
|
|
|
s.push_back(((full_code_point >> 6) & 0x3F) | 0x80);
|
|
|
|
s.push_back((full_code_point & 0x3F) | 0x80);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception("Incorrect surrogate pair of unicode escape sequences in JSON", ErrorCodes::CANNOT_PARSE_ESCAPE_SEQUENCE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s.push_back(((code_point >> 12) & 0x0F) | 0xE0);
|
|
|
|
s.push_back(((code_point >> 6) & 0x3F) | 0x80);
|
|
|
|
s.push_back((code_point & 0x3F) | 0x80);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
s.push_back(*buf.position());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
++buf.position();
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
template <typename Vector>
|
|
|
|
void readEscapedStringInto(Vector & s, ReadBuffer & buf)
|
2010-06-04 18:25:25 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
const char * next_pos = find_first_symbols<'\t', '\n', '\\'>(buf.position(), buf.buffer().end());
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
appendToStringOrVector(s, buf.position(), next_pos);
|
|
|
|
buf.position() += next_pos - buf.position(); /// Code looks complicated, because "buf.position() = next_pos" doens't work due to const-ness.
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!buf.hasPendingData())
|
|
|
|
continue;
|
2011-12-26 02:17:33 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (*buf.position() == '\t' || *buf.position() == '\n')
|
|
|
|
return;
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (*buf.position() == '\\')
|
|
|
|
parseComplexEscapeSequence(s, buf);
|
|
|
|
}
|
2010-06-04 18:25:25 +00:00
|
|
|
}
|
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
void readEscapedString(String & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.clear();
|
|
|
|
readEscapedStringInto(s, buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
template void readEscapedStringInto<PaddedPODArray<UInt8>>(PaddedPODArray<UInt8> & s, ReadBuffer & buf);
|
2016-02-19 16:59:31 +00:00
|
|
|
template void readEscapedStringInto<NullSink>(NullSink & s, ReadBuffer & buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
|
2011-06-15 18:54:18 +00:00
|
|
|
|
2017-06-25 03:43:37 +00:00
|
|
|
/** If enable_sql_style_quoting == true,
|
|
|
|
* strings like 'abc''def' will be parsed as abc'def.
|
|
|
|
* Please note, that even with SQL style quoting enabled,
|
|
|
|
* backslash escape sequences are also parsed,
|
|
|
|
* that could be slightly confusing.
|
|
|
|
*/
|
|
|
|
template <char quote, bool enable_sql_style_quoting, typename Vector>
|
2016-02-16 16:39:39 +00:00
|
|
|
static void readAnyQuotedStringInto(Vector & s, ReadBuffer & buf)
|
2010-06-04 18:25:25 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.eof() || *buf.position() != quote)
|
|
|
|
throw Exception("Cannot parse quoted string: expected opening quote",
|
|
|
|
ErrorCodes::CANNOT_PARSE_QUOTED_STRING);
|
|
|
|
++buf.position();
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
const char * next_pos = find_first_symbols<'\\', quote>(buf.position(), buf.buffer().end());
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
appendToStringOrVector(s, buf.position(), next_pos);
|
|
|
|
buf.position() += next_pos - buf.position();
|
2015-02-07 23:13:04 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!buf.hasPendingData())
|
|
|
|
continue;
|
2011-12-26 02:17:33 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (*buf.position() == quote)
|
|
|
|
{
|
|
|
|
++buf.position();
|
2017-06-25 03:43:37 +00:00
|
|
|
|
|
|
|
if (enable_sql_style_quoting && !buf.eof() && *buf.position() == quote)
|
|
|
|
{
|
|
|
|
s.push_back(quote);
|
|
|
|
++buf.position();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (*buf.position() == '\\')
|
|
|
|
parseComplexEscapeSequence(s, buf);
|
|
|
|
}
|
2010-06-04 18:25:25 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception("Cannot parse quoted string: expected closing quote",
|
|
|
|
ErrorCodes::CANNOT_PARSE_QUOTED_STRING);
|
2010-06-04 18:25:25 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 03:43:37 +00:00
|
|
|
template <bool enable_sql_style_quoting, typename Vector>
|
2016-02-16 16:39:39 +00:00
|
|
|
void readQuotedStringInto(Vector & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-06-25 03:43:37 +00:00
|
|
|
readAnyQuotedStringInto<'\'', enable_sql_style_quoting>(s, buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 03:43:37 +00:00
|
|
|
template <bool enable_sql_style_quoting, typename Vector>
|
2016-02-16 16:39:39 +00:00
|
|
|
void readDoubleQuotedStringInto(Vector & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-06-25 03:43:37 +00:00
|
|
|
readAnyQuotedStringInto<'"', enable_sql_style_quoting>(s, buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 03:43:37 +00:00
|
|
|
template <bool enable_sql_style_quoting, typename Vector>
|
2016-02-16 16:39:39 +00:00
|
|
|
void readBackQuotedStringInto(Vector & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-06-25 03:43:37 +00:00
|
|
|
readAnyQuotedStringInto<'`', enable_sql_style_quoting>(s, buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
2011-06-15 18:54:18 +00:00
|
|
|
|
|
|
|
void readQuotedString(String & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.clear();
|
2017-06-25 03:43:37 +00:00
|
|
|
readQuotedStringInto<false>(s, buf);
|
2011-06-15 18:54:18 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 03:43:37 +00:00
|
|
|
void readQuotedStringWithSQLStyle(String & s, ReadBuffer & buf)
|
|
|
|
{
|
|
|
|
s.clear();
|
|
|
|
readQuotedStringInto<true>(s, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template void readQuotedStringInto<true>(PaddedPODArray<UInt8> & s, ReadBuffer & buf);
|
|
|
|
template void readDoubleQuotedStringInto<false>(NullSink & s, ReadBuffer & buf);
|
2016-02-16 16:39:39 +00:00
|
|
|
|
2011-06-15 18:54:18 +00:00
|
|
|
void readDoubleQuotedString(String & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.clear();
|
2017-06-25 03:43:37 +00:00
|
|
|
readDoubleQuotedStringInto<false>(s, buf);
|
2011-06-15 18:54:18 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 03:43:37 +00:00
|
|
|
void readDoubleQuotedStringWithSQLStyle(String & s, ReadBuffer & buf)
|
|
|
|
{
|
|
|
|
s.clear();
|
|
|
|
readDoubleQuotedStringInto<true>(s, buf);
|
|
|
|
}
|
2016-02-16 16:39:39 +00:00
|
|
|
|
2011-11-01 17:57:37 +00:00
|
|
|
void readBackQuotedString(String & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.clear();
|
2017-06-25 03:43:37 +00:00
|
|
|
readBackQuotedStringInto<false>(s, buf);
|
2011-11-01 17:57:37 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 03:43:37 +00:00
|
|
|
void readBackQuotedStringWithSQLStyle(String & s, ReadBuffer & buf)
|
|
|
|
{
|
|
|
|
s.clear();
|
|
|
|
readBackQuotedStringInto<true>(s, buf);
|
|
|
|
}
|
2012-05-08 05:42:05 +00:00
|
|
|
|
2016-02-07 08:42:21 +00:00
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
template <typename Vector>
|
|
|
|
void readCSVStringInto(Vector & s, ReadBuffer & buf, const char delimiter)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.eof())
|
|
|
|
throwReadAfterEOF();
|
|
|
|
|
|
|
|
char maybe_quote = *buf.position();
|
|
|
|
|
|
|
|
/// Emptiness and not even in quotation marks.
|
|
|
|
if (maybe_quote == delimiter)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (maybe_quote == '\'' || maybe_quote == '"')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
|
|
|
|
/// The quoted case. We are looking for the next quotation mark.
|
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
const char * next_pos = reinterpret_cast<const char *>(memchr(buf.position(), maybe_quote, buf.buffer().end() - buf.position()));
|
|
|
|
|
|
|
|
if (nullptr == next_pos)
|
|
|
|
next_pos = buf.buffer().end();
|
|
|
|
|
|
|
|
appendToStringOrVector(s, buf.position(), next_pos);
|
|
|
|
buf.position() += next_pos - buf.position();
|
|
|
|
|
|
|
|
if (!buf.hasPendingData())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/// Now there is a quotation mark under the cursor. Is there any following?
|
|
|
|
++buf.position();
|
|
|
|
if (buf.eof())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (*buf.position() == maybe_quote)
|
|
|
|
{
|
|
|
|
s.push_back(maybe_quote);
|
|
|
|
++buf.position();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/// Unquoted case. Look for delimiter or \r or \n.
|
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
const char * next_pos = buf.position();
|
|
|
|
while (next_pos < buf.buffer().end()
|
|
|
|
&& *next_pos != delimiter && *next_pos != '\r' && *next_pos != '\n') /// NOTE You can make a SIMD version.
|
|
|
|
++next_pos;
|
|
|
|
|
|
|
|
appendToStringOrVector(s, buf.position(), next_pos);
|
|
|
|
buf.position() += next_pos - buf.position();
|
|
|
|
|
|
|
|
if (!buf.hasPendingData())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/** CSV format can contain insignificant spaces and tabs.
|
|
|
|
* Usually the task of skipping them is for the calling code.
|
|
|
|
* But in this case, it will be difficult to do this, so remove the trailing whitespace by yourself.
|
|
|
|
*/
|
|
|
|
size_t size = s.size();
|
|
|
|
while (size > 0
|
|
|
|
&& (s[size - 1] == ' ' || s[size - 1] == '\t'))
|
|
|
|
--size;
|
|
|
|
|
|
|
|
s.resize(size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-02-07 08:42:21 +00:00
|
|
|
}
|
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
void readCSVString(String & s, ReadBuffer & buf, const char delimiter)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.clear();
|
|
|
|
readCSVStringInto(s, buf, delimiter);
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
template void readCSVStringInto<PaddedPODArray<UInt8>>(PaddedPODArray<UInt8> & s, ReadBuffer & buf, const char delimiter);
|
2016-02-16 16:39:39 +00:00
|
|
|
|
2016-02-07 08:42:21 +00:00
|
|
|
|
2016-02-18 11:44:50 +00:00
|
|
|
template <typename Vector>
|
2016-03-07 04:31:10 +00:00
|
|
|
void readJSONStringInto(Vector & s, ReadBuffer & buf)
|
2016-02-18 11:44:50 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.eof() || *buf.position() != '"')
|
|
|
|
throw Exception("Cannot parse JSON string: expected opening quote",
|
|
|
|
ErrorCodes::CANNOT_PARSE_QUOTED_STRING);
|
|
|
|
++buf.position();
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
const char * next_pos = find_first_symbols<'\\', '"'>(buf.position(), buf.buffer().end());
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
appendToStringOrVector(s, buf.position(), next_pos);
|
|
|
|
buf.position() += next_pos - buf.position();
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!buf.hasPendingData())
|
|
|
|
continue;
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (*buf.position() == '"')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
return;
|
|
|
|
}
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (*buf.position() == '\\')
|
|
|
|
parseJSONEscapeSequence(s, buf);
|
|
|
|
}
|
2016-02-18 11:44:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception("Cannot parse JSON string: expected closing quote",
|
|
|
|
ErrorCodes::CANNOT_PARSE_QUOTED_STRING);
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void readJSONString(String & s, ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
s.clear();
|
|
|
|
readJSONStringInto(s, buf);
|
2016-02-18 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
template void readJSONStringInto<PaddedPODArray<UInt8>>(PaddedPODArray<UInt8> & s, ReadBuffer & buf);
|
2016-09-20 19:11:25 +00:00
|
|
|
template void readJSONStringInto<NullSink>(NullSink & s, ReadBuffer & buf);
|
2016-02-18 11:44:50 +00:00
|
|
|
|
|
|
|
|
2017-01-22 08:33:16 +00:00
|
|
|
void readDateTimeTextFallback(time_t & datetime, ReadBuffer & buf, const DateLUTImpl & date_lut)
|
2015-04-01 02:55:52 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto DATE_TIME_BROKEN_DOWN_LENGTH = 19;
|
|
|
|
static constexpr auto UNIX_TIMESTAMP_MAX_LENGTH = 10;
|
|
|
|
|
|
|
|
char s[DATE_TIME_BROKEN_DOWN_LENGTH];
|
|
|
|
char * s_pos = s;
|
|
|
|
|
|
|
|
/// A piece similar to unix timestamp.
|
|
|
|
while (s_pos < s + UNIX_TIMESTAMP_MAX_LENGTH && !buf.eof() && isNumericASCII(*buf.position()))
|
|
|
|
{
|
|
|
|
*s_pos = *buf.position();
|
|
|
|
++s_pos;
|
|
|
|
++buf.position();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 2015-01-01 01:02:03
|
|
|
|
if (s_pos == s + 4 && !buf.eof() && (*buf.position() < '0' || *buf.position() > '9'))
|
|
|
|
{
|
|
|
|
const size_t remaining_size = DATE_TIME_BROKEN_DOWN_LENGTH - (s_pos - s);
|
|
|
|
size_t size = buf.read(s_pos, remaining_size);
|
|
|
|
if (remaining_size != size)
|
|
|
|
{
|
|
|
|
s_pos[size] = 0;
|
|
|
|
throw Exception(std::string("Cannot parse datetime ") + s, ErrorCodes::CANNOT_PARSE_DATETIME);
|
|
|
|
}
|
|
|
|
|
|
|
|
UInt16 year = (s[0] - '0') * 1000 + (s[1] - '0') * 100 + (s[2] - '0') * 10 + (s[3] - '0');
|
|
|
|
UInt8 month = (s[5] - '0') * 10 + (s[6] - '0');
|
|
|
|
UInt8 day = (s[8] - '0') * 10 + (s[9] - '0');
|
|
|
|
|
|
|
|
UInt8 hour = (s[11] - '0') * 10 + (s[12] - '0');
|
|
|
|
UInt8 minute = (s[14] - '0') * 10 + (s[15] - '0');
|
|
|
|
UInt8 second = (s[17] - '0') * 10 + (s[18] - '0');
|
|
|
|
|
|
|
|
if (unlikely(year == 0))
|
|
|
|
datetime = 0;
|
|
|
|
else
|
|
|
|
datetime = date_lut.makeDateTime(year, month, day, hour, minute, second);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
datetime = parse<time_t>(s, s_pos - s);
|
2015-04-01 02:55:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-28 18:45:28 +00:00
|
|
|
void skipJSONFieldPlain(ReadBuffer & buf, const StringRef & name_of_filed)
|
2016-09-20 19:11:25 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (buf.eof())
|
|
|
|
throw Exception("Unexpected EOF for key '" + name_of_filed.toString() + "'", ErrorCodes::INCORRECT_DATA);
|
|
|
|
else if (*buf.position() == '"') /// skip double-quoted string
|
|
|
|
{
|
|
|
|
NullSink sink;
|
|
|
|
readJSONStringInto(sink, buf);
|
|
|
|
}
|
2017-07-11 18:22:02 +00:00
|
|
|
else if (isNumericASCII(*buf.position()) || *buf.position() == '-' || *buf.position() == '+') /// skip number
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
double v;
|
|
|
|
if (!tryReadFloatText(v, buf))
|
|
|
|
throw Exception("Expected a number field for key '" + name_of_filed.toString() + "'", ErrorCodes::INCORRECT_DATA);
|
|
|
|
}
|
|
|
|
else if (*buf.position() == 'n') /// skip null
|
|
|
|
{
|
|
|
|
assertString("null", buf);
|
|
|
|
}
|
|
|
|
else if (*buf.position() == 't') /// skip true
|
|
|
|
{
|
|
|
|
assertString("true", buf);
|
|
|
|
}
|
|
|
|
else if (*buf.position() == 'f') /// skip false
|
|
|
|
{
|
|
|
|
assertString("false", buf);
|
|
|
|
}
|
|
|
|
else if (*buf.position() == '[')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
skipWhitespaceIfAny(buf);
|
|
|
|
|
|
|
|
if (!buf.eof() && *buf.position() == ']') /// skip empty array
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
skipJSONFieldPlain(buf, name_of_filed);
|
|
|
|
skipWhitespaceIfAny(buf);
|
|
|
|
|
|
|
|
if (!buf.eof() && *buf.position() == ',')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
skipWhitespaceIfAny(buf);
|
|
|
|
}
|
|
|
|
else if (!buf.eof() && *buf.position() == ']')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception("Unexpected symbol for key '" + name_of_filed.toString() + "'", ErrorCodes::INCORRECT_DATA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (*buf.position() == '{') /// fail on objects
|
|
|
|
{
|
|
|
|
throw Exception("Unexpected nested field for key '" + name_of_filed.toString() + "'", ErrorCodes::INCORRECT_DATA);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-07-11 18:22:02 +00:00
|
|
|
throw Exception("Unexpected symbol '" + std::string(*buf.position(), 1) + "' for key '" + name_of_filed.toString() + "'", ErrorCodes::INCORRECT_DATA);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2016-09-20 19:11:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-08 05:42:05 +00:00
|
|
|
void readException(Exception & e, ReadBuffer & buf, const String & additional_message)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
int code = 0;
|
|
|
|
String name;
|
|
|
|
String message;
|
|
|
|
String stack_trace;
|
|
|
|
bool has_nested = false;
|
2015-04-01 02:55:52 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
readBinary(code, buf);
|
|
|
|
readBinary(name, buf);
|
|
|
|
readBinary(message, buf);
|
|
|
|
readBinary(stack_trace, buf);
|
|
|
|
readBinary(has_nested, buf);
|
2012-05-08 05:42:05 +00:00
|
|
|
|
2017-07-31 21:39:24 +00:00
|
|
|
WriteBufferFromOwnString out;
|
2012-05-08 05:42:05 +00:00
|
|
|
|
2017-07-31 21:39:24 +00:00
|
|
|
if (!additional_message.empty())
|
|
|
|
out << additional_message << ". ";
|
2012-05-08 05:42:05 +00:00
|
|
|
|
2017-07-31 21:39:24 +00:00
|
|
|
if (name != "DB::Exception")
|
|
|
|
out << name << ". ";
|
2012-05-08 05:42:05 +00:00
|
|
|
|
2017-07-31 21:39:24 +00:00
|
|
|
out << message
|
|
|
|
<< ". Stack trace:\n\n" << stack_trace;
|
2012-05-08 05:42:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (has_nested)
|
|
|
|
{
|
|
|
|
Exception nested;
|
|
|
|
readException(nested, buf);
|
2017-07-31 21:39:24 +00:00
|
|
|
e = Exception(out.str(), nested, code);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
2017-07-31 21:39:24 +00:00
|
|
|
e = Exception(out.str(), code);
|
2012-05-08 05:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void readAndThrowException(ReadBuffer & buf, const String & additional_message)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
Exception e;
|
|
|
|
readException(e, buf, additional_message);
|
|
|
|
e.rethrow();
|
2012-05-08 05:42:05 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 21:23:53 +00:00
|
|
|
|
|
|
|
/** Must successfully parse inf, INF and Infinity.
|
|
|
|
* All other variants in different cases are also parsed for simplicity.
|
|
|
|
*/
|
|
|
|
bool parseInfinity(ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!checkStringCaseInsensitive("inf", buf))
|
|
|
|
return false;
|
2016-08-16 21:23:53 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Just inf.
|
|
|
|
if (buf.eof() || !isWordCharASCII(*buf.position()))
|
|
|
|
return true;
|
2016-08-16 21:23:53 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// If word characters after inf, it should be infinity.
|
|
|
|
return checkStringCaseInsensitive("inity", buf);
|
2016-08-16 21:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Must successfully parse nan, NAN and NaN.
|
|
|
|
* All other variants in different cases are also parsed for simplicity.
|
|
|
|
*/
|
|
|
|
bool parseNaN(ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
return checkStringCaseInsensitive("nan", buf);
|
2016-08-16 21:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void assertInfinity(ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!parseInfinity(buf))
|
|
|
|
throw Exception("Cannot parse infinity.", ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED);
|
2016-08-16 21:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void assertNaN(ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!parseNaN(buf))
|
|
|
|
throw Exception("Cannot parse NaN.", ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED);
|
2016-08-16 21:23:53 +00:00
|
|
|
}
|
|
|
|
|
2017-01-27 04:29:47 +00:00
|
|
|
|
|
|
|
void skipToNextLineOrEOF(ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
const char * next_pos = find_first_symbols<'\n'>(buf.position(), buf.buffer().end());
|
|
|
|
buf.position() += next_pos - buf.position();
|
2017-01-27 04:29:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!buf.hasPendingData())
|
|
|
|
continue;
|
2017-01-27 04:29:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (*buf.position() == '\n')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-01-27 04:29:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void skipToUnescapedNextLineOrEOF(ReadBuffer & buf)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
while (!buf.eof())
|
|
|
|
{
|
|
|
|
const char * next_pos = find_first_symbols<'\n', '\\'>(buf.position(), buf.buffer().end());
|
|
|
|
buf.position() += next_pos - buf.position();
|
|
|
|
|
|
|
|
if (!buf.hasPendingData())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (*buf.position() == '\n')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*buf.position() == '\\')
|
|
|
|
{
|
|
|
|
++buf.position();
|
|
|
|
if (buf.eof())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/// Skip escaped character. We do not consider escape sequences with more than one charater after backslash (\x01).
|
|
|
|
/// It's ok for the purpose of this function, because we are interested only in \n and \\.
|
|
|
|
++buf.position();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2017-01-27 04:29:47 +00:00
|
|
|
}
|
|
|
|
|
2010-06-04 18:25:25 +00:00
|
|
|
}
|