Files
scylladb/redis/request.hh
Avi Kivity f3eade2f62 treewide: relicense to ScyllaDB-Source-Available-1.0
Drop the AGPL license in favor of a source-available license.
See the blog post [1] for details.

[1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
2024-12-18 17:45:13 +02:00

38 lines
637 B
C++

/*
* Copyright (C) 2019 pengjian.uestc @ gmail.com
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#pragma once
#include <vector>
#include "bytes.hh"
namespace redis {
enum class request_state {
error,
eof,
ok,
};
struct request {
request_state _state;
bytes _command;
uint32_t _args_count;
std::vector<bytes> _args;
size_t arguments_size() const { return _args.size(); }
size_t total_request_size() const {
size_t r = 0;
for (size_t i = 0; i < _args.size(); ++i) {
r += _args[i].size();
}
return r;
}
};
}