keys.hpp 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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
  84. : value(null_value)
  85. {
  86. }
  87. constexpr explicit ColKey(int64_t val) noexcept
  88. : value(val)
  89. {
  90. }
  91. constexpr ColKey(Idx index, ColumnType type, ColumnAttrMask attrs, uint64_t tag) noexcept
  92. : ColKey((index.val & 0xFFFFUL) | ((int(type) & 0x3FUL) << 16) | ((attrs.m_value & 0xFFUL) << 22) |
  93. ((tag & 0xFFFFFFFFUL) << 30))
  94. {
  95. }
  96. bool is_nullable() const
  97. {
  98. return get_attrs().test(col_attr_Nullable);
  99. }
  100. bool is_list() const
  101. {
  102. return get_attrs().test(col_attr_List);
  103. }
  104. bool is_set() const
  105. {
  106. return get_attrs().test(col_attr_Set);
  107. }
  108. bool is_dictionary() const
  109. {
  110. return get_attrs().test(col_attr_Dictionary);
  111. }
  112. bool is_collection() const
  113. {
  114. return get_attrs().test(col_attr_Collection);
  115. }
  116. bool operator==(const ColKey& rhs) const noexcept
  117. {
  118. return value == rhs.value;
  119. }
  120. bool operator!=(const ColKey& rhs) const noexcept
  121. {
  122. return value != rhs.value;
  123. }
  124. bool operator<(const ColKey& rhs) const noexcept
  125. {
  126. return value < rhs.value;
  127. }
  128. bool operator>(const ColKey& rhs) const noexcept
  129. {
  130. return value > rhs.value;
  131. }
  132. explicit operator bool() const noexcept
  133. {
  134. return value != null_value;
  135. }
  136. Idx get_index() const noexcept
  137. {
  138. return Idx{static_cast<unsigned>(value) & 0xFFFFU};
  139. }
  140. ColumnType get_type() const noexcept
  141. {
  142. return ColumnType(ColumnType::Type((static_cast<unsigned>(value) >> 16) & 0x3F));
  143. }
  144. ColumnAttrMask get_attrs() const noexcept
  145. {
  146. return ColumnAttrMask((static_cast<unsigned>(value) >> 22) & 0xFF);
  147. }
  148. unsigned get_tag() const noexcept
  149. {
  150. return (value >> 30) & 0xFFFFFFFFUL;
  151. }
  152. int64_t value;
  153. };
  154. static_assert(ColKey::null_value == 0x7fffffffffffffff, "Fix this");
  155. inline std::ostream& operator<<(std::ostream& os, ColKey ck)
  156. {
  157. os << "ColKey(" << ck.value << ")";
  158. return os;
  159. }
  160. struct ObjKey {
  161. constexpr ObjKey() noexcept
  162. : value(-1)
  163. {
  164. }
  165. explicit constexpr ObjKey(int64_t val) noexcept
  166. : value(val)
  167. {
  168. }
  169. bool is_unresolved() const
  170. {
  171. return value <= -2;
  172. }
  173. ObjKey get_unresolved() const
  174. {
  175. return ObjKey(-2 - value);
  176. }
  177. bool operator==(const ObjKey& rhs) const noexcept
  178. {
  179. return value == rhs.value;
  180. }
  181. bool operator!=(const ObjKey& rhs) const noexcept
  182. {
  183. return value != rhs.value;
  184. }
  185. bool operator<(const ObjKey& rhs) const noexcept
  186. {
  187. return value < rhs.value;
  188. }
  189. bool operator<=(const ObjKey& rhs) const noexcept
  190. {
  191. return value <= rhs.value;
  192. }
  193. bool operator>(const ObjKey& rhs) const noexcept
  194. {
  195. return value > rhs.value;
  196. }
  197. bool operator>=(const ObjKey& rhs) const noexcept
  198. {
  199. return value >= rhs.value;
  200. }
  201. explicit operator bool() const noexcept
  202. {
  203. return value != -1;
  204. }
  205. int64_t value;
  206. private:
  207. // operator bool will enable casting to integer. Prevent this.
  208. operator int64_t() const = delete;
  209. };
  210. inline std::ostream& operator<<(std::ostream& ostr, ObjKey key)
  211. {
  212. ostr << "ObjKey(" << key.value << ")";
  213. return ostr;
  214. }
  215. class ObjKeys : public std::vector<ObjKey> {
  216. public:
  217. ObjKeys(const std::vector<int64_t>& init)
  218. {
  219. reserve(init.size());
  220. for (auto i : init) {
  221. emplace_back(i);
  222. }
  223. }
  224. ObjKeys() {}
  225. };
  226. struct ObjLink {
  227. public:
  228. ObjLink() {}
  229. ObjLink(TableKey table_key, ObjKey obj_key)
  230. : m_obj_key(obj_key)
  231. , m_table_key(table_key)
  232. {
  233. }
  234. explicit operator bool() const
  235. {
  236. return bool(m_table_key) && bool(m_obj_key);
  237. }
  238. bool is_null() const
  239. {
  240. return !bool(*this);
  241. }
  242. bool is_unresolved() const
  243. {
  244. return m_obj_key.is_unresolved();
  245. }
  246. bool operator==(const ObjLink& other) const
  247. {
  248. return m_obj_key == other.m_obj_key && m_table_key == other.m_table_key;
  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& rhs) const
  255. {
  256. if (m_table_key < rhs.m_table_key) {
  257. return true;
  258. }
  259. else if (m_table_key == rhs.m_table_key) {
  260. return m_obj_key < rhs.m_obj_key;
  261. }
  262. else {
  263. // m_table_key >= rhs.m_table_key
  264. return false;
  265. }
  266. }
  267. bool operator>(const ObjLink& rhs) const
  268. {
  269. return (*this != rhs) && !(*this < rhs);
  270. }
  271. TableKey get_table_key() const
  272. {
  273. return m_table_key;
  274. }
  275. ObjKey get_obj_key() const
  276. {
  277. return m_obj_key;
  278. }
  279. private:
  280. // Having ObjKey first ensures that there will be no uninitialized space
  281. // in the first 12 bytes. This is important when generating a hash
  282. ObjKey m_obj_key;
  283. TableKey m_table_key;
  284. };
  285. using TableKeyType = decltype(TableKey::value);
  286. using ObjKeyType = decltype(ObjKey::value);
  287. inline std::ostream& operator<<(std::ostream& os, ObjLink link)
  288. {
  289. os << '{' << link.get_table_key() << ',' << link.get_obj_key() << '}';
  290. return os;
  291. }
  292. constexpr ObjKey null_key;
  293. namespace util {
  294. inline std::string to_string(ColKey ck)
  295. {
  296. return to_string(ck.value);
  297. }
  298. } // namespace util
  299. } // namespace realm
  300. namespace std {
  301. template <>
  302. struct hash<realm::ObjKey> {
  303. size_t operator()(realm::ObjKey key) const
  304. {
  305. return std::hash<uint64_t>{}(key.value);
  306. }
  307. };
  308. template <>
  309. struct hash<realm::TableKey> {
  310. size_t operator()(realm::TableKey key) const
  311. {
  312. return std::hash<uint32_t>{}(key.value);
  313. }
  314. };
  315. } // namespace std
  316. #endif