Skip to content

Revert "chore: minor clean ups before introducing ProvidedBuffers (#4… #4719

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 8 additions & 14 deletions src/facade/dragonfly_connection.cc
Original file line number Diff line number Diff line change
@@ -1150,11 +1150,8 @@ Connection::ParserStatus Connection::ParseRedis() {
return {FromArgs(std::move(parse_args), tlh)};
};

RedisParser::Buffer input_buf = io_buf_.InputBuffer();
size_t available_to_parse = io_buf_.InputLen();

do {
result = redis_parser_->Parse(input_buf, &consumed, &parse_args);
result = redis_parser_->Parse(io_buf_.InputBuffer(), &consumed, &parse_args);
request_consumed_bytes_ += consumed;
if (result == RedisParser::OK && !parse_args.empty()) {
if (RespExpr& first = parse_args.front(); first.type == RespExpr::STRING)
@@ -1163,28 +1160,24 @@ Connection::ParserStatus Connection::ParseRedis() {
if (io_req_size_hist)
io_req_size_hist->Add(request_consumed_bytes_);
request_consumed_bytes_ = 0;
bool has_more = consumed < available_to_parse;
bool has_more = consumed < io_buf_.InputLen();

if (tl_traffic_logger.log_file && IsMain() /* log only on the main interface */) {
LogTraffic(id_, has_more, absl::MakeSpan(parse_args), service_->GetContextInfo(cc_.get()));
}

DispatchSingle(has_more, dispatch_sync, dispatch_async);
}
available_to_parse -= consumed;
input_buf.remove_prefix(consumed);
} while (RedisParser::OK == result && available_to_parse > 0 && !reply_builder_->GetError());
io_buf_.ConsumeInput(consumed);
} while (RedisParser::OK == result && io_buf_.InputLen() > 0 && !reply_builder_->GetError());

io_buf_.ConsumeInput(io_buf_.InputLen());
parser_error_ = result;
if (result == RedisParser::OK)
return OK;

if (result == RedisParser::INPUT_PENDING)
return NEED_MORE;

VLOG(1) << "Parser error " << result;

return ERROR;
}

@@ -1312,11 +1305,12 @@ void Connection::HandleMigrateRequest() {
}

error_code Connection::HandleRecvSocket() {
phase_ = READ_SOCKET;

io::MutableBytes append_buf = io_buf_.AppendBuffer();
DCHECK(!append_buf.empty());

phase_ = READ_SOCKET;
error_code ec;

::io::Result<size_t> recv_sz = socket_->Recv(append_buf);
last_interaction_ = time(nullptr);

@@ -1330,7 +1324,7 @@ error_code Connection::HandleRecvSocket() {
stats_->io_read_bytes += commit_sz;
++stats_->io_read_cnt;

return {};
return ec;
}

auto Connection::IoLoop() -> variant<error_code, ParserStatus> {
2 changes: 1 addition & 1 deletion src/facade/facade_test.cc
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ bool RespMatcher::MatchAndExplain(RespExpr e, MatchResultListener* listener) con

if (type_ == RespExpr::STRING || type_ == RespExpr::ERROR) {
RespExpr::Buffer ebuf = e.GetBuf();
std::string_view actual{reinterpret_cast<const char*>(ebuf.data()), ebuf.size()};
std::string_view actual{reinterpret_cast<char*>(ebuf.data()), ebuf.size()};

if (type_ == RespExpr::ERROR && !absl::StrContains(actual, exp_str_)) {
*listener << "Actual does not contain '" << exp_str_ << "'";
18 changes: 9 additions & 9 deletions src/facade/redis_parser.cc
Original file line number Diff line number Diff line change
@@ -185,11 +185,11 @@ void RedisParser::StashState(RespExpr::Vec* res) {
auto RedisParser::ParseInline(Buffer str) -> ResultConsumed {
DCHECK(!str.empty());

const uint8_t* ptr = str.begin();
const uint8_t* end = str.end();
const uint8_t* token_start = ptr;
uint8_t* ptr = str.begin();
uint8_t* end = str.end();
uint8_t* token_start = ptr;

auto find_token_end = [](const uint8_t* ptr, const uint8_t* end) {
auto find_token_end = [](uint8_t* ptr, uint8_t* end) {
while (ptr != end && *ptr > 32)
++ptr;
return ptr;
@@ -411,8 +411,8 @@ auto RedisParser::ParseArg(Buffer str) -> ResultConsumed {
return ConsumeArrayLen(str);
}

const char* s = reinterpret_cast<const char*>(str.data());
const char* eol = reinterpret_cast<const char*>(memchr(s, '\n', str.size()));
char* s = reinterpret_cast<char*>(str.data());
char* eol = reinterpret_cast<char*>(memchr(s, '\n', str.size()));

// TODO: in client mode we still may not consume everything (see INPUT_PENDING below).
// It's not a problem, because we need consume all the input only in server mode.
@@ -428,7 +428,7 @@ auto RedisParser::ParseArg(Buffer str) -> ResultConsumed {
return {BAD_STRING, 0};

cached_expr_->emplace_back(arg_c_ == '+' ? RespExpr::STRING : RespExpr::ERROR);
cached_expr_->back().u = Buffer{reinterpret_cast<const uint8_t*>(s), size_t((eol - 1) - s)};
cached_expr_->back().u = Buffer{reinterpret_cast<uint8_t*>(s), size_t((eol - 1) - s)};
} else if (arg_c_ == ':') {
DCHECK(!server_mode_);
if (!eol) {
@@ -477,7 +477,7 @@ auto RedisParser::ConsumeBulk(Buffer str) -> ResultConsumed {
// is_broken_token_ can be false, if we just parsed the bulk length but have
// not parsed the token itself.
if (is_broken_token_) {
memcpy(const_cast<uint8_t*>(bulk_str.end()), str.data(), bulk_len_);
memcpy(bulk_str.end(), str.data(), bulk_len_);
bulk_str = Buffer{bulk_str.data(), bulk_str.size() + bulk_len_};
} else {
bulk_str = str.subspan(0, bulk_len_);
@@ -506,7 +506,7 @@ auto RedisParser::ConsumeBulk(Buffer str) -> ResultConsumed {
size_t len = std::min<size_t>(str.size(), bulk_len_);

if (is_broken_token_) {
memcpy(const_cast<uint8_t*>(bulk_str.end()), str.data(), len);
memcpy(bulk_str.end(), str.data(), len);
bulk_str = Buffer{bulk_str.data(), bulk_str.size() + len};
DVLOG(1) << "Extending bulk stash to size " << bulk_str.size();
} else {
4 changes: 2 additions & 2 deletions src/facade/resp_expr.h
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ namespace facade {

class RespExpr {
public:
using Buffer = absl::Span<const uint8_t>;
using Buffer = absl::Span<uint8_t>;

enum Type : uint8_t { STRING, ARRAY, INT64, DOUBLE, NIL, NIL_ARRAY, ERROR };

@@ -70,7 +70,7 @@ using RespVec = RespExpr::Vec;
using RespSpan = absl::Span<const RespExpr>;

inline std::string_view ToSV(RespExpr::Buffer buf) {
return std::string_view{reinterpret_cast<const char*>(buf.data()), buf.size()};
return std::string_view{reinterpret_cast<char*>(buf.data()), buf.size()};
}

} // namespace facade