/* * Copyright (C) 2015 Cloudius Systems, Ltd. */ /* * 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 . */ #pragma once #include "dht/i_partitioner.hh" #include "atomic_cell.hh" #include "database_fwd.hh" #include "mutation_partition_view.hh" class mutation; // Immutable, compact form of mutation. // // This form is primarily destined to be sent over the network channel. // Regular mutation can't be deserialized because its complex data structures // need schema reference at the time object is constructed. We can't lookup // schema before we deserialize column family ID. Another problem is that even // if we had the ID somehow, low level RPC layer doesn't know how to lookup // the schema. Data can be wrapped in frozen_mutation without schema // information, the schema is only needed to access some of the fields. // class frozen_mutation final { private: bytes _bytes; partition_key _pk; private: partition_key deserialize_key() const; public: frozen_mutation(const mutation& m); explicit frozen_mutation(bytes&& b); frozen_mutation(frozen_mutation&& m) = default; frozen_mutation(const frozen_mutation& m) = default; frozen_mutation& operator=(frozen_mutation&&) = default; frozen_mutation& operator=(const frozen_mutation&) = default; bytes_view representation() const { return _bytes; } utils::UUID column_family_id() const; utils::UUID schema_version() const; // FIXME: Should replace column_family_id() partition_key_view key(const schema& s) const; dht::decorated_key decorated_key(const schema& s) const; mutation_partition_view partition() const; mutation unfreeze(schema_ptr s) const; struct printer { const frozen_mutation& self; schema_ptr schema; friend std::ostream& operator<<(std::ostream&, const printer&); }; printer pretty_printer(schema_ptr) const; }; frozen_mutation freeze(const mutation& m);