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/
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#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&);
|
|
template<typename Writer>
|
|
static future<> write_serialized_gently(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;
|
|
future<> write_gently(bytes_ostream&) const;
|
|
future<> write_gently(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>&&);
|