123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- /*************************************************************************
- *
- * Copyright 2016 Realm Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- **************************************************************************/
- #ifndef REALM_REPLICATION_HPP
- #define REALM_REPLICATION_HPP
- #include <algorithm>
- #include <limits>
- #include <memory>
- #include <exception>
- #include <string>
- #include <realm/util/assert.hpp>
- #include <realm/util/safe_int_ops.hpp>
- #include <realm/util/buffer.hpp>
- #include <realm/util/string_buffer.hpp>
- #include <realm/impl/cont_transact_hist.hpp>
- #include <realm/impl/transact_log.hpp>
- namespace realm {
- namespace util {
- class Logger;
- }
- // FIXME: Be careful about the possibility of one modification function being called by another where both do
- // transaction logging.
- /// Replication is enabled by passing an instance of an implementation of this
- /// class to the DB constructor.
- class Replication : public _impl::TransactLogConvenientEncoder {
- public:
- // Be sure to keep this type aligned with what is actually used in DB.
- using version_type = _impl::History::version_type;
- using InputStream = _impl::NoCopyInputStream;
- class TransactLogApplier;
- class Interrupted; // Exception
- class SimpleIndexTranslator;
- virtual std::string get_database_path() const = 0;
- /// Called during construction of the associated DB object.
- ///
- /// \param db The associated DB object.
- virtual void initialize(DB& db) = 0;
- /// Called by the associated DB object when a session is
- /// initiated. A *session* is a sequence of temporally overlapping
- /// accesses to a specific Realm file, where each access consists of a
- /// DB object through which the Realm file is open. Session
- /// initiation occurs during the first opening of the Realm file within such
- /// a session.
- ///
- /// Session initiation fails if this function throws.
- ///
- /// \param version The current version of the associated Realm.
- ///
- /// The default implementation does nothing.
- virtual void initiate_session(version_type version) = 0;
- /// Called by the associated DB object when a session is
- /// terminated. See initiate_session() for the definition of a
- /// session. Session termination occurs upon closing the Realm through the
- /// last DB object within the session.
- ///
- /// The default implementation does nothing.
- virtual void terminate_session() noexcept = 0;
- /// \defgroup replication_transactions
- //@{
- /// From the point of view of the Replication class, a transaction is
- /// initiated when, and only when the associated Transaction object calls
- /// initiate_transact() and the call is successful. The associated
- /// Transaction object must terminate every initiated transaction either by
- /// calling finalize_commit() or by calling abort_transact(). It may only
- /// call finalize_commit(), however, after calling prepare_commit(), and
- /// only when prepare_commit() succeeds. If prepare_commit() fails (i.e.,
- /// throws) abort_transact() must still be called.
- ///
- /// The associated Transaction object is supposed to terminate a transaction
- /// as soon as possible, and is required to terminate it before attempting
- /// to initiate a new one.
- ///
- /// initiate_transact() is called by the associated Transaction object as
- /// part of the initiation of a transaction, and at a time where the caller
- /// has acquired exclusive write access to the local Realm. The Replication
- /// implementation is allowed to perform "precursor transactions" on the
- /// local Realm at this time. During the initiated transaction, the
- /// associated DB object must inform the Replication object of all
- /// modifying operations by calling set_value() and friends.
- ///
- /// FIXME: There is currently no way for implementations to perform
- /// precursor transactions, since a regular transaction would cause a dead
- /// lock when it tries to acquire a write lock. Consider giving access to
- /// special non-locking precursor transactions via an extra argument to this
- /// function.
- ///
- /// prepare_commit() serves as the first phase of a two-phase commit. This
- /// function is called by the associated Transaction object immediately
- /// before the commit operation on the local Realm. The associated
- /// Transaction object will then, as the second phase, either call
- /// finalize_commit() or abort_transact() depending on whether the commit
- /// operation succeeded or not. The Replication implementation is allowed to
- /// modify the Realm via the associated Transaction object at this time
- /// (important to in-Realm histories).
- ///
- /// initiate_transact() and prepare_commit() are allowed to block the
- /// calling thread if, for example, they need to communicate over the
- /// network. If a calling thread is blocked in one of these functions, it
- /// must be possible to interrupt the blocking operation by having another
- /// thread call interrupt(). The contract is as follows: When interrupt() is
- /// called, then any execution of initiate_transact() or prepare_commit(),
- /// initiated before the interruption, must complete without blocking, or
- /// the execution must be aborted by throwing an Interrupted exception. If
- /// initiate_transact() or prepare_commit() throws Interrupted, it counts as
- /// a failed operation.
- ///
- /// finalize_commit() is called by the associated Transaction object
- /// immediately after a successful commit operation on the local Realm. This
- /// happens at a time where modification of the Realm is no longer possible
- /// via the associated Transaction object. In the case of in-Realm
- /// histories, the changes are automatically finalized as part of the commit
- /// operation performed by the caller prior to the invocation of
- /// finalize_commit(), so in that case, finalize_commit() might not need to
- /// do anything.
- ///
- /// abort_transact() is called by the associated Transaction object to
- /// terminate a transaction without committing. That is, any transaction
- /// that is not terminated by finalize_commit() is terminated by
- /// abort_transact(). This could be due to an explicit rollback, or due to a
- /// failed commit attempt.
- ///
- /// Note that finalize_commit() and abort_transact() are not allowed to
- /// throw.
- ///
- /// \param current_version The version of the snapshot that the current
- /// transaction is based on.
- ///
- /// \param history_updated Pass true only when the history has already been
- /// updated to reflect the currently bound snapshot, such as when
- /// _impl::History::update_early_from_top_ref() was called during the
- /// transition from a read transaction to the current write transaction.
- ///
- /// \throw Interrupted Thrown by initiate_transact() and prepare_commit() if
- /// a blocking operation was interrupted.
- void initiate_transact(Group& group, version_type current_version, bool history_updated);
- /// \param current_version The version of the snapshot that the current
- /// transaction is based on.
- /// \return prepare_commit() returns the version of the new snapshot
- /// produced by the transaction.
- version_type prepare_commit(version_type current_version);
- void finalize_commit() noexcept;
- void abort_transact() noexcept;
- //@}
- /// Get the list of uncommitted changes accumulated so far in the current
- /// write transaction.
- ///
- /// The callee retains ownership of the referenced memory. The ownership is
- /// not handed over to the caller.
- ///
- /// This function may be called only during a write transaction (prior to
- /// initiation of commit operation). In that case, the caller may assume that the
- /// returned memory reference stays valid for the remainder of the transaction (up
- /// until initiation of the commit operation).
- virtual BinaryData get_uncommitted_changes() const noexcept = 0;
- /// Interrupt any blocking call to a function in this class. This function
- /// may be called asyncronously from any thread, but it may not be called
- /// from a system signal handler.
- ///
- /// Some of the public function members of this class may block, but only
- /// when it it is explicitely stated in the documention for those functions.
- ///
- /// FIXME: Currently we do not state blocking behaviour for all the
- /// functions that can block.
- ///
- /// After any function has returned with an interruption indication, the
- /// only functions that may safely be called are abort_transact() and the
- /// destructor. If a client, after having received an interruption
- /// indication, calls abort_transact() and then clear_interrupt(), it may
- /// resume normal operation through this Replication object.
- void interrupt() noexcept;
- /// May be called by a client to reset this Replication object after an
- /// interrupted transaction. It is not an error to call this function in a
- /// situation where no interruption has occured.
- void clear_interrupt() noexcept;
- /// CAUTION: These values are stored in Realm files, so value reassignment
- /// is not allowed.
- enum HistoryType {
- /// No history available. No support for either continuous transactions
- /// or inter-client synchronization.
- hist_None = 0,
- /// Out-of-Realm history supporting continuous transactions.
- ///
- /// NOTE: This history type is no longer in use. The value needs to stay
- /// reserved in case someone tries to open an old Realm file.
- hist_OutOfRealm = 1,
- /// In-Realm history supporting continuous transactions
- /// (make_in_realm_history()).
- hist_InRealm = 2,
- /// In-Realm history supporting continuous transactions and client-side
- /// synchronization protocol (realm::sync::ClientHistory).
- hist_SyncClient = 3,
- /// In-Realm history supporting continuous transactions and server-side
- /// synchronization protocol (realm::_impl::ServerHistory).
- hist_SyncServer = 4
- };
- /// Returns the type of history maintained by this Replication
- /// implementation, or \ref hist_None if no history is maintained by it.
- ///
- /// This type is used to ensure that all session participants agree on
- /// history type, and that the Realm file contains a compatible type of
- /// history, at the beginning of a new session.
- ///
- /// As a special case, if there is no top array (Group::m_top) at the
- /// beginning of a new session, then the history type is still undecided and
- /// all history types (as returned by get_history_type()) are threfore
- /// allowed for the session initiator. Note that this case only arises if
- /// there was no preceding session, or if no transaction was sucessfully
- /// committed during any of the preceding sessions. As soon as a transaction
- /// is successfully committed, the Realm contains at least a top array, and
- /// from that point on, the history type is generally fixed, although still
- /// subject to certain allowed changes (as mentioned below).
- ///
- /// For the sake of backwards compatibility with older Realm files that does
- /// not store any history type, the following rule shall apply:
- ///
- /// - If the top array of a Realm file (Group::m_top) does not contain a
- /// history type, because it is too short, it shall be understood as
- /// implicitly storing the type \ref hist_None.
- ///
- /// Note: In what follows, the meaning of *preceding session* is: The last
- /// preceding session that modified the Realm by sucessfully committing a
- /// new snapshot.
- ///
- /// It shall be allowed to switch to a \ref hist_InRealm history if the
- /// stored history type is \ref hist_None. This can be done simply by adding
- /// a new history to the Realm file. This is possible because histories of
- /// this type a transient in nature, and need not survive from one session
- /// to the next.
- ///
- /// On the other hand, as soon as a history of type \ref hist_InRealm is
- /// added to a Realm file, that history type is binding for all subsequent
- /// sessions. In theory, this constraint is not necessary, and a later
- /// switch to \ref hist_None would be possible because of the transient
- /// nature of it, however, because the \ref hist_InRealm history remains in
- /// the Realm file, there are practical complications, and for that reason,
- /// such switching shall not be supported.
- ///
- /// The \ref hist_SyncClient history type can only be used if the stored
- /// history type is also \ref hist_SyncClient, or when there is no top array
- /// yet. Likewise, the \ref hist_SyncServer history type can only be used if
- /// the stored history type is also \ref hist_SyncServer, or when there is
- /// no top array yet. Additionally, when the stored history type is \ref
- /// hist_SyncClient or \ref hist_SyncServer, then all subsequent sessions
- /// must have the same type. These restrictions apply because such a history
- /// needs to be maintained persistently across sessions.
- ///
- /// In general, if there is no stored history type (no top array) at the
- /// beginning of a new session, or if the stored type disagrees with what is
- /// returned by get_history_type() (which is possible due to particular
- /// allowed changes of history type), the actual history type (as returned
- /// by get_history_type()) used during that session, must be stored in the
- /// Realm during the first successfully committed transaction in that
- /// session. But note that there is still no need to expand the top array to
- /// store the history type \ref hist_None, due to the rule mentioned above.
- ///
- /// This function must return \ref hist_None when, and only when
- /// get_history() returns null.
- virtual HistoryType get_history_type() const noexcept = 0;
- /// Returns the schema version of the history maintained by this Replication
- /// implementation, or 0 if no history is maintained by it. All session
- /// participants must agree on history schema version.
- ///
- /// Must return 0 if get_history_type() returns \ref hist_None.
- virtual int get_history_schema_version() const noexcept = 0;
- /// Implementation may assume that this function is only ever called with a
- /// stored schema version that is less than what was returned by
- /// get_history_schema_version().
- virtual bool is_upgradable_history_schema(int stored_schema_version) const noexcept = 0;
- /// The implementation may assume that this function is only ever called if
- /// is_upgradable_history_schema() was called with the same stored schema
- /// version, and returned true. This implies that the specified stored
- /// schema version is always strictly less than what was returned by
- /// get_history_schema_version().
- virtual void upgrade_history_schema(int stored_schema_version) = 0;
- /// Returns an object that gives access to the history of changesets
- /// used by writers. All writers can share the same object as all write
- /// transactions are serialized.
- ///
- /// This function must return null when, and only when get_history_type()
- /// returns \ref hist_None.
- virtual _impl::History* _get_history_write() = 0;
- /// Returns an object that gives access to the history of changesets in a
- /// way that allows for continuous transactions to work. All readers must
- /// get their own exclusive object as readers are not blocking each other.
- /// (Group::advance_transact() in particular).
- ///
- /// This function must return null when, and only when get_history_type()
- /// returns \ref hist_None.
- virtual std::unique_ptr<_impl::History> _create_history_read() = 0;
- ~Replication() override;
- protected:
- DB* m_db = nullptr;
- Replication(_impl::TransactLogStream& stream);
- void register_db(DB* owner)
- {
- m_db = owner;
- }
- //@{
- /// do_initiate_transact() is called by initiate_transact(), and likewise
- /// for do_prepare_commit), do_finalize_commit(), and do_abort_transact().
- ///
- /// With respect to exception safety, the Replication implementation has two
- /// options: It can prepare to accept the accumulated changeset in
- /// do_prepapre_commit() by allocating all required resources, and delay the
- /// actual acceptance to do_finalize_commit(), which requires that the final
- /// acceptance can be done without any risk of failure. Alternatively, the
- /// Replication implementation can fully accept the changeset in
- /// do_prepapre_commit() (allowing for failure), and then discard that
- /// changeset during the next invocation of do_initiate_transact() if
- /// `current_version` indicates that the previous transaction failed.
- virtual void do_initiate_transact(Group& group, version_type current_version, bool history_updated) = 0;
- virtual version_type do_prepare_commit(version_type orig_version) = 0;
- virtual void do_finalize_commit() noexcept = 0;
- virtual void do_abort_transact() noexcept = 0;
- //@}
- virtual void do_interrupt() noexcept = 0;
- virtual void do_clear_interrupt() noexcept = 0;
- friend class _impl::TransactReverser;
- friend class DB;
- };
- class Replication::Interrupted : public std::exception {
- public:
- const char* what() const noexcept override
- {
- return "Interrupted";
- }
- };
- class TrivialReplication : public Replication {
- public:
- ~TrivialReplication() noexcept {}
- std::string get_database_path() const override;
- protected:
- typedef Replication::version_type version_type;
- TrivialReplication(const std::string& database_file);
- virtual version_type prepare_changeset(const char* data, size_t size, version_type orig_version) = 0;
- virtual void finalize_changeset() noexcept = 0;
- BinaryData get_uncommitted_changes() const noexcept override;
- void initialize(DB&) override;
- void do_initiate_transact(Group& group, version_type, bool) override;
- version_type do_prepare_commit(version_type orig_version) override;
- void do_finalize_commit() noexcept override;
- void do_abort_transact() noexcept override;
- void do_interrupt() noexcept override;
- void do_clear_interrupt() noexcept override;
- private:
- const std::string m_database_file;
- _impl::TransactLogBufferStream m_stream;
- size_t transact_log_size();
- };
- // Implementation:
- inline Replication::Replication(_impl::TransactLogStream& stream)
- : _impl::TransactLogConvenientEncoder(stream)
- {
- }
- inline void Replication::initiate_transact(Group& group, version_type current_version, bool history_updated)
- {
- if (auto hist = _get_history_write()) {
- hist->set_group(&group, history_updated);
- }
- do_initiate_transact(group, current_version, history_updated);
- reset_selection_caches();
- }
- inline Replication::version_type Replication::prepare_commit(version_type orig_version)
- {
- return do_prepare_commit(orig_version);
- }
- inline void Replication::finalize_commit() noexcept
- {
- do_finalize_commit();
- }
- inline void Replication::abort_transact() noexcept
- {
- do_abort_transact();
- }
- inline void Replication::interrupt() noexcept
- {
- do_interrupt();
- }
- inline void Replication::clear_interrupt() noexcept
- {
- do_clear_interrupt();
- }
- inline TrivialReplication::TrivialReplication(const std::string& database_file)
- : Replication(m_stream)
- , m_database_file(database_file)
- {
- }
- inline BinaryData TrivialReplication::get_uncommitted_changes() const noexcept
- {
- const char* data = m_stream.get_data();
- size_t size = write_position() - data;
- return BinaryData(data, size);
- }
- inline size_t TrivialReplication::transact_log_size()
- {
- return write_position() - m_stream.get_data();
- }
- } // namespace realm
- #endif // REALM_REPLICATION_HPP
|