Files
scylladb/query-result-writer.hh

169 lines
5.2 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 "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 _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& _pw;
ser::vector_position _pos;
bool _static_row_added = false;
md5_hasher& _digest;
md5_hasher _digest_pos;
uint32_t& _row_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& pw,
ser::vector_position pos,
ser::after_qr_partition__key w,
md5_hasher& digest,
uint32_t& row_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)
, _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 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;
}
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 _w;
result_request _request;
uint32_t _row_count = 0;
api::timestamp_type _last_modified = api::missing_timestamp;
public:
builder(const partition_slice& slice, result_request request)
: _slice(slice)
, _w(ser::writer_of_query_result(_out).start_partitions())
, _request(request)
{ }
builder(builder&&) = delete; // _out is captured by reference
// 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, _last_modified);
}
result build() {
std::move(_w).end_partitions().end_query_result();
switch (_request) {
case result_request::only_result:
return result(std::move(_out), _row_count);
case result_request::only_digest: {
bytes_ostream buf;
ser::writer_of_query_result(buf).start_partitions().end_partitions().end_query_result();
return result(std::move(buf), result_digest(_digest.finalize_array()), _last_modified);
}
case result_request::result_and_digest:
return result(std::move(_out), result_digest(_digest.finalize_array()), _last_modified, _row_count);
}
abort();
}
};
}