added iOS source code
[wl-app.git] / iOS / Pods / Realm / include / impl / transact_log_handler.hpp
1 ////////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright 2015 Realm Inc.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 ////////////////////////////////////////////////////////////////////////////
18
19 #ifndef REALM_TRANSACT_LOG_HANDLER_HPP
20 #define REALM_TRANSACT_LOG_HANDLER_HPP
21
22 #include <cstdint>
23 #include <realm/version_id.hpp>
24
25 #include <memory>
26
27 namespace realm {
28 class BindingContext;
29 class SharedGroup;
30
31 namespace _impl {
32 class NotifierPackage;
33 struct TransactionChangeInfo;
34
35 namespace transaction {
36 // Advance the read transaction version, with change notifications sent to delegate
37 // Must not be called from within a write transaction.
38 void advance(const std::unique_ptr<SharedGroup>& sg, BindingContext* binding_context, NotifierPackage&);
39 void advance(SharedGroup& sg, BindingContext* binding_context, VersionID);
40
41 // Begin a write transaction
42 // If the read transaction version is not up to date, will first advance to the
43 // most recent read transaction and sent notifications to delegate
44 void begin(const std::unique_ptr<SharedGroup>& sg, BindingContext* binding_context, NotifierPackage&);
45 void begin_without_validation(SharedGroup& sg);
46
47 // Commit a write transaction
48 void commit(SharedGroup& sg);
49
50 // Cancel a write transaction and roll back all changes, with change notifications
51 // for reverting to the old values sent to delegate
52 void cancel(SharedGroup& sg, BindingContext* binding_context);
53
54 // Advance the read transaction version, with change information gathered in info
55 void advance(SharedGroup& sg, TransactionChangeInfo& info, VersionID version=VersionID{});
56 } // namespace transaction
57 } // namespace _impl
58 } // namespace realm
59
60 #endif /* REALM_TRANSACT_LOG_HANDLER_HPP */