mixed.hpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  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_MIXED_HPP
  19. #define REALM_MIXED_HPP
  20. #include <cstdint> // int64_t - not part of C++03, not even required by C++11 (see C++11 section 18.4.1)
  21. #include <cstddef> // size_t
  22. #include <cstring>
  23. #include <realm/keys.hpp>
  24. #include <realm/binary_data.hpp>
  25. #include <realm/data_type.hpp>
  26. #include <realm/string_data.hpp>
  27. #include <realm/timestamp.hpp>
  28. #include <realm/decimal128.hpp>
  29. #include <realm/object_id.hpp>
  30. #include <realm/uuid.hpp>
  31. #include <realm/util/assert.hpp>
  32. #include <realm/utilities.hpp>
  33. namespace realm {
  34. /// This class represents a polymorphic Realm value.
  35. ///
  36. /// At any particular moment an instance of this class stores a
  37. /// definite value of a definite type. If, for instance, that is an
  38. /// integer value, you may call get<int64_t>() to extract that value. You
  39. /// may call get_type() to discover what type of value is currently
  40. /// stored. Calling get<int64_t>() on an instance that does not store an
  41. /// integer, has undefined behavior, and likewise for all the other
  42. /// types that can be stored.
  43. ///
  44. /// It is crucial to understand that the act of extracting a value of
  45. /// a particular type requires definite knowledge about the stored
  46. /// type. Calling a getter method for any particular type, that is not
  47. /// the same type as the stored value, has undefined behavior.
  48. ///
  49. /// While values of numeric types are contained directly in a Mixed
  50. /// instance, character and binary data are merely referenced. A Mixed
  51. /// instance never owns the referenced data, nor does it in any other
  52. /// way attempt to manage its lifetime.
  53. ///
  54. /// For compatibility with C style strings, when a string (character
  55. /// data) is stored in a Realm database, it is always followed by a
  56. /// terminating null character. This is also true when strings are
  57. /// stored in a mixed type column. This means that in the following
  58. /// code, if the 'mixed' value of the 8th row stores a string, then \c
  59. /// c_str will always point to a null-terminated string:
  60. ///
  61. /// \code{.cpp}
  62. ///
  63. /// const char* c_str = my_table[7].mixed.data(); // Always null-terminated
  64. ///
  65. /// \endcode
  66. ///
  67. /// Note that this assumption does not hold in general for strings in
  68. /// instances of Mixed. Indeed there is nothing stopping you from
  69. /// constructing a new Mixed instance that refers to a string without
  70. /// a terminating null character.
  71. ///
  72. /// At the present time no soultion has been found that would allow
  73. /// for a Mixed instance to directly store a reference to a table. The
  74. /// problem is roughly as follows: From most points of view, the
  75. /// desirable thing to do, would be to store the table reference in a
  76. /// Mixed instance as a plain pointer without any ownership
  77. /// semantics. This would have no negative impact on the performance
  78. /// of copying and destroying Mixed instances, and it would serve just
  79. /// fine for passing a table as argument when setting the value of an
  80. /// entry in a mixed column. In that case a copy of the referenced
  81. /// table would be inserted into the mixed column.
  82. ///
  83. /// On the other hand, when retrieving a table reference from a mixed
  84. /// column, storing it as a plain pointer in a Mixed instance is no
  85. /// longer an acceptable option. The complex rules for managing the
  86. /// lifetime of a Table instance, that represents a subtable,
  87. /// necessitates the use of a "smart pointer" such as
  88. /// TableRef. Enhancing the Mixed class to be able to act as a
  89. /// TableRef would be possible, but would also lead to several new
  90. /// problems. One problem is the risk of a Mixed instance outliving a
  91. /// stack allocated Table instance that it references. This would be a
  92. /// fatal error. Another problem is the impact that the nontrivial
  93. /// table reference has on the performance of copying and destroying
  94. /// Mixed instances.
  95. ///
  96. /// \sa StringData
  97. class Mixed {
  98. public:
  99. Mixed() noexcept
  100. : m_type(0)
  101. {
  102. }
  103. Mixed(util::None) noexcept
  104. : Mixed()
  105. {
  106. }
  107. Mixed(realm::null) noexcept
  108. : Mixed()
  109. {
  110. }
  111. Mixed(int i) noexcept
  112. : Mixed(int64_t(i))
  113. {
  114. }
  115. Mixed(int64_t) noexcept;
  116. Mixed(bool) noexcept;
  117. explicit Mixed(std::vector<bool>::reference b) noexcept
  118. : Mixed(bool(b))
  119. {
  120. }
  121. Mixed(float) noexcept;
  122. Mixed(double) noexcept;
  123. Mixed(util::Optional<int64_t>) noexcept;
  124. Mixed(util::Optional<bool>) noexcept;
  125. Mixed(util::Optional<float>) noexcept;
  126. Mixed(util::Optional<double>) noexcept;
  127. Mixed(StringData) noexcept;
  128. Mixed(BinaryData) noexcept;
  129. Mixed(Timestamp) noexcept;
  130. Mixed(Decimal128);
  131. Mixed(ObjectId) noexcept;
  132. Mixed(util::Optional<ObjectId>) noexcept;
  133. Mixed(ObjKey) noexcept;
  134. Mixed(ObjLink) noexcept;
  135. Mixed(UUID) noexcept;
  136. Mixed(util::Optional<UUID>) noexcept;
  137. Mixed(const Obj&) noexcept;
  138. // These are shortcuts for Mixed(StringData(c_str)), and are
  139. // needed to avoid unwanted implicit conversion of char* to bool.
  140. Mixed(char* c_str) noexcept
  141. : Mixed(StringData(c_str))
  142. {
  143. }
  144. Mixed(const char* c_str) noexcept
  145. : Mixed(StringData(c_str))
  146. {
  147. }
  148. Mixed(const std::string& s) noexcept
  149. : Mixed(StringData(s))
  150. {
  151. }
  152. ~Mixed() noexcept {}
  153. DataType get_type() const noexcept
  154. {
  155. REALM_ASSERT(m_type);
  156. return DataType(m_type - 1);
  157. }
  158. template <class... Tail>
  159. bool is_type(DataType head, Tail... tail) const noexcept
  160. {
  161. return _is_type(head, tail...);
  162. }
  163. template <class... Tail>
  164. static bool is_numeric(DataType head, Tail... tail) noexcept
  165. {
  166. return _is_numeric(head, tail...);
  167. }
  168. static bool types_are_comparable(const Mixed& l, const Mixed& r);
  169. static bool data_types_are_comparable(DataType l_type, DataType r_type);
  170. template <class T>
  171. T get() const noexcept;
  172. template <class T>
  173. const T* get_if() const noexcept;
  174. template <class T>
  175. T export_to_type() const noexcept;
  176. // These functions are kept to be backwards compatible
  177. int64_t get_int() const noexcept;
  178. bool get_bool() const noexcept;
  179. float get_float() const noexcept;
  180. double get_double() const noexcept;
  181. StringData get_string() const noexcept;
  182. BinaryData get_binary() const noexcept;
  183. Timestamp get_timestamp() const noexcept;
  184. Decimal128 get_decimal() const noexcept;
  185. ObjectId get_object_id() const noexcept;
  186. UUID get_uuid() const noexcept;
  187. ObjLink get_link() const noexcept;
  188. bool is_null() const noexcept;
  189. bool accumulate_numeric_to(Decimal128& destination) const noexcept;
  190. bool is_unresolved_link() const noexcept;
  191. bool is_same_type(const Mixed& b) const noexcept;
  192. // Will use utf8_compare for strings
  193. int compare(const Mixed& b) const noexcept;
  194. // Will compare strings as arrays of signed chars
  195. int compare_signed(const Mixed& b) const noexcept;
  196. friend bool operator==(const Mixed& a, const Mixed& b) noexcept
  197. {
  198. return a.compare(b) == 0;
  199. }
  200. friend bool operator!=(const Mixed& a, const Mixed& b) noexcept
  201. {
  202. return a.compare(b) != 0;
  203. }
  204. friend bool operator<(const Mixed& a, const Mixed& b) noexcept
  205. {
  206. return a.compare(b) < 0;
  207. }
  208. friend bool operator>(const Mixed& a, const Mixed& b) noexcept
  209. {
  210. return a.compare(b) > 0;
  211. }
  212. friend bool operator<=(const Mixed& a, const Mixed& b) noexcept
  213. {
  214. return a.compare(b) <= 0;
  215. }
  216. friend bool operator>=(const Mixed& a, const Mixed& b) noexcept
  217. {
  218. return a.compare(b) >= 0;
  219. }
  220. Mixed operator+(const Mixed&) const noexcept;
  221. Mixed operator-(const Mixed&) const noexcept;
  222. Mixed operator*(const Mixed&) const noexcept;
  223. Mixed operator/(const Mixed&) const noexcept;
  224. size_t hash() const;
  225. StringData get_index_data(std::array<char, 16>&) const noexcept;
  226. void use_buffer(std::string& buf) noexcept;
  227. protected:
  228. friend std::ostream& operator<<(std::ostream& out, const Mixed& m);
  229. uint32_t m_type;
  230. union {
  231. int64_t int_val;
  232. bool bool_val;
  233. float float_val;
  234. double double_val;
  235. StringData string_val;
  236. BinaryData binary_val;
  237. Timestamp date_val;
  238. ObjectId id_val;
  239. Decimal128 decimal_val;
  240. ObjLink link_val;
  241. UUID uuid_val;
  242. };
  243. private:
  244. static bool _is_type() noexcept
  245. {
  246. return false;
  247. }
  248. bool _is_type(DataType type) const noexcept
  249. {
  250. return m_type == unsigned(int(type) + 1);
  251. }
  252. template <class... Tail>
  253. bool _is_type(DataType head, Tail... tail) const noexcept
  254. {
  255. return _is_type(head) || _is_type(tail...);
  256. }
  257. static bool _is_numeric(DataType type) noexcept
  258. {
  259. return type == type_Int || type == type_Float || type == type_Double || type == type_Decimal ||
  260. type == type_Mixed;
  261. }
  262. template <class... Tail>
  263. static bool _is_numeric(DataType head, Tail... tail) noexcept
  264. {
  265. return _is_numeric(head) && _is_numeric(tail...);
  266. }
  267. };
  268. class OwnedMixed : public Mixed {
  269. public:
  270. explicit OwnedMixed(std::string&& str)
  271. : m_owned_string(std::move(str))
  272. {
  273. m_type = int(type_String) + 1;
  274. string_val = m_owned_string;
  275. }
  276. OwnedMixed(OwnedMixed&& m) noexcept
  277. : Mixed(m)
  278. , m_owned_string(std::move(m.m_owned_string))
  279. {
  280. if (is_type(type_String)) {
  281. string_val = m_owned_string;
  282. }
  283. }
  284. OwnedMixed(const OwnedMixed& m)
  285. : Mixed(m)
  286. , m_owned_string(m.m_owned_string)
  287. {
  288. if (is_type(type_String)) {
  289. string_val = m_owned_string;
  290. }
  291. }
  292. OwnedMixed& operator=(OwnedMixed&& m) noexcept
  293. {
  294. *static_cast<Mixed*>(this) = m;
  295. if (is_type(type_String)) {
  296. m_owned_string = std::move(m.m_owned_string);
  297. string_val = m_owned_string;
  298. }
  299. return *this;
  300. }
  301. OwnedMixed& operator=(const OwnedMixed& m)
  302. {
  303. *static_cast<Mixed*>(this) = m;
  304. if (is_type(type_String)) {
  305. m_owned_string = m.m_owned_string;
  306. string_val = m_owned_string;
  307. }
  308. return *this;
  309. }
  310. explicit OwnedMixed(const Mixed& m)
  311. : Mixed(m)
  312. {
  313. if (m.is_type(type_String)) {
  314. m_owned_string = std::string(m.get_string());
  315. string_val = m_owned_string;
  316. }
  317. }
  318. OwnedMixed& operator=(const Mixed& m)
  319. {
  320. *static_cast<Mixed*>(this) = m;
  321. if (m.is_type(type_String)) {
  322. m_owned_string = std::string(m.get_string());
  323. string_val = m_owned_string;
  324. }
  325. return *this;
  326. }
  327. using Mixed::Mixed;
  328. private:
  329. std::string m_owned_string;
  330. };
  331. // Implementation:
  332. inline Mixed::Mixed(int64_t v) noexcept
  333. {
  334. m_type = int(type_Int) + 1;
  335. int_val = v;
  336. }
  337. inline Mixed::Mixed(bool v) noexcept
  338. {
  339. m_type = int(type_Bool) + 1;
  340. bool_val = v;
  341. }
  342. inline Mixed::Mixed(float v) noexcept
  343. {
  344. if (null::is_null_float(v)) {
  345. m_type = 0;
  346. }
  347. else {
  348. m_type = int(type_Float) + 1;
  349. float_val = v;
  350. }
  351. }
  352. inline Mixed::Mixed(double v) noexcept
  353. {
  354. if (null::is_null_float(v)) {
  355. m_type = 0;
  356. }
  357. else {
  358. m_type = int(type_Double) + 1;
  359. double_val = v;
  360. }
  361. }
  362. inline Mixed::Mixed(util::Optional<int64_t> v) noexcept
  363. {
  364. if (v) {
  365. m_type = int(type_Int) + 1;
  366. int_val = *v;
  367. }
  368. else {
  369. m_type = 0;
  370. }
  371. }
  372. inline Mixed::Mixed(util::Optional<bool> v) noexcept
  373. {
  374. if (v) {
  375. m_type = int(type_Bool) + 1;
  376. bool_val = *v;
  377. }
  378. else {
  379. m_type = 0;
  380. }
  381. }
  382. inline Mixed::Mixed(util::Optional<float> v) noexcept
  383. {
  384. if (v && !null::is_null_float(*v)) {
  385. m_type = int(type_Float) + 1;
  386. float_val = *v;
  387. }
  388. else {
  389. m_type = 0;
  390. }
  391. }
  392. inline Mixed::Mixed(util::Optional<double> v) noexcept
  393. {
  394. if (v && !null::is_null_float(*v)) {
  395. m_type = int(type_Double) + 1;
  396. double_val = *v;
  397. }
  398. else {
  399. m_type = 0;
  400. }
  401. }
  402. inline Mixed::Mixed(util::Optional<ObjectId> v) noexcept
  403. {
  404. if (v) {
  405. m_type = int(type_ObjectId) + 1;
  406. id_val = *v;
  407. }
  408. else {
  409. m_type = 0;
  410. }
  411. }
  412. inline Mixed::Mixed(util::Optional<UUID> v) noexcept
  413. {
  414. if (v) {
  415. m_type = int(type_UUID) + 1;
  416. uuid_val = *v;
  417. }
  418. else {
  419. m_type = 0;
  420. }
  421. }
  422. inline Mixed::Mixed(StringData v) noexcept
  423. {
  424. if (!v.is_null()) {
  425. m_type = int(type_String) + 1;
  426. string_val = v;
  427. }
  428. else {
  429. m_type = 0;
  430. }
  431. }
  432. inline Mixed::Mixed(BinaryData v) noexcept
  433. {
  434. if (!v.is_null()) {
  435. m_type = int(type_Binary) + 1;
  436. binary_val = v;
  437. }
  438. else {
  439. m_type = 0;
  440. }
  441. }
  442. inline Mixed::Mixed(Timestamp v) noexcept
  443. {
  444. if (!v.is_null()) {
  445. m_type = int(type_Timestamp) + 1;
  446. date_val = v;
  447. }
  448. else {
  449. m_type = 0;
  450. }
  451. }
  452. inline Mixed::Mixed(Decimal128 v)
  453. {
  454. if (!v.is_null()) {
  455. m_type = int(type_Decimal) + 1;
  456. decimal_val = v;
  457. }
  458. else {
  459. m_type = 0;
  460. }
  461. }
  462. inline Mixed::Mixed(ObjectId v) noexcept
  463. {
  464. m_type = int(type_ObjectId) + 1;
  465. id_val = v;
  466. }
  467. inline Mixed::Mixed(UUID v) noexcept
  468. {
  469. m_type = int(type_UUID) + 1;
  470. uuid_val = v;
  471. }
  472. inline Mixed::Mixed(ObjKey v) noexcept
  473. {
  474. if (v) {
  475. m_type = int(type_Link) + 1;
  476. int_val = v.value;
  477. }
  478. else {
  479. m_type = 0;
  480. }
  481. }
  482. inline Mixed::Mixed(ObjLink v) noexcept
  483. {
  484. if (v) {
  485. m_type = int(type_TypedLink) + 1;
  486. link_val = v;
  487. }
  488. else {
  489. m_type = 0;
  490. }
  491. }
  492. template <>
  493. inline null Mixed::get<null>() const noexcept
  494. {
  495. REALM_ASSERT(m_type == 0);
  496. return {};
  497. }
  498. template <>
  499. inline int64_t Mixed::get<int64_t>() const noexcept
  500. {
  501. REALM_ASSERT(get_type() == type_Int);
  502. return int_val;
  503. }
  504. template <>
  505. inline int Mixed::get<int>() const noexcept
  506. {
  507. REALM_ASSERT(get_type() == type_Int);
  508. return int(int_val);
  509. }
  510. inline int64_t Mixed::get_int() const noexcept
  511. {
  512. return get<int64_t>();
  513. }
  514. template <>
  515. inline const int64_t* Mixed::get_if<int64_t>() const noexcept
  516. {
  517. return is_type(type_Int) ? &int_val : nullptr;
  518. }
  519. template <>
  520. inline bool Mixed::get<bool>() const noexcept
  521. {
  522. REALM_ASSERT(get_type() == type_Bool);
  523. return bool_val;
  524. }
  525. inline bool Mixed::get_bool() const noexcept
  526. {
  527. return get<bool>();
  528. }
  529. template <>
  530. inline const bool* Mixed::get_if<bool>() const noexcept
  531. {
  532. return is_type(type_Bool) ? &bool_val : nullptr;
  533. }
  534. template <>
  535. inline float Mixed::get<float>() const noexcept
  536. {
  537. REALM_ASSERT(get_type() == type_Float);
  538. return float_val;
  539. }
  540. inline float Mixed::get_float() const noexcept
  541. {
  542. return get<float>();
  543. }
  544. template <>
  545. inline const float* Mixed::get_if<float>() const noexcept
  546. {
  547. return is_type(type_Float) ? &float_val : nullptr;
  548. }
  549. template <>
  550. inline double Mixed::get<double>() const noexcept
  551. {
  552. REALM_ASSERT(get_type() == type_Double);
  553. return double_val;
  554. }
  555. inline double Mixed::get_double() const noexcept
  556. {
  557. return get<double>();
  558. }
  559. template <>
  560. inline const double* Mixed::get_if<double>() const noexcept
  561. {
  562. return is_type(type_Double) ? &double_val : nullptr;
  563. }
  564. template <>
  565. inline StringData Mixed::get<StringData>() const noexcept
  566. {
  567. if (is_null())
  568. return StringData();
  569. REALM_ASSERT(get_type() == type_String);
  570. return string_val;
  571. }
  572. inline StringData Mixed::get_string() const noexcept
  573. {
  574. return get<StringData>();
  575. }
  576. template <>
  577. inline const StringData* Mixed::get_if<StringData>() const noexcept
  578. {
  579. return is_type(type_String) ? &string_val : nullptr;
  580. }
  581. template <>
  582. inline BinaryData Mixed::get<BinaryData>() const noexcept
  583. {
  584. if (is_null())
  585. return BinaryData();
  586. if (get_type() == type_Binary) {
  587. return binary_val;
  588. }
  589. REALM_ASSERT(get_type() == type_String);
  590. return BinaryData(string_val.data(), string_val.size());
  591. }
  592. inline BinaryData Mixed::get_binary() const noexcept
  593. {
  594. return get<BinaryData>();
  595. }
  596. template <>
  597. inline const BinaryData* Mixed::get_if<BinaryData>() const noexcept
  598. {
  599. return is_type(type_Binary) ? &binary_val : nullptr;
  600. }
  601. template <>
  602. inline Timestamp Mixed::get<Timestamp>() const noexcept
  603. {
  604. REALM_ASSERT(get_type() == type_Timestamp);
  605. return date_val;
  606. }
  607. inline Timestamp Mixed::get_timestamp() const noexcept
  608. {
  609. return get<Timestamp>();
  610. }
  611. template <>
  612. inline const Timestamp* Mixed::get_if<Timestamp>() const noexcept
  613. {
  614. return is_type(type_Timestamp) ? &date_val : nullptr;
  615. }
  616. template <>
  617. inline Decimal128 Mixed::get<Decimal128>() const noexcept
  618. {
  619. REALM_ASSERT(get_type() == type_Decimal);
  620. return decimal_val;
  621. }
  622. inline Decimal128 Mixed::get_decimal() const noexcept
  623. {
  624. return get<Decimal128>();
  625. }
  626. template <>
  627. inline const Decimal128* Mixed::get_if<Decimal128>() const noexcept
  628. {
  629. return is_type(type_Decimal) ? &decimal_val : nullptr;
  630. }
  631. template <>
  632. inline ObjectId Mixed::get<ObjectId>() const noexcept
  633. {
  634. REALM_ASSERT(get_type() == type_ObjectId);
  635. return id_val;
  636. }
  637. inline ObjectId Mixed::get_object_id() const noexcept
  638. {
  639. return get<ObjectId>();
  640. }
  641. template <>
  642. inline const ObjectId* Mixed::get_if<ObjectId>() const noexcept
  643. {
  644. return is_type(type_ObjectId) ? &id_val : nullptr;
  645. }
  646. template <>
  647. inline UUID Mixed::get<UUID>() const noexcept
  648. {
  649. REALM_ASSERT(get_type() == type_UUID);
  650. return uuid_val;
  651. }
  652. inline UUID Mixed::get_uuid() const noexcept
  653. {
  654. return get<UUID>();
  655. }
  656. template <>
  657. inline const UUID* Mixed::get_if<UUID>() const noexcept
  658. {
  659. return is_type(type_UUID) ? &uuid_val : nullptr;
  660. }
  661. template <>
  662. inline ObjKey Mixed::get<ObjKey>() const noexcept
  663. {
  664. if (get_type() == type_TypedLink)
  665. return link_val.get_obj_key();
  666. REALM_ASSERT(get_type() == type_Link);
  667. return ObjKey(int_val);
  668. }
  669. template <>
  670. inline ObjLink Mixed::get<ObjLink>() const noexcept
  671. {
  672. REALM_ASSERT(get_type() == type_TypedLink);
  673. return link_val;
  674. }
  675. template <>
  676. inline Mixed Mixed::get<Mixed>() const noexcept
  677. {
  678. return *this;
  679. }
  680. inline ObjLink Mixed::get_link() const noexcept
  681. {
  682. return get<ObjLink>();
  683. }
  684. inline bool Mixed::is_null() const noexcept
  685. {
  686. return (m_type == 0);
  687. }
  688. inline bool Mixed::is_same_type(const Mixed& b) const noexcept
  689. {
  690. return (m_type == b.m_type);
  691. }
  692. inline bool Mixed::is_unresolved_link() const noexcept
  693. {
  694. if (is_null()) {
  695. return false;
  696. }
  697. else if (get_type() == type_TypedLink) {
  698. return get<ObjLink>().is_unresolved();
  699. }
  700. else if (get_type() == type_Link) {
  701. return get<ObjKey>().is_unresolved();
  702. }
  703. return false;
  704. }
  705. std::ostream& operator<<(std::ostream& out, const Mixed& m);
  706. } // namespace realm
  707. namespace std {
  708. template <>
  709. struct hash<::realm::Mixed> {
  710. inline size_t operator()(const ::realm::Mixed& m) const noexcept
  711. {
  712. return m.hash();
  713. }
  714. };
  715. } // namespace std
  716. #endif // REALM_MIXED_HPP