mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-13 03:12:13 +00:00
We must use canonical_mutation form to allow for changes in the schema of schema tables. The node which deserializes schema mutations may not have the same version of the schema tables so we cannot use frozen_mutation, which is a schema dependent form.
77 lines
2.5 KiB
C++
77 lines
2.5 KiB
C++
/*
|
|
* Copyright 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/>.
|
|
*/
|
|
|
|
#include "schema_mutations.hh"
|
|
#include "canonical_mutation.hh"
|
|
#include "db/schema_tables.hh"
|
|
#include "md5_hasher.hh"
|
|
|
|
template class db::serializer<schema_mutations>;
|
|
|
|
template<>
|
|
db::serializer<schema_mutations>::serializer(const schema_mutations& v)
|
|
: _item(v)
|
|
, _size(db::serializer<canonical_mutation>(canonical_mutation(v._columnfamilies)).size()
|
|
+ db::serializer<canonical_mutation>(canonical_mutation(v._columns)).size())
|
|
{ }
|
|
|
|
template<>
|
|
void
|
|
db::serializer<schema_mutations>::write(output& out, const schema_mutations& v) {
|
|
db::serializer<canonical_mutation>(canonical_mutation(v._columnfamilies)).write(out);
|
|
db::serializer<canonical_mutation>(canonical_mutation(v._columns)).write(out);
|
|
}
|
|
|
|
template<>
|
|
schema_mutations db::serializer<schema_mutations>::read(input& in) {
|
|
auto columnfamilies = db::serializer<canonical_mutation>::read(in);
|
|
auto columns = db::serializer<canonical_mutation>::read(in);
|
|
return schema_mutations(
|
|
columnfamilies.to_mutation(db::schema_tables::columnfamilies()),
|
|
columns.to_mutation(db::schema_tables::columns())
|
|
);
|
|
}
|
|
|
|
void schema_mutations::copy_to(std::vector<mutation>& dst) const {
|
|
dst.push_back(_columnfamilies);
|
|
dst.push_back(_columns);
|
|
}
|
|
|
|
table_schema_version schema_mutations::digest() const {
|
|
md5_hasher h;
|
|
feed_hash(h, _columnfamilies);
|
|
feed_hash(h, _columns);
|
|
return utils::UUID_gen::get_name_UUID(h.finalize());
|
|
}
|
|
|
|
bool schema_mutations::operator==(const schema_mutations& other) const {
|
|
return _columnfamilies == other._columnfamilies
|
|
&& _columns == other._columns;
|
|
}
|
|
|
|
bool schema_mutations::operator!=(const schema_mutations& other) const {
|
|
return !(*this == other);
|
|
}
|
|
|
|
bool schema_mutations::live() const {
|
|
return _columnfamilies.live_row_count() > 0 || _columns.live_row_count() > 0;
|
|
}
|