added iOS source code
[wl-app.git] / iOS / Pods / Realm / include / core / realm / handover_defs.hpp
1 /*************************************************************************
2  *
3  * Copyright 2016 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_HANDOVER_DEFS
20 #define REALM_HANDOVER_DEFS
21
22 #include <memory>
23 #include <vector>
24
25 namespace realm {
26
27 enum class ConstSourcePayload { Copy, Stay };
28 enum class MutableSourcePayload { Move };
29
30 struct RowBaseHandoverPatch;
31 struct TableViewHandoverPatch;
32
33 struct TableHandoverPatch {
34     bool m_is_sub_table;
35     size_t m_table_num;
36     size_t m_col_ndx;
37     size_t m_row_ndx;
38 };
39
40 struct LinkViewHandoverPatch {
41     std::unique_ptr<TableHandoverPatch> m_table;
42     size_t m_col_num;
43     size_t m_row_ndx;
44 };
45
46 // Base class for handover patches for query nodes. Subclasses are declared in query_engine.hpp.
47 struct QueryNodeHandoverPatch {
48     virtual ~QueryNodeHandoverPatch() = default;
49 };
50
51 using QueryNodeHandoverPatches = std::vector<std::unique_ptr<QueryNodeHandoverPatch>>;
52
53 struct QueryHandoverPatch {
54     std::unique_ptr<TableHandoverPatch> m_table;
55     std::unique_ptr<TableViewHandoverPatch> table_view_data;
56     std::unique_ptr<LinkViewHandoverPatch> link_view_data;
57     QueryNodeHandoverPatches m_node_data;
58 };
59
60 struct DescriptorOrderingHandoverPatch {
61     std::vector<std::vector<std::vector<size_t>>> columns;
62     std::vector<std::vector<bool>> ascending;
63 };
64
65 struct TableViewHandoverPatch {
66     std::unique_ptr<TableHandoverPatch> m_table;
67     std::unique_ptr<RowBaseHandoverPatch> linked_row;
68     size_t linked_col;
69     bool was_in_sync;
70     QueryHandoverPatch query_patch;
71     std::unique_ptr<LinkViewHandoverPatch> linkview_patch;
72     std::unique_ptr<DescriptorOrderingHandoverPatch> descriptors_patch;
73 };
74
75
76 struct RowBaseHandoverPatch {
77     std::unique_ptr<TableHandoverPatch> m_table;
78     size_t row_ndx;
79 };
80
81
82 } // end namespace Realm
83
84 #endif