mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-23 01:50:35 +00:00
Move mutation-related files to a new mutation/ directory. The names are kept in the global namespace to reduce churn; the names are unambiguous in any case. mutation_reader remains in the readers/ module. mutation_partition_v2.cc was missing from CMakeLists.txt; it's added in this patch. This is a step forward towards librarization or modularization of the source base. Closes #12788
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "replica/database_fwd.hh"
|
|
#include "bytes_ostream.hh"
|
|
#include "mutation_fragment.hh"
|
|
|
|
namespace ser {
|
|
template<typename Output>
|
|
class writer_of_mutation_partition;
|
|
}
|
|
|
|
class mutation_partition_serializer {
|
|
static size_t size(const schema&, const mutation_partition&);
|
|
public:
|
|
using size_type = uint32_t;
|
|
private:
|
|
const schema& _schema;
|
|
const mutation_partition& _p;
|
|
private:
|
|
template<typename Writer>
|
|
static void write_serialized(Writer&& out, const schema&, const mutation_partition&);
|
|
public:
|
|
using count_type = uint32_t;
|
|
mutation_partition_serializer(const schema&, const mutation_partition&);
|
|
public:
|
|
void write(bytes_ostream&) const;
|
|
void write(ser::writer_of_mutation_partition<bytes_ostream>&&) const;
|
|
};
|
|
|
|
void serialize_mutation_fragments(const schema& s, tombstone partition_tombstone,
|
|
std::optional<static_row> sr, range_tombstone_list range_tombstones,
|
|
std::deque<clustering_row> clustering_rows, ser::writer_of_mutation_partition<bytes_ostream>&&);
|