array_timestamp.hpp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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_ARRAY_TIMESTAMP_HPP
  19. #define REALM_ARRAY_TIMESTAMP_HPP
  20. #include <realm/array_integer.hpp>
  21. #include <realm/timestamp.hpp>
  22. namespace realm {
  23. class ArrayTimestamp : public ArrayPayload, private Array {
  24. public:
  25. using value_type = Timestamp;
  26. explicit ArrayTimestamp(Allocator&);
  27. using Array::update_parent;
  28. using Array::get_parent;
  29. using Array::get_ndx_in_parent;
  30. using Array::get_ref;
  31. static Timestamp default_value(bool nullable)
  32. {
  33. return nullable ? Timestamp{} : Timestamp{0, 0};
  34. }
  35. void create();
  36. void init_from_mem(MemRef mem) noexcept;
  37. void init_from_ref(ref_type ref) noexcept override
  38. {
  39. init_from_mem(MemRef(m_alloc.translate(ref), ref, m_alloc));
  40. }
  41. void set_parent(ArrayParent* parent, size_t ndx_in_parent) noexcept override
  42. {
  43. Array::set_parent(parent, ndx_in_parent);
  44. }
  45. void init_from_parent()
  46. {
  47. init_from_ref(Array::get_ref_from_parent());
  48. }
  49. size_t size() const
  50. {
  51. return m_seconds.size();
  52. }
  53. void add(Timestamp value)
  54. {
  55. insert(m_seconds.size(), value);
  56. }
  57. void set(size_t ndx, Timestamp value);
  58. void set_null(size_t ndx)
  59. {
  60. // Value in m_nanoseconds is irrelevant if m_seconds is null
  61. m_seconds.set_null(ndx); // Throws
  62. }
  63. void insert(size_t ndx, Timestamp value);
  64. Timestamp get(size_t ndx) const
  65. {
  66. util::Optional<int64_t> seconds = m_seconds.get(ndx);
  67. return seconds ? Timestamp(*seconds, int32_t(m_nanoseconds.get(ndx))) : Timestamp{};
  68. }
  69. Mixed get_any(size_t ndx) const final
  70. {
  71. return Mixed(get(ndx));
  72. }
  73. bool is_null(size_t ndx) const
  74. {
  75. return m_seconds.is_null(ndx);
  76. }
  77. void erase(size_t ndx)
  78. {
  79. m_seconds.erase(ndx);
  80. m_nanoseconds.erase(ndx);
  81. }
  82. void move(ArrayTimestamp& dst, size_t ndx)
  83. {
  84. m_seconds.move(dst.m_seconds, ndx);
  85. m_nanoseconds.move(dst.m_nanoseconds, ndx);
  86. }
  87. void clear()
  88. {
  89. m_seconds.clear();
  90. m_nanoseconds.clear();
  91. }
  92. template <class Condition>
  93. size_t find_first(Timestamp value, size_t begin, size_t end) const noexcept;
  94. size_t find_first(Timestamp value, size_t begin, size_t end) const noexcept;
  95. void verify() const;
  96. private:
  97. ArrayIntNull m_seconds;
  98. ArrayInteger m_nanoseconds;
  99. };
  100. template <>
  101. size_t ArrayTimestamp::find_first<Equal>(Timestamp value, size_t begin, size_t end) const noexcept;
  102. template <>
  103. size_t ArrayTimestamp::find_first<NotEqual>(Timestamp value, size_t begin, size_t end) const noexcept;
  104. template <>
  105. size_t ArrayTimestamp::find_first<Less>(Timestamp value, size_t begin, size_t end) const noexcept;
  106. template <>
  107. size_t ArrayTimestamp::find_first<LessEqual>(Timestamp value, size_t begin, size_t end) const noexcept;
  108. template <>
  109. size_t ArrayTimestamp::find_first<GreaterEqual>(Timestamp value, size_t begin, size_t end) const noexcept;
  110. template <>
  111. size_t ArrayTimestamp::find_first<Greater>(Timestamp value, size_t begin, size_t end) const noexcept;
  112. inline size_t ArrayTimestamp::find_first(Timestamp value, size_t begin, size_t end) const noexcept
  113. {
  114. return find_first<Equal>(value, begin, end);
  115. }
  116. }
  117. #endif /* SRC_REALM_ARRAY_BINARY_HPP_ */