Instead of lengthy blurbs, switch to single-line, machine-readable standardized (https://spdx.dev) license identifiers. The Linux kernel switched long ago, so there is strong precedent. Three cases are handled: AGPL-only, Apache-only, and dual licensed. For the latter case, I chose (AGPL-3.0-or-later and Apache-2.0), reasoning that our changes are extensive enough to apply our license. The changes we applied mechanically with a script, except to licenses/README.md. Closes #9937
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "bytes.hh"
|
|
#include "schema_fwd.hh"
|
|
#include "replica/database_fwd.hh"
|
|
#include "bytes_ostream.hh"
|
|
#include <iosfwd>
|
|
|
|
namespace utils {
|
|
class UUID;
|
|
} // namespace utils
|
|
|
|
// Immutable mutation form which can be read using any schema version of the same table.
|
|
// Safe to access from other shards via const&.
|
|
// Safe to pass serialized across nodes.
|
|
class canonical_mutation {
|
|
bytes_ostream _data;
|
|
public:
|
|
explicit canonical_mutation(bytes_ostream);
|
|
explicit canonical_mutation(const mutation&);
|
|
|
|
canonical_mutation(canonical_mutation&&) = default;
|
|
canonical_mutation(const canonical_mutation&) = default;
|
|
canonical_mutation& operator=(const canonical_mutation&) = default;
|
|
canonical_mutation& operator=(canonical_mutation&&) = default;
|
|
|
|
// Create a mutation object interpreting this canonical mutation using
|
|
// given schema.
|
|
//
|
|
// Data which is not representable in the target schema is dropped. If this
|
|
// is not intended, user should sync the schema first.
|
|
mutation to_mutation(schema_ptr) const;
|
|
|
|
utils::UUID column_family_id() const;
|
|
|
|
const bytes_ostream& representation() const { return _data; }
|
|
|
|
friend std::ostream& operator<<(std::ostream& os, const canonical_mutation& cm);
|
|
};
|