keys.hpp 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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. #ifndef REALM_KEYS_HPP
  19. #define REALM_KEYS_HPP
  20. #include <realm/util/to_string.hpp>
  21. #include <realm/column_type.hpp>
  22. #include <ostream>
  23. #include <vector>
  24. namespace realm {
  25. class Obj;
  26. struct TableKey {
  27. static constexpr uint32_t null_value = uint32_t(-1) >> 1; // free top bit
  28. constexpr TableKey() noexcept
  29. : value(null_value)
  30. {
  31. }
  32. constexpr explicit TableKey(uint32_t val) noexcept
  33. : value(val)
  34. {
  35. }
  36. constexpr bool operator==(const TableKey& rhs) const noexcept
  37. {
  38. return value == rhs.value;
  39. }
  40. constexpr bool operator!=(const TableKey& rhs) const noexcept
  41. {
  42. return value != rhs.value;
  43. }
  44. constexpr bool operator<(const TableKey& rhs) const noexcept
  45. {
  46. return value < rhs.value;
  47. }
  48. constexpr bool operator>(const TableKey& rhs) const noexcept
  49. {
  50. return value > rhs.value;
  51. }
  52. constexpr explicit operator bool() const noexcept
  53. {
  54. return value != null_value;
  55. }
  56. uint32_t value;
  57. };
  58. inline std::ostream& operator<<(std::ostream& os, TableKey tk)
  59. {
  60. os << "TableKey(" << tk.value << ")";
  61. return os;
  62. }
  63. namespace util {
  64. inline std::string to_string(TableKey tk)
  65. {
  66. return to_string(tk.value);
  67. }
  68. } // namespace util
  69. class TableVersions : public std::vector<std::pair<TableKey, uint64_t>> {
  70. public:
  71. TableVersions() {}
  72. TableVersions(TableKey key, uint64_t version)
  73. {
  74. emplace_back(key, version);
  75. }
  76. bool operator==(const TableVersions& other) const;
  77. };
  78. struct ColKey {
  79. static constexpr int64_t null_value = int64_t(uint64_t(-1) >> 1); // free top bit
  80. struct Idx {
  81. unsigned val;
  82. };
  83. constexpr ColKey() noexcept = default;
  84. constexpr explicit ColKey(int64_t val) noexcept
  85. : value(val)
  86. {
  87. }
  88. constexpr ColKey(Idx index, ColumnType type, ColumnAttrMask attrs, uint64_t tag) noexcept
  89. : ColKey((index.val & 0xFFFFUL) | ((int(type) & 0x3FUL) << 16) | ((attrs.m_value & 0xFFUL) << 22) |
  90. ((tag & 0xFFFFFFFFUL) << 30))
  91. {
  92. }
  93. bool is_nullable() const
  94. {
  95. return get_attrs().test(col_attr_Nullable);
  96. }
  97. bool is_list() const
  98. {
  99. return get_attrs().test(col_attr_List);
  100. }
  101. bool is_set() const
  102. {
  103. return get_attrs().test(col_attr_Set);
  104. }
  105. bool is_dictionary() const
  106. {
  107. return get_attrs().test(col_attr_Dictionary);
  108. }
  109. bool is_collection() const
  110. {
  111. return get_attrs().test(col_attr_Collection);
  112. }
  113. bool operator==(const ColKey& rhs) const noexcept
  114. {
  115. return value == rhs.value;
  116. }
  117. bool operator!=(const ColKey& rhs) const noexcept
  118. {
  119. return value != rhs.value;
  120. }
  121. bool operator<(const ColKey& rhs) const noexcept
  122. {
  123. return value < rhs.value;
  124. }
  125. bool operator>(const ColKey& rhs) const noexcept
  126. {
  127. return value > rhs.value;
  128. }
  129. explicit operator bool() const noexcept
  130. {
  131. return value != null_value;
  132. }
  133. Idx get_index() const noexcept
  134. {
  135. return Idx{static_cast<unsigned>(value) & 0xFFFFU};
  136. }
  137. ColumnType get_type() const noexcept
  138. {
  139. return ColumnType(ColumnType::Type((static_cast<unsigned>(value) >> 16) & 0x3F));
  140. }
  141. ColumnAttrMask get_attrs() const noexcept
  142. {
  143. return ColumnAttrMask((static_cast<unsigned>(value) >> 22) & 0xFF);
  144. }
  145. unsigned get_tag() const noexcept
  146. {
  147. return (value >> 30) & 0xFFFFFFFFUL;
  148. }
  149. int64_t value = null_value;
  150. };
  151. static_assert(ColKey::null_value == 0x7fffffffffffffff, "Fix this");
  152. inline std::ostream& operator<<(std::ostream& os, ColKey ck)
  153. {
  154. os << "ColKey(" << ck.value << ")";
  155. return os;
  156. }
  157. struct ObjKey {
  158. constexpr ObjKey() noexcept
  159. : value(-1)
  160. {
  161. }
  162. explicit constexpr ObjKey(int64_t val) noexcept
  163. : value(val)
  164. {
  165. }
  166. bool is_unresolved() const
  167. {
  168. return value <= -2;
  169. }
  170. ObjKey get_unresolved() const
  171. {
  172. return ObjKey(-2 - value);
  173. }
  174. bool operator==(const ObjKey& rhs) const noexcept
  175. {
  176. return value == rhs.value;
  177. }
  178. bool operator!=(const ObjKey& rhs) const noexcept
  179. {
  180. return value != rhs.value;
  181. }
  182. bool operator<(const ObjKey& rhs) const noexcept
  183. {
  184. return value < rhs.value;
  185. }
  186. bool operator<=(const ObjKey& rhs) const noexcept
  187. {
  188. return value <= rhs.value;
  189. }
  190. bool operator>(const ObjKey& rhs) const noexcept
  191. {
  192. return value > rhs.value;
  193. }
  194. bool operator>=(const ObjKey& rhs) const noexcept
  195. {
  196. return value >= rhs.value;
  197. }
  198. explicit operator bool() const noexcept
  199. {
  200. return value != -1;
  201. }
  202. int64_t value;
  203. private:
  204. // operator bool will enable casting to integer. Prevent this.
  205. operator int64_t() const = delete;
  206. };
  207. inline std::ostream& operator<<(std::ostream& ostr, ObjKey key)
  208. {
  209. ostr << "ObjKey(" << key.value << ")";
  210. return ostr;
  211. }
  212. class ObjKeys : public std::vector<ObjKey> {
  213. public:
  214. explicit ObjKeys(const std::vector<int64_t>& init)
  215. {
  216. reserve(init.size());
  217. for (auto i : init) {
  218. emplace_back(i);
  219. }
  220. }
  221. ObjKeys(const std::initializer_list<int64_t>& list)
  222. {
  223. reserve(list.size());
  224. for (auto i : list) {
  225. emplace_back(i);
  226. }
  227. }
  228. ObjKeys() {}
  229. };
  230. struct ObjLink {
  231. public:
  232. constexpr ObjLink() = default;
  233. constexpr ObjLink(TableKey table_key, ObjKey obj_key)
  234. : m_obj_key(obj_key)
  235. , m_table_key(table_key)
  236. {
  237. }
  238. explicit operator bool() const
  239. {
  240. return bool(m_table_key) && bool(m_obj_key);
  241. }
  242. bool is_null() const
  243. {
  244. return !bool(*this);
  245. }
  246. bool is_unresolved() const
  247. {
  248. return m_obj_key.is_unresolved();
  249. }
  250. bool operator==(const ObjLink& other) const
  251. {
  252. return m_obj_key == other.m_obj_key && m_table_key == other.m_table_key;
  253. }
  254. bool operator!=(const ObjLink& other) const
  255. {
  256. return m_obj_key != other.m_obj_key || m_table_key != other.m_table_key;
  257. }
  258. bool operator<(const ObjLink& rhs) const
  259. {
  260. if (m_table_key < rhs.m_table_key) {
  261. return true;
  262. }
  263. else if (m_table_key == rhs.m_table_key) {
  264. return m_obj_key < rhs.m_obj_key;
  265. }
  266. else {
  267. // m_table_key >= rhs.m_table_key
  268. return false;
  269. }
  270. }
  271. bool operator>(const ObjLink& rhs) const
  272. {
  273. return (*this != rhs) && !(*this < rhs);
  274. }
  275. TableKey get_table_key() const
  276. {
  277. return m_table_key;
  278. }
  279. ObjKey get_obj_key() const
  280. {
  281. return m_obj_key;
  282. }
  283. private:
  284. // Having ObjKey first ensures that there will be no uninitialized space
  285. // in the first 12 bytes. This is important when generating a hash
  286. ObjKey m_obj_key;
  287. TableKey m_table_key;
  288. };
  289. inline std::ostream& operator<<(std::ostream& os, ObjLink link)
  290. {
  291. os << '{' << link.get_table_key() << ',' << link.get_obj_key() << '}';
  292. return os;
  293. }
  294. constexpr ObjKey null_key;
  295. namespace util {
  296. inline std::string to_string(ColKey ck)
  297. {
  298. return to_string(ck.value);
  299. }
  300. } // namespace util
  301. } // namespace realm
  302. namespace std {
  303. template <>
  304. struct hash<realm::ObjKey> {
  305. size_t operator()(realm::ObjKey key) const
  306. {
  307. return std::hash<uint64_t>{}(key.value);
  308. }
  309. };
  310. template <>
  311. struct hash<realm::ColKey> {
  312. size_t operator()(realm::ColKey key) const
  313. {
  314. return std::hash<int64_t>{}(key.value);
  315. }
  316. };
  317. template <>
  318. struct hash<realm::TableKey> {
  319. size_t operator()(realm::TableKey key) const
  320. {
  321. return std::hash<uint32_t>{}(key.value);
  322. }
  323. };
  324. } // namespace std
  325. #endif