Original IDL generated code was hardcoded to always use bytes_ostream. This patch makes the output stream a template parameter so that any valid output stream can be used. Unfortunately, making IDL writers generic requires updates in the code that uses them, this is fixed in C++17 which would be able to deduce the parameter in most cases.
197 lines
6.3 KiB
C++
197 lines
6.3 KiB
C++
/*
|
|
* Copyright (C) 2015 ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* This file is part of Scylla.
|
|
*
|
|
* Scylla is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Scylla is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.hh"
|
|
#include "atomic_cell.hh"
|
|
#include "query-request.hh"
|
|
#include "query-result.hh"
|
|
#include "digest_algorithm.hh"
|
|
|
|
#include "idl/uuid.dist.hh"
|
|
#include "idl/keys.dist.hh"
|
|
#include "idl/query.dist.hh"
|
|
#include "serializer_impl.hh"
|
|
#include "serialization_visitors.hh"
|
|
#include "idl/query.dist.impl.hh"
|
|
#include "idl/keys.dist.impl.hh"
|
|
#include "idl/uuid.dist.impl.hh"
|
|
|
|
namespace query {
|
|
|
|
class result::partition_writer {
|
|
result_request _request;
|
|
ser::after_qr_partition__key<bytes_ostream> _w;
|
|
const partition_slice& _slice;
|
|
// We are tasked with keeping track of the range
|
|
// as well, since we are the primary "context"
|
|
// when iterating "inside" a partition
|
|
const clustering_row_ranges& _ranges;
|
|
ser::query_result__partitions<bytes_ostream>& _pw;
|
|
ser::vector_position _pos;
|
|
bool _static_row_added = false;
|
|
md5_hasher& _digest;
|
|
md5_hasher _digest_pos;
|
|
uint32_t& _row_count;
|
|
uint32_t& _partition_count;
|
|
api::timestamp_type& _last_modified;
|
|
public:
|
|
partition_writer(
|
|
result_request request,
|
|
const partition_slice& slice,
|
|
const clustering_row_ranges& ranges,
|
|
ser::query_result__partitions<bytes_ostream>& pw,
|
|
ser::vector_position pos,
|
|
ser::after_qr_partition__key<bytes_ostream> w,
|
|
md5_hasher& digest,
|
|
uint32_t& row_count,
|
|
uint32_t& partition_count,
|
|
api::timestamp_type& last_modified)
|
|
: _request(request)
|
|
, _w(std::move(w))
|
|
, _slice(slice)
|
|
, _ranges(ranges)
|
|
, _pw(pw)
|
|
, _pos(std::move(pos))
|
|
, _digest(digest)
|
|
, _digest_pos(digest)
|
|
, _row_count(row_count)
|
|
, _partition_count(partition_count)
|
|
, _last_modified(last_modified)
|
|
{ }
|
|
|
|
bool requested_digest() const {
|
|
return _request != result_request::only_result;
|
|
}
|
|
|
|
bool requested_result() const {
|
|
return _request != result_request::only_digest;
|
|
}
|
|
|
|
ser::after_qr_partition__key<bytes_ostream> start() {
|
|
return std::move(_w);
|
|
}
|
|
|
|
// Cancels the whole partition element.
|
|
// Can be called at any stage of writing before this element is finalized.
|
|
// Do not use this writer after that.
|
|
void retract() {
|
|
_digest = _digest_pos;
|
|
_pw.rollback(_pos);
|
|
}
|
|
|
|
const clustering_row_ranges& ranges() const {
|
|
return _ranges;
|
|
}
|
|
const partition_slice& slice() const {
|
|
return _slice;
|
|
}
|
|
md5_hasher& digest() {
|
|
return _digest;
|
|
}
|
|
uint32_t& row_count() {
|
|
return _row_count;
|
|
}
|
|
uint32_t& partition_count() {
|
|
return _partition_count;
|
|
}
|
|
api::timestamp_type& last_modified() {
|
|
return _last_modified;
|
|
}
|
|
|
|
};
|
|
|
|
class result::builder {
|
|
bytes_ostream _out;
|
|
md5_hasher _digest;
|
|
const partition_slice& _slice;
|
|
ser::query_result__partitions<bytes_ostream> _w;
|
|
result_request _request;
|
|
uint32_t _row_count = 0;
|
|
uint32_t _partition_count = 0;
|
|
api::timestamp_type _last_modified = api::missing_timestamp;
|
|
short_read _short_read;
|
|
result_memory_accounter _memory_accounter;
|
|
public:
|
|
builder(const partition_slice& slice, result_request request, result_memory_accounter memory_accounter)
|
|
: _slice(slice)
|
|
, _w(ser::writer_of_query_result<bytes_ostream>(_out).start_partitions())
|
|
, _request(request)
|
|
, _memory_accounter(std::move(memory_accounter))
|
|
{ }
|
|
builder(builder&&) = delete; // _out is captured by reference
|
|
|
|
void mark_as_short_read() { _short_read = short_read::yes; }
|
|
short_read is_short_read() const { return _short_read; }
|
|
|
|
result_memory_accounter& memory_accounter() { return _memory_accounter; }
|
|
|
|
const partition_slice& slice() const { return _slice; }
|
|
|
|
uint32_t row_count() const {
|
|
return _row_count;
|
|
}
|
|
|
|
uint32_t partition_count() const {
|
|
return _partition_count;
|
|
}
|
|
|
|
// Starts new partition and returns a builder for its contents.
|
|
// Invalidates all previously obtained builders
|
|
partition_writer add_partition(const schema& s, const partition_key& key) {
|
|
auto pos = _w.pos();
|
|
// fetch the row range for this partition already.
|
|
auto& ranges = _slice.row_ranges(s, key);
|
|
auto after_key = [this, pw = _w.add(), &key] () mutable {
|
|
if (_slice.options.contains<partition_slice::option::send_partition_key>()) {
|
|
return std::move(pw).write_key(key);
|
|
} else {
|
|
return std::move(pw).skip_key();
|
|
}
|
|
}();
|
|
if (_request != result_request::only_result) {
|
|
key.feed_hash(_digest, s);
|
|
}
|
|
return partition_writer(_request, _slice, ranges, _w, std::move(pos), std::move(after_key), _digest, _row_count,
|
|
_partition_count, _last_modified);
|
|
}
|
|
|
|
result build() {
|
|
std::move(_w).end_partitions().end_query_result();
|
|
switch (_request) {
|
|
case result_request::only_result:
|
|
return result(std::move(_out), _short_read, _row_count, _partition_count, std::move(_memory_accounter).done());
|
|
case result_request::only_digest: {
|
|
bytes_ostream buf;
|
|
ser::writer_of_query_result<bytes_ostream>(buf).start_partitions().end_partitions().end_query_result();
|
|
return result(std::move(buf), result_digest(_digest.finalize_array()), _last_modified, _short_read);
|
|
}
|
|
case result_request::result_and_digest:
|
|
return result(std::move(_out), result_digest(_digest.finalize_array()),
|
|
_last_modified, _short_read, _row_count, _partition_count, std::move(_memory_accounter).done());
|
|
}
|
|
abort();
|
|
}
|
|
};
|
|
|
|
}
|